1603 is unfortunately not a lot of help.  It seems to mean 'something went 
wrong' but doesn't detail why.

Most msi type installers can write a log of what is going on I suggest you 
try running it with whatever command line options are available to get it 
to generate a log and look through that (probably from the bottom up - 
there's often a lot of noise in msi logs).

Annoyingly a lot of installers still expect a GUI unless you explicitly 
tell them not to use the GUI.  

On Wednesday, June 8, 2016 at 9:36:18 PM UTC+1, Justin Dugan wrote:
>
> I am trying to install software on some windows machines using ansible. I 
> have tried raw and win_package to do this. Both of them result in a 1603 
> error from windows. The same command run fine when logged into the machine 
> using RDP using the same user account. 
>
> - name: install RDE
>   raw: "c:\\Temp\\RDEInstall.exe /passive SILENT_INSTALL=true'"
>   register: raw_output
> - debug: var=raw_output.stdout
> - debug: var=raw_output.stderr
>
>
> This produces the following output:
>
> TASK [RDE : install RDE] 
> *******************************************************
> ok: [installtest]
>
> TASK [RDE : debug] 
> *************************************************************
> ok: [installtest] => {
>     "raw_output.stdout": ""
> }
>
> TASK [RDE : debug] 
> *************************************************************
> ok: [installtest] => {
>     "raw_output.stderr": ""
> }
>
>
> The Windows application log shows a return code of 1603 for event 1033 for 
> this install. As stated before, if the raw command is executed on the 
> machine (e.g. powershell window) via RDP, it installs fine. This leads me 
> to believe the installer is missing access to something when it's executed 
> via ansible that it has when executed on the machine. 
>
> Any help would be appreciated.
>
> Thanks!
>

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/d18037de-8fcd-4c4c-a25a-0877d43d8e8e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to