我遇到的问题是我的应用程序在注册表中输入了不正确的数据(而不是文件路径,它输入了诸如“㩃啜敳获啜敳屲灁”之类的字符),我不知道是什么问题就是,相关源代码如下(包括等已被删除)。
stringstream ss;
char* file_path = getenv("APPDATA");
strcat(file_path, "\\Application.exe");
ss << file_path;
ss >> file_path_string;
CA2W unicodeFile_path(file_path);
cout << "Downloading File";
HRESULT hr = URLDownloadToFile ( NULL, _T("http://example.com/application.exe"), unicodeFile_path, 0, NULL );
cout << "Done" << endl;
cout << "Adding to registry" << endl;
HKEY hKey;
CA2W registryLocation("Software\\Microsoft\\Windows\\CurrentVersion\\Run");
CA2W registryKey("Application");
// Check registry if exists, otherwise create.
RegCreateKeyEx(HKEY_CURRENT_USER,
registryLocation,
0,
NULL,
REG_OPTION_NON_VOLATILE,
KEY_WRITE,
NULL,
&hk,
&dwDisp);
// Store reg value
RegSetValueEx(hk,
registryKey,
NULL,
REG_SZ,
(const BYTE*)file_path_string.c_str(),
file_path_string.size() + 1);
任何帮助将不胜感激。