Action script for the fixlet

“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

What is the exit code (if any) or error you are getting when this runs?

It’s not at all executing I need to restart the IEM bigfix Services again.

If you run this command normally on a command-line, does this complete successfully?

No it doesn’t run successful.

@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.

Jgstew: its working on the command line with that path.

1 Like

In that case, your actionscript uses completely different command line switches, so that seems like the issue.

Can you let me know, what type of switches I need to use.

Thanks.

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