Aram
August 30, 2016, 3:32pm
3
I believe the challenge you are facing here has to do with the fact that you are trying to modify keys under HKEY_CURRENT_USER. Since the BigFix Client process runs as Local SYSTEM, the user context is different.
Please see the following technote for some information and suggestions on how to approach this:
http://www-01.ibm.com/support/docview.wss?uid=swg21505908
There are a lot of other posts on the forum related to this that might help to explore as well, such as:
I’ve seen a few posts on this, and several link to other posts that are private/deleted. I am trying to modify a registry key under HKCU using this actionscript:
delete __appendfile
appendfile {concatenation "%0d%0a" of ("reg add %22HKEY_CURRENT_USER\SOFTWARE\Microsoft\Internet Explorer\Main%22 /v %22SpellChecking%22 /t reg_dword /d 00000000 /f") of names of keys of key "HKEY_CURRENT_USER" of registry}
delete delreg.bat
move __appendfile delreg.bat
waithidden delreg.bat
Can someone tell me whe…