Jump to content

bensoules

Member
  • Posts

    3
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Australia

About bensoules

bensoules's Achievements

0

Reputation

  1. Launch the installer using the .XML as explained on the adobe web site then make a batch file which calls a vb script using: wscript.exe WaitForExe.vbs "setup.exe" this will pause the script until the process "setup.exe" has stopped running. this is the vbs for the WaitForExe.vbs On Error Resume Next If WScript.Arguments.Count <> 1 Then Else blnRunning = True Do While blnRunning = True Set objWMIService = GetObject("winmgmts:\\.\root\cimv2") Set colItems = objWMIService.ExecQuery("Select Name from Win32_Process where Name='" & Wscript.Arguments(0) & "'",,48) blnRunning = False For Each objItem in colItems blnRunning = True Next WScript.Sleep 30000 Loop End If This can also be used for monitoring any other process, so you can pause a script until a process has finished. Thanks Ben
  2. You could try ControlClick ( "Window Name", "", "&Next >" )
  3. Hi, It is a bit different this time... Just follow this guide http://www.blackberry.com/knowledgecenterp...788170&vernum=0 I am however having problem with getting the install switches correctly. If I use <drive>\network directory\setup.exe /s /l<language ID> /v INSTALLLEVEL=<X> as suggested it doesnt install under allusers (I have setup the ini file correctly) any Ideas? ta
×
×
  • Create New...