joe3k
Member
- Reaction score
- 0
Guys I tried to install SIW via AutoIT but I could not find a silent switch for it. I am unsure if one is needed but rather than waste time I tried Belarc instead. I managed to get Belarc installed automatically via AutoIT, however I want it to autosave the profile created.
Problem is: the profile is a webpage. Can autoIT send something like Ctrl-S and input filenames and where to save?
Can SIW be automated even... as it would be better anyhow.
Here's my attempted AutoIT script but the ctrl-s doesn't work:
Problem is: the profile is a webpage. Can autoIT send something like Ctrl-S and input filenames and where to save?
Can SIW be automated even... as it would be better anyhow.
Here's my attempted AutoIT script but the ctrl-s doesn't work:
Code:
RunWait("advisor.exe /S ")
WinWaitActive("Belarc Analysis - Check for New Definitions")
Send("{TAB}{ENTER}")
WinWaitActive("Belarc Advisor Current Profile")
Send("{CTRL}+{S}")
Exit