Jump to content

Alagor

Member
  • Posts

    20
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Spain

Posts posted by Alagor

  1. thx Rico.JohnnY, but not work

    If RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\Lavasoft", "") <> "" Then

    $PID = Run( @ScriptDir & '\spybot.exe' )

    ProcessWaitClose($PID)

    Else

    $PID = Run( @ScriptDir & '\ad-aware.exe' )

    ProcessWaitClose($PID)

    EndIf

    tested and not work.

    it always executes spybot.exe exists or not that entrance of registry

    solution?

    thx!!!!!!!

  2. thanks to answer, but do not work

    my scrip fails in which always "11111.exe" executes the application, exists or not entered it the registry.

    it never executes "2222.exe"

    I want that it verifies if an entrance in the registry exists, and if it exists it executes an application and if it does not exist it executes another one.

    thank you very much!

  3. if RegRead("HKEY_LOCAL_MACHINE\xxxxx\xxxxxx", "") Then

    ProcessWaitClose("1111.exe")

    $PID = Run("1111.exe")

    ProcessWaitClose($PID)

    exit

    else

    ProcessWaitClose("2222.exe")

    $PID = Run("2222.exe")

    ProcessWaitClose($PID)

    exit

    EndIf

    not work

    As I verify if a key in the registry exists?

    because desire to do scrip that it verifies if an entrance in the registry exists and if it exists executes an application and if it does not exist it executes another one.

    pardon by my ingles, but I do not speak ingles.

  4. Run(@ComSpec & " /C " & "%SYSTEMDRIVE%\UTILS\xxx.msi /qn", "", @SW_HIDE)

    Not work :no::no: ?? :

    Run(@ComSpec & " /C " & "xxx.msi /xxx /xxx", "", @SW_HIDE)

    it cannot directly execute the application that wishes without looking for the route systemdrive\etc?

    ; *******************************************************
    ; Example 1 - Create a browser window and navigate to a website
    ; *******************************************************
    ;
    #include <IE.au3>
    $oIE = _IECreate ("www.autoitscript.com")

    ; *******************************************************
    ; Example 2 - Create new browser windows pointing to each of 3 different URLs
    ; if one does not already exist ($f_tryAttach = 1)
    ; do not wait for the page loads to complete ($f_wait = 0)
    ; *******************************************************
    ;
    #include <IE.au3>
    _IECreate ("www.autoitscript.com", 1, 1, 0)
    _IECreate ("my.yahoo.com", 1, 1, 0)
    _IECreate ("www.google.com", 1, 1, 0)

    ; *******************************************************
    ; Example 3 - Attempt to attach to an existing browser displaying a particular website URL
    ; Create a new browser and navigate to that site if one does not already exist
    ; *******************************************************
    ;
    #include <IE.au3>
    $oIE = _IECreate ("www.autoitscript.com", 1)
    ; Check @extended return value to see if attach was successful
    If @extended Then
    MsgBox(0, "", "Attached to Existing Browser")
    Else
    MsgBox(0, "", "Created New Browser")
    EndIf

    ; *******************************************************
    ; Example 4 - Create an empty browser window and populate it with custom HTML
    ; *******************************************************
    ;
    #include <IE.au3>
    $oIE = _IECreate ()
    $sHTML = "<h1>Hello World!</h1>"
    _IEBodyWriteHTML ($oIE, $sHTML)

    ; *******************************************************
    ; Example 5 - Create an invisible browser window, navigate to a website,
    ; retrieve some information and Quit
    ; *******************************************************
    ;
    #include <IE.au3>
    $oIE = _IECreate ("http://sourceforge.net", 0, 0)
    ; Display the innerText on an element on the page with a name of "sfmarquee"
    $oMarquee = _IEGetObjByName ($oIE, "sfmarquee")
    MsgBox(0, "SourceForge Information", $oMarquee.innerText)
    _IEQuit ($oIE)

    it cannot open a document HTML directly? the pagina Web that I want to open to load scrip that it takes the HTML and for that reason it is not a direct link that can be created with IECreate

    thx very much

  5. Opt("WinWaitDelay",100)

    Opt("WinTitleMatchMode",4)

    Opt("WinDetectHiddenText",1)

    Opt("MouseCoordMode",0)

    Run('nod32.exe')

    waitingforretun? **

    EXIT

    **I need scrip that when executing one apliacion with "run", is expected until that process finishes (nod32.exe) and finishes closes scrip

  6. @Alogar: Go into the wpi.htm file, near the top change the maxentries=29 to 24, for case '600'. This is how many items per row allowed for the resolution.

    And make sure you have 'No column break in categories' checked.

    thank you very much

    problem solved!

    another one question, like change the color orange of the programs selected by the black color?

  7. @Alogar: WPI cuts off the top title to give some more room for the items. It is working correctly.

    NO :no::no::no:

    800 of resolicion it does not show half of categorias, and it hides without possibility of seeing them them. in the image one sees as it hides the section of office, utilities, system, etc..

    IT DOES NOT WORK

  8. the theme mritter_euDock NOT WORK at resolution 800

    Image a resolution 1024... work correctly...

    Dibujo2.JPG

    Image a resolution 800... not work correctly... :no::no::no::no:

    Dibujo_000.jpg

    please, some solution?

    another question, as I can change to the color orange of the programs selected by the black color?

    sorry by my ingles, but I do not speak ingles

×
×
  • Create New...