cahsobo Posted February 20, 2018 Posted February 20, 2018 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...
cahsobo Posted February 20, 2018 Author Posted February 20, 2018 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))
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