0

我尝试在HKEY_LOCAL_MACHINE中添加一个密钥,但一切正常,没有添加我的密钥,但是当我将HKEY_LOCAL_MACHINE更改为HKEY_CURRENT_USER时,代码工作正常并在 HKEY_CURRENT_USER 中添加了我的密钥。

我将链接器 -> 清单文件 -> UAC 执行级别更改为 requireAdministrator (/level='requireAdministrator')

和 UAC 以管理员身份运行我的文件,我该怎么办?请帮助我。

int create_key(char * path)
{
        LSTATUS reg_key;
        int check;

        HKEY hkey;
        reg_key=RegOpenKeyEx(HKEY_LOCAL_MACHINE,TEXT("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run"),0,KEY_ALL_ACCESS,&hkey);
        if (reg_key != ERROR_SUCCESS){
            return -1;
        }

        int ln = strlen(path)+1;
        wchar_t * nPath = new wchar_t[ln]();
        mbstowcs(nPath,path,ln);

        reg_key = RegSetValueEx(hkey,TEXT("robotdriver"),0,REG_SZ,(LPBYTE)nPath,ln*sizeof(nPath));
        if (reg_key != ERROR_SUCCESS){
            RegCloseKey(hkey);
            return -1;
        }
        RegCloseKey(hkey);
}

create_key("FooBar");
4

0 回答 0