Need Command for cmd file execute

Hi Team,

I am trying to execute cmd file using bigfix with parameter, it is not showing any error but the command results does not worked/updated on target servers.

the execution command like below:
wait cmd.exe /C "C:\program files\Tripwire\automation.cmd setchannel --allow-insecure-short “password old” “password new”

the same command while trying from command prompt it is working and value also updated in target servers.

any suggestion for this.

Thanks,
Nagaraj.

Cmd.exe requires special handling for quoted parameters (which would be the same regardless of BigFix).

Edit: you probably also need to disable 32-bit redirection.

Try

action uses wow64 redirection false

wait cmd.exe /C ""C:\program files\Tripwire\automation.cmd" setchannel --allow-insecure-short "password old" "password new""
1 Like