Remove Airlock Client

Hi, I'm trying to put together a fixlet to remove the Airlock Digital client from some servers

This is my action script

action uses wow64 redirection {not x64 of operating system}

waithidden cmd.exe /c msiexec.exe /x "{D1D5405B-6ACF-4075-A5B5-33781B36F607}" /qn /norestart

client logs show the following

Command failed (Relevance substitution failed) waithidden cmd.exe /c msiexec.exe /x "{D1D5405B-6ACF-4075-A5B5-33781B36F607}" /qn /norestart (action:230029)

Please help.

As your action has curly braces in, you’ll need to escape the leading one to prevent it from being treated as relevance substitution

action uses wow64 redirection {not x64 of operating system}
waithidden cmd.exe /c msiexec.exe /x "{{D1D5405B-6ACF-4075-A5B5-33781B36F607}" /qn /norestart

1 Like