Teja537
November 13, 2015, 3:49pm
1
“setup64.exe” -s -f1c:\Users\public\Inst_Temp\PDDC5.0.6.1140R1\PDDC5.0.6.1140R1.iss -f2C:\ProgramData\DSE\Logs\PDDC5.0.6.1140R1_EXE.log
Can any one help i writing action script for this?
wait “{ (pathname of folders “ProgramData\DSE\BigFix” of root folders of drives of system folders) & “” & parameter “_app_name” }\setup64.exe” /install /quiet /norestart /log REBOOT=REALLYSUPPRESS AllUSERS=1 /L*V “{ pathname of folders “ProgramData\DSE\Logs” of root folders of drives of system folders }\PDDC5.0.6.1140R1_EXE.log”
I used this, but is coming wrong.
Thanks
jmaple
November 13, 2015, 4:04pm
2
What is the exit code (if any) or error you are getting when this runs?
Teja537
November 13, 2015, 5:00pm
3
It’s not at all executing I need to restart the IEM bigfix Services again.
jmaple
November 13, 2015, 5:02pm
4
If you run this command normally on a command-line, does this complete successfully?
Teja537
November 13, 2015, 6:44pm
5
No it doesn’t run successful.
jgstew
November 13, 2015, 7:53pm
6
@jmaple is asking if this works on the regular command prompt:
setup64.exe -s -f1c:\Users\public\Inst_Temp\PDDC5.0.6.1140R1\PDDC5.0.6.1140R1.iss -f2C:\ProgramData\DSE\Logs\PDDC5.0.6.1140R1_EXE.log
You need to ensure that works first before trying to get it to work in BigFix.
Teja537
November 13, 2015, 8:05pm
7
Jgstew: its working on the command line with that path.
1 Like
jgstew
November 13, 2015, 8:06pm
8
In that case, your actionscript uses completely different command line switches, so that seems like the issue.
Teja537
November 13, 2015, 8:19pm
9
Can you let me know, what type of switches I need to use.
Thanks.
jgstew
November 13, 2015, 9:21pm
10
I have no idea, but the switches you say work on the command line aren’t the ones you are trying to use in the actionscript.
You say this is the command line that works:
setup64.exe -s -f1c:\Users\public\Inst_Temp\PDDC5.0.6.1140R1\PDDC5.0.6.1140R1.iss -f2C:\ProgramData\DSE\Logs\PDDC5.0.6.1140R1_EXE.log
but that isn’t what you are doing in actionscript, you are doing the following:
setup64.exe /install /quiet /norestart /log REBOOT=REALLYSUPPRESS AllUSERS=1 /L*V C:\ProgramData\DSE\Logs\PDDC5.0.6.1140R1_EXE.log
These are not the same.
1 Like