Jump to content

beep

Member
  • Posts

    5
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Sweden

Posts posted by beep

  1. Hi,

    Smells like spam, when i got an email from "Nick Contreras"

    Hi, il

    University Diplomas

    No required tests, classes, books, or interviews.

    Please call:

    1-206-338-3737

    excrete buddy wrigley kingdom tintype insurgent graphite tape sao leap

    spay silt, provenance tinge shameful bog perceptual preemptor allyl oh cryostat marginalia

    off thieving .bernhard luis sniffle dedicate corn hornmouth porte lin matriculate

    plethora! are interrogatory. cistern hydrochloric gallup vitiate whiplash covenant. salve pontificate bursty minoan.

    Your Nick

    any one else got this?

    I happen to have a unique email address for this forum.

    where did it leak out?

    Regards,

    Beep

  2. About Mozilla

    this is what i found on Unattended/Silent Installation Switches for Windows Apps:

    There are other apps there to, check it out.

    For unattended install, run with -ma and -ira options. This is not exactly well-documented; this old USENET post is all I can find.

    I am not sure what -ira does, exactly, but without it the Mozilla installer fires up Mozilla just before exiting. This is annoying because the windows Mozilla creates can interfere with other things, like AutoIt scripts. With -ira, this does not happen, and I have noticed no bad side-effects, so there we are. (If anybody has definitive information here, I would love to hear it.)

    cheers

    ::beep

  3. Hi all,

    Im reading a lot of post here, realy nice, thanks m8s.

    If you don't already know the Script.Shell has a property/method calld AppActive

    With its method you can bring a particularly window to focus.

    Using it as a propery you can check if there is a window with that name if so it will get focus.

    this will speed up vb script installation helper and you dont have to fine tune the sleep between you actions, you can use a function similar to this

    Option Explicit

    'to wait for the window "Setup Finish" to appare and press Alt n

    '!NOTE! if there are more then one window with the same name it will not work, it will need more work!


    dim WshShell, iLoopTimeWait
    Set WshShell = WScript.CreateObject("WScript.Shell")
    iLoopTimeWait = 500
    Call Main()
    Set WshShell = Nothing

    Sub Main()
      Connect2Window iLoopTimeWait, "Setup Finish"
      WshShell.SendKeys "%n"
    End Sub


    Function  Connect2Window(iTime, sWindowName)
      Do until WshShell.AppActivate (sWindowName)
         WScript.Sleep iTime
      loop
    End function

    cheers

    ::beep

×
×
  • Create New...