Jump to content

Need Help in adding hex values to registry


cahsobo
 Share

Recommended Posts

Never mind,

 

Finally just figured it out

 

; Write the REG_SZ value of "WK.exe". 
    RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DirectDraw\Compatibility\WK.1.exe", "Name", "REG_SZ", "WK.exe")

    ; Write the REG_BINARY value of flags and ID
  $BinFlag = '0x00800000'
  $BinID = '0xec33743b'
    

     RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DirectDraw\Compatibility\WK.1.exe", "Flags", "REG_BINARY", 

binary($BinFlag))

    RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DirectDraw\Compatibility\WK.1.exe", "ID", "REG_BINARY", binary

($BinID))

 

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...