Regedit action is failed

I ran a action the following script. But th action status was a “failed”. Why?

regset “[HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Low Rights\ElevationPolicy{CF1E7C6B-B6CC-4AF8-84B9-86A7F6BDCA96}]” “Policy”=dword:00000003

“failed” has nearly zero information, but I presume you got "Relevance substitution failed."
In ActionScript, the character “{” indicates beginning of relevance expression. To use “{” as character, you need to escape to “{{”.

There is a support article:
http://www-01.ibm.com/support/docview.wss?uid=swg21506259

2 Likes

Hi Akira-san,

Thank you for quick replay. I changed to the following script and ran this.
Then this action was “success”. And I could confirm to be changed the registry value by this action .

regset “[HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Low Rights\ElevationPolicy{{CF1E7C6B-B6CC-4AF8-84B9-86A7F6BDCA96}]” “Policy”=dword:00000003