theutlass Posted June 10, 2008 Posted June 10, 2008 Hi,I was making a batch file wich write in the registry but i have to write something like that"BackgroundColor"=hex:ff,ff,ff,00"Text"=dword:00000400and i dunno how to write this via a batch fileThanx in advance
radix Posted June 10, 2008 Posted June 10, 2008 Hi,I was making a batch file wich write in the registry but i have to write something like that"BackgroundColor"=hex:ff,ff,ff,00 "Text"=dword:00000400and i dunno how to write this via a batch fileThanx in advanceSomething like this:REG.EXE ADD "HKCU\Control Panel\Desktop" /v "BackgroundColor" /t REG_BINARY /d "ffffff00" /fREG.EXE ADD "HKCU\Control Panel\Desktop" /v "Text" /t REG_DWORD /d "00000400" /f
x-Shadow-x Posted June 11, 2008 Posted June 11, 2008 (edited) Wouldnt it be?REG ADD "HKCU\Control Panel\Desktop" /v BackgroundColor /t REG_BINARY /d ffffff00 /fREG ADD "HKCU\Control Panel\Desktop" /v Text /t REG_DWORD /d 00000400 /f Edited June 11, 2008 by x-Shadow-x
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now