I still don't get it. I can get a program to be called up by AutoIt but I don't get it go thru any menus.
When I use the recorder, I tried using either the tab buttons or mouse clicks but I only get this:
#region --- ScriptWriter generated code Start ---
Opt("WinWaitDelay",100)
Opt("WinTitleMatchMode",4)
Opt("WinDetectHiddenText",1)
Opt("MouseCoordMode",0)
Run('E:\HFSLIPXPENG\SOURCE\WPI\Install\DCOMBobulator\DCOMbob.exe')
#endregion --- ScriptWriter generated code End ---
Why?
I tried using:
send ("{RIGHT}")
I tried using:
send ("!M")
but the program just doesn't react...
what am I doing wrong?
Page 1 of 1
DCOMBobulator
#2
Posted 30 May 2008 - 12:34 PM
Not sure but perhaps the installer might be Java based or something. Differcult to know with the small amount of information suppled. The "Dcom Server Process Launcher" service is probably all that program disables and you can just use SC.exe to do that for you.
Untested but I presume it will work for you.
Untested but I presume it will work for you.
RunWait('sc stop DcomLaunch && sc config DcomLaunch start=disabled', '', @SW_HIDE)
This post has been edited by MHz: 30 May 2008 - 12:35 PM
#3
Posted 01 June 2008 - 01:21 AM
I've just reread their website and found out that they now support a silent install, maybe someone can add it to the list of silent installs... (last time I read it was about 2 years ago, so things have changed even if the program hasn't changed much).
the switches are:
DCOMbob disable
DCOMbob enable
DCOMbob verify
the verification possibility is there to make sure that it has worked.
the switches are:
DCOMbob disable
DCOMbob enable
DCOMbob verify
the verification possibility is there to make sure that it has worked.
This post has been edited by Dislocated Time: 01 June 2008 - 01:23 AM
#4
Posted 07 June 2008 - 01:10 PM
you can try this code to see if you can get around the menu...
run ("DCOMbob.exe")
winwaitactive (" DCOMbobulator -- Say no to DCOM to improve your security.","The GRC DCOMbobulator")
sleep (200)
send ("!{V}");Select Am I Vulnerable? Tab
send ("!{R}"); Activate Remote Port 135 Test
sleep (1000)
send ("!{M}"); Select DCOMBobulate Me! Tab
send ("!{E}"); Enable DCOM
#5
Posted 07 June 2008 - 03:56 PM
Next...
I assume you are trying to Disable DCOM by default & you are using HFslip. So to install & disabled automatically, you
1) put DCOMbob.exe into the path: ....\HFEXPERT\PROGRAMFILES\DCOMbob\DCOMbob.exe
2) Create a script DCOMbobscript.au3 within HFExpert\autoit folder
with the code
Hope this is what you want
(BTW, I did not test the script. But believe should work)
I assume you are trying to Disable DCOM by default & you are using HFslip. So to install & disabled automatically, you
1) put DCOMbob.exe into the path: ....\HFEXPERT\PROGRAMFILES\DCOMbob\DCOMbob.exe
2) Create a script DCOMbobscript.au3 within HFExpert\autoit folder
with the code
Runwait (@ProgramFilesDir&"\DCOMbob"&"\DCOMbob.exe disable","",@SW_HIDE)
Hope this is what you want
(BTW, I did not test the script. But believe should work)
Share this topic:
Page 1 of 1



Help

Back to top









