Hi,
My below command keep failed in bigfix after i SD to selected client, is there anything wrong with my entire line?
regset64 “[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Class{4d36e972-e325-11ce-bfc1-08002be10318}\0002]” “*EEE”=“0”
You need to escape the { symbol by replacing it with {{, else that is being interpreted as a Relevance substitution. See Tip: Escaping curly brackets for substitutions in ActionScript
{
{{
Also, you don’t really need to use regset64 explicitly for HKLM\SYSTEM, unlike HKLM\Software, that is not branched differently for x32 or x64 so regset & regset64 would do the same exact job.
Thank you, it works.