I am using Registry module. The problem is that lRet = Registry_SetValue("HKEYLM", "SYSTEM\WPA\MyProduct", "Installed", 1) always writes String value. I need DWord value. How should I do it?
No. I found the correct way. It is lRet = Registry_SetDWord("HKEYLM", "SYSTEM\WPA\MyProduct", "Installed", 1)
Bookmarks