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") WinWaitAct...
-
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 create...
- 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...