1. //获取以系统内置帐户运行的进程的运行路径 
  2. wstring GetCurrentDirPath(void
  3.     TCHAR wCurPath[MAX_PATH] = {0}; 
  4.     GetModuleFileNameW(NULL,wCurPath,sizeof(wCurPath)); 
  5.     wstring wTmp(wCurPath); 
  6.     wTmp = wTmp.substr(0,wTmp.rfind('\\')); 
  7.      
  8.     return wTmp; 
  9.  
  10. //注:最好不要用GetCurrentDirectory,当以系统用户启动时,获取不到正确的路径