Search the Community
Showing results for tags '@sw_hide'.
-
Hi, I tried like this but windows/screens are still not hidden. It does go each step and completed. All steps were visible, not hidden. Please help. Run("setup.exe", "",@SW_HIDE) WinWaitActive("Software Setup") WinSetState("Software Setup", "",@SW_HIDE) Send("!n") WinWaitActive("Software Config") WinSetState("Software Config","",@SW_HIDE) Send("{ENTER}")
-
Hi Only on some Windows 10 PCs do I get the issue that the Run() fails with the @SW_HIDE = Hidden window (or Default keyword) option. Not all Win10 machines, only some, but then consistently. I have put UAC to lowest level, no joy. As if the OS does not allow the hidden window to be created... Seems that @SW_MINIMIZE = Minimized window or @SW_MAXIMIZE = Maximized window does not suffer the same fate. I will have more info in a day or so. Anybody else with similar experience? Skysnake
- 4 replies
-
- windows 10
- run()
-
(and 1 more)
Tagged with:
-
Hi guys! I need your help again! During the execution of the script new windows are constantly appearing. I decided to use this script: Do $aWinList = WinList() For $i=1 To $aWinList[0][0] Step 1 WinSetState ( $aWinList[$i][0], "", @SW_HIDE ) Next Until ProcessExists("Installer.exe")="0" But this is script is really bad, because this this script is too slow (Windows have time to appear on the desktop). Is there any way to assign to all future windows option @SW_Hide?