HKEY sub;
CString skey= "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\RuanJianBox";
if(::RegCreateKey(HKEY_LOCAL_MACHINE,skey,&sub))
{
MessageBox("創建成功");
}
DWORD dwDisposition=REG_CREATED_NEW_KEY;
//--------------------------------------------
int aaa = ERROR_SUCCESS==::RegCreateKeyEx(HKEY_LOCAL_MACHINE,skey,0,NULL,
REG_OPTION_NON_VOLATILE,KEY_ALL_ACCESS,NULL,&sub,&dwDisposition);
if (aaa !=ERROR_SUCCESS)
{
CString strerror;
strerror.Format("%d",aaa);
MessageBox(strerror);
}
::RegCloseKey(sub);
我想在注冊表創建SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall下創建新項
用RegCreateKey 返回值正確 但是注冊表裡面不顯示
用RegCreateKeyEX 返回值是 1;
求大神指教
另外新項 下面如何創建 新鍵;
請關閉您所打開的注冊表句柄,沒有關閉數據可能不會實際寫入注冊表。