Link to home
Start Free TrialLog in
Avatar of mcathcart
mcathcart

asked on

Kixtart Add Registry Key

I need to add a registry key using Kixtart, but I am having trouble getting it to work. Here is what I have so far:

if @userid = "rpaxton"
writevalue("HKCU\Software\Microsoft\Office\11.\Common\MailSettings","ReplyFontSimple",3c0000000f0000e800000000c8000000b6127374000000000020417269616c0000000000000000000000000001000000a0ea13000100000001000000,"REG_BINARY")
endif

This is not working. Any ideas?
Avatar of wantabe2
wantabe2
Flag of United States of America image

Try putting parenthesis around the username like below:

if @userid = ("rpaxton")
writevalue("HKCU\Software\Microsoft\Office\11.\Common\MailSettings","ReplyFontSimple",3c0000000f0000e800000000c8000000b6127374000000000020417269616c0000000000000000000000000001000000a0ea13000100000001000000,"REG_BINARY")
endif
ASKER CERTIFIED SOLUTION
Avatar of MikeKane
MikeKane
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial