Modify HKey_USERS\.DEFAULT

(imported topic written by jpeppers91)

I’m trying to modify the SCRNSAVE.EXE key in the registry with no luck. Any suggestions?

f {exists “c:\windows\system32”}

action uses wow64 redirection false

delete __appendfile

delete wizardedit.reg

appendfile Windows Registry Editor Version 5.00

appendfile

appendfile

http://HKEY_USERS.DEFAULT\Control Panel\Desktop

appendfile “SCRNSAVE.EXE”=“c:\windows\system32\icons.scr”

move __appendfile wizardedit.reg

endif

if {exists “c:\winnt\system32”}

action uses wow64 redirection false

delete __appendfile

delete wizardedit.reg

appendfile Windows Registry Editor Version 5.00

appendfile

appendfile [

http://HKEY_USERS.DEFAULT\Control Panel\Desktop

appendfile “SCRNSAVE.EXE”=“c:\winnt\system32\icons.scr”

move __appendfile wizardedit.reg

endif

1 Like

(imported comment written by jpeppers91)

regset "

http://HKEY_USERS.DEFAULT\Control Panel\Desktop

" “SCRNSAVE.EXE”=“c:\windows\system32\icons.scr”

This doesn’t even work. Am I able to modify that key?

(imported comment written by jessewk)

you are missing a backslash in the path

(imported comment written by jpeppers91)

Ahh, I looked at that a hundred times. Thanks!