Jump to content

Recommended Posts

Posted

Hi, I'm new to this languge, but it's awesome :lmao:

Anyway, I currently have a MSI installer which I run with the /QR command. In the middle an error pops up which I ignore with autoit. Now, is it possible to hide the installer with this script? I can't seem to get it tow ork.

Posted

run or runas with @SW_HIDE option :lmao:

See help for details.

Andre

What about Windows without using AutoIt ?It would be the same as driving a car without an steering Wheel!
Posted

Doesn't work cause the initial installer (which is ironically hidden by default) launches a second instance. o:)

Anyway, my code just won't work. It hates me. :lmao:

I have a SETUP.EXE which launches a .MSI with the title "Windows installer". After some while that title changes to "Program". Later an error appears, which I was able to ignore. But nothing is invisible. here's my code:

Run("SETUP.EXE /QB")

WinWaitActive("Windows Installer")
ControlHide("Windows Installer")

WinWaitActive("Program")
ControlHide("Program")

WinWaitActive("Program Fault", "Error")
Send("!N")

WinWaitClose("Program")

Any ideas? I searched. :/

Posted

Hi,

Try WinSetState instead of ControlHide ?

Andre

What about Windows without using AutoIt ?It would be the same as driving a car without an steering Wheel!

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...