Process.exitValue () returns only the low byte of the exit code?

Hi - I am executing a sub-process and then wait until he comes back and then examining the exit code of the subprocedure. The error returns the subprocess is 0xb03, but exitValue() doesn't see that 0x03. Other tests show that if I return my native process 0xbff, exitValue() or waitFor() return only 0xff. I've expanded it as a result of back 0xfffffbff, and of course, the methods of process only return 0xff.

Someone knows what the deal is here? The return type for exitValue() and waitFor() are the two "int", so it seems reasonable to be able to return values to 0xffffffff. Is there a way to set up to prosecute the full int?

Thanks for any idea.

Exactly. UNIX and Linux that support 8-bit output code. The top 8 bits are reserved for an indication of normal speed.

Tags: Java

Similar Questions

  • How can I get the exit code of a script .bat for Java back to PL/SQL?

    When you call a .bat script, only the exit code 1 returns. How can I get 7 back to the PL/SQL in the code example below?

    C:\Users\pwatson\src\java > type vv.sql

    set echo on

    -call dbms_java.grant_permission ('SYSTEM', 'SYS:java.io.FilePermission', '< < all FILES > >', 'run');

    HOME @EXIT/b ECHO 7 > vv.bat

    TYPE of HOST vv.bat

    CREATE OR REPLACE AND COMPILE THE SOURCES NAMED AS VV JAVA

    import of java.lang.Runtime;

    public class VV

    {

    public static int execute()

    survey java.io.IOException, java.lang.InterruptedException

    {

    int exitCode = 0;

    Duration rt = java.lang.Runtime.getRuntime ();

    Process proc = rt.exec ("cmd.exe /C v.bat 1 > NULL 2 > ZERO");

    proc.waitFor ();

    exitCode = proc.exitValue ();

    return exitCode;

    }

    }

    /

    CREATE OR REPLACE FUNCTION JavaRunShellCommand

    RETURN NUMBER

    IN THE JAVA LANGUAGE

    NAME 'VV.execute () return oracle.sql.NUMBER;

    /

    DISPLAY ERRORS

    NUMBER VARIABLE n;

    CALL JavaRunShellCommand() IN: n;

    PRINT n

    DISPLAY ERRORS

    SELECT JavaRunShellCommand() AS R FROM DUAL;

    DISPLAY ERRORS

    HOST DEL v.bat

    OUTPUT

    It is strange that there are no errors. If the Java code does not work, I would expect an exception. Without an exception in the code handler, I expect to be propagated all the way to the top of the call stack and be displayed by the client. But there is no exception.

    So that means, in my view, that there is nothing wrong with the code Java itself. He made the appeal successfully to run this external process. The fact that the external process falls down, is not an issue/error in Java.

    If this is the case, then the first thing that comes to mind, is that the Oracle (oracle.exe) process that is currently running, runs as a service of the o/s. And that the service will try to run a command through the command shell script. There may be a security or problem access here that prevents the oracle.exe running as a service to do this.

  • return only the decimal value

    What function can I use to return only the decimal value of a formula

    (97 * 2.2) / 14 value returns 15.24

    I only want to use le.24

    Salvation is

    Use the formula - INT (formula)

    In the special case above:

    =(97*2.2)/14 - INT ((97*2.2)/14)

    You see two places to the right of the decimal separator in reason to be rounded off to the value real, in the shape of the cell to only show as two decimal places, either by setting the width of the cell close enough to force the rounding of the displayed value.

    Note that if the result is rounded (using the ROUND function) the actual value of the cell will be the rounded value. For the other two cases, the value displayed indicates only two decimal places, but the real value in the cell (and the additional calculations used by referring to this cell) is 0.242857142857144, which could lead to surprises in the results of the calculations downstream.

    Kind regards

    Barry

  • Discover with function as datasource returns only the first line.

    Hello

    I created the following function to get the status of all the rules for the instances of SQL Server.

    The data type of the function output has been configured as 'List of SQLInstanceRuleStatuss', where SQLInstanceRuleStatuss is the custom type, I created in the same module.

    When I tested the function, it returns all instances of SQL Server with two other columns.

    But when I try to create a view with the Rows property that is configured to use the feature, it returns only the first line:

    sqlRules = new ArrayList();

    queryStatement = server. QueryService.createStatement ("(DBSS_Instance)");

    queryResult = server. QueryService.executeStatement (queryStatement);

    for (it in queryResult.topologyObjects)

    {

    sqlRule is functionHelper.createDataObject ("westjet_mark_dev:SQLInstanceRuleStatus", "none", "test");.

    sqlRule.instance = it;

    sqlRule.ruleName = 'test rule name';

    sqlRule.status = false;

    sqlRules.add (sqlRule);

    }

    Return sqlRules;

    Did I miss something?

    Thank you

    Mark

    Mark,

    I think I forgot something

    sqlRule=functionHelper.createDataObject("westjet_mark_dev:SQLInstanceRuleStatus","none","test");

    you create the test id

    change your line of

    sqlRule=functionHelper.createDataObject("westjet_mark_dev:SQLInstanceRuleStatus","none",null);

    This should allow the creation of a single object in your loop for

  • Need help to write a MySQL query that returns only the peer matching records

    Because I don't know how to explain it easily, I use the table below as an example.

    I want to create a MySQL query that returns only the records that match counterparts where 'col1' = 'ABC '.

    Notice the ' ABC / GHI' record does not have a Counter-match ' GHI / ABC' record. This record must not be returned because there is no Counter-Party correspondent. With this table, the ' ABC / GHI' record should be the one returned in the query.

    How can I create a query that will do it?


    ID | col1 | col2
    --------------------
    1. ABC | DEF
    2. DEF | ABC
    3. ABC | IGS
    4. DEF | IGS
    5. IGS | DEF


    * Please let me know if you have no idea of what I'm trying to explain.

    I wanted to just the results where col1 = ABC, but I already got the answer I needed on another forum. Thank you anyway.

    SELECT a.col1,
    a.col2
    FROM table_name AS a
    LEFT OUTER
    Table_name JOIN b
    ON b.col1 = a.col2
    AND a.col1 = b.col2
    WHERE b.col1 IS NOT NULL AND a.col1 = 'ABC '.

  • SignTool.exe check /pa returns the exit code 1 from the code, but works fine when running from the command prompt.

    Hello

    I use SignTool.exe since a new Process() to check an Assembly codesigned and it returns the exit code 1 so that it returns the exit code 0 while I run the same Visual Studio command prompt. Please let me know your thoughts...
    Here is an excerpt of my ultimate VS2012 code on PC Win7.
    p = new Process();
    p.StartInfo.FileName = "C:\\Program Files (x 86) \\Microsoft SDKs\\Windows\\v7.0A\\Bin\\SignTool.exe";
    String args = @ "check."
    p.StartInfo.Arguments = args + "" + '/pa' + ' / v '+ name; "" "
    p = Process.Start (p.StartInfo.FileName, p.StartInfo.Arguments);
    p.Start ();
    p.WaitForExit ();
    pexitcode = p.ExitCode;
    name = 'C:\\Users\\v-maparn\\Documents\\Visual Studio 2012\\Projects\\CodesignVerification\\CodesignVerification\\bin\\Release\\Microsoft.IT.Core.dll'
    Thank you
    Mani

    Salimakadari

    This issue is beyond the scope of this forum that you might better ask on Technet or MSDN (Microsoft developer network)

    http://social.technet.Microsoft.com/forums/en-us/home

    https://social.msdn.Microsoft.com/forums/en-us/home

  • com.sun.messaging.jmq.admin.apps.broker.BrokerCmd failed to get the exit code of the child.

    I use D:\MessageQueue4_5\mq\bin\imqcmd.exe to get heads of JMS queues. In most of the facilities, I can retrieve the results without problem.

    At a single facility, however, I get an error when you try to run this command. Called with no arguments, it should display a list of available commands. But that's what I get instead:

    D:\utilities\imqChk > d:\MessageQueue4_5\mq\bin\imqcmd.exe

    Boot process failed.

    Could not run

    Java

    -cp

    d:\MessageQueue4_5\mq\lib\imqadmin.jar;

    d:\MessageQueue4_5\mq\lib\fscontext.jar

    -Dimq.home=d:\MessageQueue4_5\mq

    -Dimq.etchome=d:\MessageQueue4_5\mq\... \etc\mq

    com.sun.messaging.jmq.admin.apps.broker.BrokerCmd failed to get the exit code of the child.

    Other info:

    • Java is installed (version 1.7.0_17).
    • QBrowser using, I can sign in successfully and retrieve information from queue.
    • All of the named files and jar files are where they are supposed to be within the meaning of the doce above.

    I was not able to locate the source of the problem. Any ideas would be greatly appreciated.

    Thank you.

    I had this same problem and solved by editing the file \glassfish3\mq\etc\imqenv.conf manually by setting IMQ_DEFAULT_JAVAHOME as follows:

    IMQ_DEFAULT_JAVAHOME = / Files/Java/jdk1.7.0_45 program

    Note the orientation of the slash. It's on Windows, and when I used with Windows style slash escape sequence, it does not solve this problem only when I used the mangled Unix style done.

    Hope this helps,

    -Noah

  • Cursor Oracle return only the last record

    I am a newbie in oracle stored proc. I tried to select data using the slider, but it only return last record. The recording must be greater than 1.

    CREATE or REPLACE procedure MySchema.Test (myrefcur on sys_refcursor)
    Is

    Begin
    declare

    Cursor C1 IS

    Select mySerialNum from TableA;
    MyRecord C1% rowtype;

    Begin
    Open C1;
    Loop
    Fetch C1 into myrecord;
    When the output C1% NotFound;

    Open for Myrefcur
    Select SerialNumB from TableB where SerialNumB = myrecord.mySerialNum;

    End loop;
    Close C1;
    End;
    end;

    However, it only returns the last record in the list.

    Original case *.
    The original code is as below:

    1st, I'll need to select a list of ImageSerialNum of ImageSerial

    * 1 query:
    Select A.ImageSerialNum from ImageSerial A, ProductionOrder B, Bom C
    Where A.ProductionOrderID = B.ProductionOrderID And B.Assembly_Num = C.Model_Num and
    B.Revision = C.Revision And B.EngRevision = C.EngRevision and
    C.Bom_ID = passInVariable* and C.FactoryID = "7"

    2nd, I'll need to check the process of EACH series with the code below:

    * Low code a return process for 1 series only.

    Select t.processid, t.processname, t.assembly_num, t.revision, t.engrevision of
    (Select p.ProcessID, p.ProcessName, in. Assembly_Num, in. review, in. EngRevision, im.imageserialnum
    Process p, Routesequence rs, Imageserial im, ProductionOrder in.
    Where im. ImageserialNum = SerialNum* and p.ProcessID = rs. ProcessID
    And rs. RouteID = in. RouteID and rs. SequenceID = im. NextRouteSequence
    And in. ProductionOrderID = im. ProductionOrderID AND IM. STATUS OF '0'
    UNION
    SELECT A.REWORKROUTEID AS PROCESSID PROCESSNAME AS B.ROUTENAME, C.ASSEMBLY_NUM, C.REVISION, C.ENGREVISION, a.imageserialnum
    OF IMAGESERIAL A, B OF ROAD, PRODUCTIONORDER C
    WHERE A.REWORKROUTEID = B.ROUTEID AND A.IMAGESERIALNUM = SerialNum*.
    AND A.PRODUCTIONORDERID = C.PRODUCTIONORDERID and a.status = '0') t

    After that, I would like to combine the two in 1 stored proc code.

    in this case, you just want to join the two applications to use in the FROM clause
    As I don't have your tables, I created two tables, each representing the results of your queries. Substitute the names of table with your queries

    SQL> drop table master
      2  /
    
    Table dropped.
    
    SQL> drop table details
      2  /
    
    Table dropped.
    
    SQL>
    SQL> create table master
      2  (ImageSerialNum varchar2(25));
    
    Table created.
    
    SQL>
    SQL>
    SQL> insert into master values ('Serial1');
    
    1 row created.
    
    SQL> insert into master values ('Serial2');
    
    1 row created.
    
    SQL> insert into master values ('Serial3');
    
    1 row created.
    
    SQL> insert into master values ('Serial4');
    
    1 row created.
    
    SQL> insert into master values ('Serial5');
    
    1 row created.
    
    SQL>
    SQL> create table details
      2  (ImageSerialNum  varchar2(25)
      3  ,ProcessID  number
      4  ,ProcessName varchar2(25)
      5  );
    
    Table created.
    
    SQL>
    SQL> insert into details values ('Serial1',  1, 'Process1');
    
    1 row created.
    
    SQL> insert into details values ('Serial3',  3, 'Process3');
    
    1 row created.
    
    SQL> insert into details values ('Serial5',  5, 'Process5');
    
    1 row created.
    
    SQL>
    SQL> select m.imageserialnum
      2       , d.processid
      3       , d.processname
      4    from master m
      5    left outer
      6    join details d
      7      on (m.imageSerialnum = d.imageserialnum)
      8   order by m.imageserialnum
      9  /
    
    IMAGESERIALNUM             PROCESSID PROCESSNAME
    ------------------------- ---------- -------------------------
    Serial1                            1 Process1
    Serial2
    Serial3                            3 Process3
    Serial4
    Serial5                            5 Process5
    

    your query will be something like

    select m.imageserialnum
         , d.processid
         , d.processname
      from () m
      left outer
      join (
    
  • By comparing the two records and return only the differences

    Hi all!

    Assume the records as follows:
    USERID     USERNAME   STREET   CITY   PHONE        
    ---------- ---------- -------- ------ -------------
             1 John Smith Street 1 City 1              
             1 John Smith Street 1 City 1 (31) 234-1234
    UserID is PK on this table. Imagine that this application represents two versions of the same record on a table. This recording was 'day' and the phone field changed from null to "(31) 234-1234'.»

    What I´d like to do is to retrieve only (or fields) that changed between these 2 versions of the same record. The idea is to call this query (or process PLSQL) a trigger and save these data on a table. The data returned by the query (or process), on the example above, should be something like:
           USERID     USERNAME STREET CITY PHONE        
    ---------- -------- ------ ---- -------------
             1                      (31) 234-1234
    1 row selected.
    If two columns have been modified, (Eg., City column also changed "City 1' to 'city 12'), the return value should be:
    USERID     USERNAME STREET CITY   PHONE        
    ---------- -------- ------ ------ -------------
             1                 City12 (31) 234-1234
    1 row selected.
    Any idea?
    Thank you very much for your attention.

    Hello

    What I´d like to do is to retrieve only (or fields) that changed between these 2 versions of the same record. The idea is to call this query (or process PLSQL) a trigger and save these data on a table.

    Looks like you're simply wanting a trigger?

    Something like:

    CREATE OR REPLACE TRIGGER audit_trg
      AFTER UPDATE ON your_table
      FOR EACH ROW
    BEGIN
    
     INSERT INTO audit_table(userid, username, street, city, phone)
     VALUES(
       :new.userid,
       nullif(:new.username, :old.username),
       nullif(:new.street, :old.street),
       nullif(:new.city, :old.city),
       nullif(:new.phone, :old.phone)
     );
    
    END;
    /
    
  • Return only the hits that corresponds to 3 or more keywords in the search string

    I created a Multi context column index that works as expected.

    In my application, I would like to be able to search using the following (or similar) string:

    "man dog cat tree fetch stick."

    And I would like to return only results that contain 3 or more words. That is to say, any result which contained 'man' and 'dog' and 'stick' would be a match, but the results which contained only "fetch" and "dog" wouldn't.

    Can anyone think of a way to create such a feature?

    Thank you very much in advance for your suggestions.

    Andy

    The "accum" operator (shortened - ",") could help here. Accum is set such that several results are guaranteed to produce a higher score than the terms less. He did this in 'zoning' results - if you do a search of accum for two words, then suddenly will always score in the range 1-50, and and two hits will always be in the range of 51 to 100.

    You can so work with your terms of six search, the result will be something like:
    1 Word hit 1-16
    2 words hit 17-33
    3 words reached 33-50
    4 words hit 51-83
    5 words hit 84-100

    So the search for at least three words is: CONTAINS (col, ' man, dog, cat, stick, tree, look for ") 32 >

    See the complete example below:

    SQL> drop table foo;
    Table dropped.
    
    SQL>
    SQL> create table foo(bar varchar2(60));
    Table created.
    
    SQL> insert into foo values ('man dog');
    1 row created.
    
    SQL> insert into foo values ('man dog cat');
    1 row created.
    
    SQL> insert into foo values ('man dog cat stick');
    1 row created.
    
    SQL> insert into foo values ('man dog cat stick tree');
    1 row created.
    
    SQL> insert into foo values ('man dog cat stick tree fetch');
    1 row created.
    
    SQL> create index foobar on foo(bar) indextype is ctxsys.context;
    Index created.
    
    SQL> select score(0), bar from foo where contains (bar, 'man , dog , cat , stick , tree , fetch', 0) > 0;
    
      SCORE(0)    BAR
    ----------    ------------------------------------------------------------
         17    man dog
         34    man dog cat
         51    man dog cat stick
         67    man dog cat stick tree
         84    man dog cat stick tree fetch
    
    SQL> select score(0), bar from foo where contains (bar, 'man , dog , cat , stick , tree , fetch', 0) > 32;
    
      SCORE(0)    BAR
    ----------    ------------------------------------------------------------
         34    man dog cat
         51    man dog cat stick
         67    man dog cat stick tree
         84    man dog cat stick tree fetch
    

    Of course you don't know the terms of research beforehand how many there are, in this case, you'll need to do the calculation, or use a lookup table to understand what are the limits of the partition.

  • Return only the records with a string of text that is less than a certain value?

    Hi people,

    I'm not sure whether this is possible or not, but worth-

    I need to be able somehow output only the lines with the text of a column field less to (because of the arguments) 30 characters (including spaces). I know that I can use CFs Left() function to cut the chain, but I don't want to have words cut off mid-sentence. Therefore, I want to somehow restrict the query to only the records that contain a string of less than 30 characters.

    Is this possible?

    Thanks in advance :-)

    You can use the length of the db function. It may or may not be named LEN()

    SELECT SomeColumn
    FROM YourTable
    WHERE LEN (SomeColumn)<=>

    Or you can retrieve all of the records and use one of the functions of the chain at cflib.org as FullLeft().
    http://www.cflib.org/UDF.cfm?id=329

  • Carriage returns in the HTML Code, creating additional spaces between elements

    I looked everywhere online and cannot find the solution to my problem. I found several pages explaining a similar event, but no solution.

    When you put several divs side by side, I would like to visually display the code as a div by line: (see image) to do this, I have to use returns in my code (this method makes editing much easier visually). But doing so adds an extra space between the divs that turns a game of 3 columns of thumbnails to 2 columns. I can fix it if I adjust the physical margins between the divs, but this isn't the only solution.

    with-carriage-returns.jpg

    The other difficulty is that if I put the code back to back to back (see picture): what makes the div behave and appear as they should, but now the code is a Visual disorder because it is very crowded.

    no-carriage-returns.jpg

    What I want is to be able to use as many carriage returns in my code and for browsers to ignore these types of line breaks in the code. So, basically, how can I get away from these extra spaces when you use returns in the code?

    I think that your two pages have a missing at the end somewhere.

    OPPS... it happened when I was stripping down the page to create a working example of my question. I set the div missing and re-uploaded both pages. The problem is still there.

    Change display: inline; float: left; and add margin: 0 0 4px 4px; (as shown below)

    I had already tried to use floats, but something else in the code forced the columns to 2 instead of 3.

    'Apply Source Formatting' did you use?

    I use that religiously. I'm quite anal about visually clean code.

    Well, I just fixed the problem while responding... funny... I removed the margins of the element img real (.imageThumb img) and placed on the div that surrounds the img (.imageThumb). I also reapply the float. Thank you all for the help - it helped me rethink. But I could have sworn I had once placed the margins on .imageThumb before and it didn't work.

    {.imageThumb}

    Width: 100px;

    height: 75px;

    display: inline;

    float: left;

    margin: 0px 10px 10px 0px;

    cursor: pointer;

    }

    .imageThumb img {}

    / * margin: 0px 10px 10px 0px; * /

    }

  • Return to the last code position

    When I am looking through a structure of great event or matter to study the LabVIEW code, it would be useful to be able just to go back to the last position within the code. (as in c# with "STRG +.") Even better would be to go back along the history of positions.

    This has actually already been proposed as an idea: http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Create-anchors-and-shortcuts-inside-LabVIEW-code-for/i...

    Note that in the comments for this idea you see many related ideas.

  • Installation of Photoshop CC 2015 - the exit code 7 - error DF024

    Hi guys!

    I try to install Photoshop CC 2015 via CC, but I get this error about 75% of the process:

    < PRE > exit code: 7

    Please see specific errors below for troubleshooting. For example, ERROR: DF024...

    -------------------------------------- Summary --------------------------------------

    -0 fatal Error (s), 2 error (s)

    -Payload: Adobe Preview CC 1.0.0.0 {A3B6E381-F2E8-47CD-87B4-96B1E3FF61D3}.

    ERROR: DF024: cannot move the file in "C:\Program Files (x 86) \Common {A3B6E381-F2E8-47CD-87B4-96B1E3FF61D3} \_2052_3ee4c568d00 54f5b21d63d4fe818c79c ' to 'C:\Program Files\Common Files\Adobe\Plug-Ins\CC\Generator\preview.generate\node_modules\ws\build\Release\bufferut il.node' error 32 O land ja esta sendo used por outro processo... Try setting the correct permissions for the specified file/folder or parent, so that the admin has the right to modify. SEQ (2053)

    -Payload: Adobe Photoshop CC 2015 Core 16.0.0.0 {793C2BF7-A4FE-4608-91C9-9282C5801C21}.

    ERROR: DF024: cannot move the file in "C:\Program Files (x 86) \Common {793C2BF7-A4FE-4608-91C9-9282C5801C21} \_1250_b1b0f3e49a1 13e98e0c5862478d3772e ' to 'C:\Program Files\Adobe\Adobe Photoshop CC 2015\Required\Droplet Template.exe' error 32 O land ja esta sendo used por outro processo... Try setting the correct permissions for the specified file/folder or parent, so that the admin has the right to modify. (Seq 259)

    -------------------------------------------------------------------------------------

    < / PRE >

    I tried to add all permissions for these folders, restore Microsoft Visual C++, tried to start in safe mode, but then I can´t internet access, so I can´t install it anyway...

    Someone has an idea?

    Thanks for the tips!

    Exit code: 6, Exit Code: 7 Installation error - http://helpx.adobe.com/creative-suite/kb/errors-exit-code-6-exit.html

    The problems with the Setup logs. CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html for more information on how to review your Setup logs

  • PS CC 2015 crashed. Now get the exit code 7 When reinstalling. [was: DF024]

    My PS 2015 CC crashed today, I deleted the creative cloud together and when reinstalling PS this message was little matter what I've done

    Exit Code: 7 Please see specific errors below for troubleshooting. For example,  ERROR: DF024 ...
       -------------------------------------- Summary --------------------------------------  - 0 fatal error(s), 2 error(s) 
    ----------- Payload: Adobe Preview CC 1.0.0.0 {A3B6E381-F2E8-47CD-87B4-96B1E3FF61D3} ----------- 
    ERROR: DF024: Unable to move file at "C:\Program Files (x86)\Common Files\Adobe\Installers\
    adobeTemp\{A3B6E381-F2E8-47CD-87B4-96B1E3FF61D3}\_2052_3ee4c568d0054f5b21d63d4fe818c79c" to
    "C:\Program Files\Common Files\Adobe\Plug-Ins\CC\Generator\preview.generate\node_modules\ws\build\Release\bufferutil.node"
    Error 32 The process cannot access the file because it is being used by another process..
    Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.(Seq 2053)

    ----------- Payload: Adobe Photoshop CC 2015 Core 16.0.0.0 {793C2BF7-A4FE-4608-91C9-9282C5801C21} ----------- 

    ERROR: DF024: Unable to move file at "C:\Program Files (x86)\Common Files\Adobe\Installers\adobeTemp\
    {793C2BF7-A4FE-4608-91C9-9282C5801C21}\_1821_b39804d28f53936006bc03a1ca161e6b" to "C:\Program Files\Adobe\Adobe Photoshop CC 2015
    \Required\DynamicLinkMediaServer\DNxHDCodec.dll" Error 32 The process cannot access the file because
    it is being used by another process..
    Try setting correct permissions to the specified file/folder or parent folder, so that admin has rights to modify it.
    (Seq 830)  -------------------------------------------------------------------------------------

    the files dont exisit, and no other programs are open.


    Help please!!!

    The Adobe Creative Cloud Cleaner tool allows to solve installation problems

Maybe you are looking for

  • Box of complete junk mail on iphone but not mac

    My filters junk mail very well on my iphone and ipad; but I have a practically empty spam folder on my iMac which paradoxically is not good; because I lack important emails sometimes end up there. I shouldn't get the same box of junk mail on my mac a

  • Yahoo cannot be deleted as opening page

    Windows uses 10 and now, everytime I open Firefox I am presented with a page of Yahoo. The craze is not working. I would be grateful for any ideas, I'm starting to hate Yahoo.

  • Autorun YouTube

    I left a youtube video that open in a tab I update every time it runs automatically. It only started happening. I want to refresh to see how the views she had. Running video, it distorts the figures. I have flashblock installed as an add on How can I

  • 6700 deleted printer Officejet printer job stuck in the queue

    How to get rid of deleted work that is stuck in the print queue of the printer, I tried to go in the DOS command prompt, type NET STOP SPOOLER, then NET START SPOOLER, but it did not work.  Any suggestions on this issue?

  • Bundled Norton Internet Security

    Hey guys How to reinstall Norton Internet Security which was packaged with a Toshiba laptop. No CD have been provided and I can't find the product numbers...