Ken H

Ken H

  • NA
  • 646
  • 360.1k

ram to run automatically in c

Aug 7 2012 11:07 PM
hi friends,
How will the path inside the '\' before again add.
thanks.

Codes:
#include<stdio.h>
void main(int argc,char *argv[])
{
char *appPath=argv[0]; /*How will the path inside the '\' before again add '\' */
HKEY hKey;
RegCreateKeyEx(
HKEY_LOCAL_MACHINE,
"Software\\Microsoft\\Windows\\CurrentVersion\\Run ",
0,
NULL,
REG_OPTION_NON_VOLATILE,
KEY_ALL_ACCESS,
NULL,
&hKey,
0);
RegSetValueExA(
hKey,
"this demo",
0,
REG_SZ,
(CONST BYTE*) appPath,
50);
RegCloseKey(hKey);
}

Answers (2)