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;
求大神指教
另外新项 下面如何创建 新键;