Topic: Windows installer help
I modified the fusioninventory-agent-deployment.vbs script to add logging and get some insight into this but am unable to perform an installation:
Dim strCmdComplete : strCmdComplete = (SetupLocation & "\" & Setup & " " & SetupOptions)
Dim exec : Set exec = shell.Exec("CMD.EXE /C " & strCmdComplete)
...
objLog.WriteLine strTimeStamp & " -- Output: " & output
strTimeStamp = GetTimeStamp ()
objLog.WriteLine strTimeStamp & " -- Deployment done!"
I’m getting logs, but no output from the .exe:
2017-08-16 17:10:17:0816 -- Beginning MAIN
2017-08-16 17:10:17:0816 -- System architecture detected: x64
2017-08-16 17:10:17:0816 -- Setup architecture detected: x64
2017-08-16 17:10:17:0816 -- Installation forced: 2.3.21
2017-08-16 17:10:17:0824 -- Running: "\\172.16.172.25\setup\fusioninventory-agent_windows-x64_2.3.21.exe" /acceptlicense /debug=2 /runnow /server='hxxp://monitor.mydomain/glpi/plugins/fusioninventory/' /S
2017-08-16 17:10:37:0207 -- Output:
2017-08-16 17:10:37:0207 -- Deployment done!
On the manual for the Windows installer the words ToDo are above the /debug switch so I’m guessing there is no active debug.
Does anyone have a clue how I can get more feedback about what's failing?
Thanks!