Hi guys,
I'm trying to run a simple .MSI file as our Domain Admin account to install something.
I'm totally new to this and my scripting skills are... Poor, so any help really appreciated.
I've tried reading up, but so far I'm stuck.
Here's my script - Don't laugh!
; Script Start - Add your code below here
Local $sUserName = "account"
Local $sPassword = "password"
Local $sDomain = "domain"
RunAsWait($sUserName, $sDomain, $sPassword, 0, ("msiexec /i "C:FileInstaller.msi""))
i get this error:
I've tried many different variations, but it still keeps failing... Tell me I'm missing something really silly, or the script is just totally wrong??