hello,
first of all i am new to scripting and just wanted to make an .exe which replaces the standard boot gui with the os information.
i copied the the script from Szhlopp in this http://www.autoitscript.com/forum/topic/100565-script-to-automate-msconfig/ thread and just changed the buttons and the tab. it didn't work and i can't figure out how.
what am i doing wrong?
there are no errors on my machine when i run the script and it does nothing when i run the compiled .exe.
here is "my" script:
i'd apreciate any help concerning this matter.
thanks
tax
first of all i am new to scripting and just wanted to make an .exe which replaces the standard boot gui with the os information.
i copied the the script from Szhlopp in this http://www.autoitscript.com/forum/topic/100565-script-to-automate-msconfig/ thread and just changed the buttons and the tab. it didn't work and i can't figure out how.
what am i doing wrong?
there are no errors on my machine when i run the script and it does nothing when i run the compiled .exe.
here is "my" script:
[ autoit ]
#include-once #include "GuiTab.au3" Run("msconfig.exe") WinWait("System Configuration") Sleep(500) $hSysconfig = WinGetHandle("System Configuration") $hTab = ControlGetHandle($hSysConfig, "", "SysTabControl321") ; Click Boot _GUICtrlTab_ClickTab($hTab, 1) Sleep(50) ; Check No Gui Start ControlCommand($hSysConfig, "", "Button10", "Check") Sleep(50) ; Check Show OS Boot Information ControlCommand($hSysConfig, "", "Button13", "Check") Sleep(50) ; Click Apply ControlClick($hSysConfig, "", "Button25") Sleep(50)
i'd apreciate any help concerning this matter.
thanks
tax