004
22.10.2009, 14:40 Uhr
~TestBenutzer
Gast
|
so... Hab noch ein bisschen gegooglet und etwas rum getestet. Bis jetzt habe ich:
C++: |
#include <windows.h> #include <stdio.h>
int main() { unsigned char temp[99] = {""}; unsigned long size = sizeof(temp); HKEY hKey; RegOpenKey(HKEY_LOCAL_MACHINE, "SOFTWARE\\Activision\\Call of Duty 2", &hKey); RegQueryValueEx(hKey, "InstallPath", NULL, NULL, temp, &size); RegCloseKey(hKey); system("PAUSE"); return 0; }
|
Kommt auch kein Error :clap: Jetzt is die Frage wie krige ich den Pfad mit cout aus? Hab ja gesagt bin noch ein noob :D |