Jump to content

Recommended Posts

Posted

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:00000400

and i dunno how to write this via a batch file

Thanx in advance


Posted
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:00000400

and i dunno how to write this via a batch file

Thanx in advance

Something like this:

REG.EXE ADD "HKCU\Control Panel\Desktop" /v "BackgroundColor" /t REG_BINARY /d "ffffff00" /f
REG.EXE ADD "HKCU\Control Panel\Desktop" /v "Text" /t REG_DWORD /d "00000400" /f

Posted (edited)

Wouldnt it be?

REG ADD "HKCU\Control Panel\Desktop" /v BackgroundColor /t REG_BINARY /d ffffff00 /f
REG ADD "HKCU\Control Panel\Desktop" /v Text /t REG_DWORD /d 00000400 /f

Edited by x-Shadow-x

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...