Jump to content

Recommended Posts

Posted

Hello,

I need help inserting these keys and values to registry

 

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DirectDraw\Compatibility\WK.1.exe]
"Flags"=hex:00,08,00,00
"ID"=hex:ec,33,74,3b

 

Still can't figure out how...

Posted

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))

 

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
×
×
  • Create New...