主要是提权问题.然后一个ExitwindowEx搞定.实现“注销/重启/关机”功能代码:HANDLE hToken;TOKEN_PRIVILEGES tkp;
if (FForce) // Forces processes to terminateFFlag |= EWX_FORCE;
// Get version info to determine operationOSVERSIONINFO osvi;osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);if (GetVersionEx(&osvi) == 0)return false;
// Determine the platformif (osvi.dwPlatformId == VER_PLATFORM_WIN32_NT){// Windows NT 3.51, Windows NT 4.0, Windows 2000,// Windows XP, or Windows .NET Serverif (!OpenProcessToken(GetCurrentProcess(),TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken))return false;
LookupPrivilegeValue(NULL, SE_SHUTDOWN_NAME, &tkp.Privileges[0].Luid);
tkp.PrivilegeCount = 1; // one privilege to settkp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
AdjustTokenPrivileges(hToken, FALSE, &tkp, 0, (PTOKEN_PRIVILEGES)NULL, 0);}
ExitWindowsEx(FFlag, 0);
修改时间用的几个函数
SYSTEMTIME stime; GetSystemTime(&stime);//得到系统当前时间相对应格林威治时间 TIME_ZONE_INFORMATION zinfo; GetTimeZoneInformation(&zinfo);//得到时区信息 SystemTimeToTzSpecificLocalTime(&zinfo,&stime,&stime);//将格林威 治时间转换为对应的当前时区的时间 SetLocalTime(&stime);//设置时间 GetSystemTime SetSystemTime 都是使用的格林威治时间 GetLocalTime SetLocalTime 才是本时区时间 其对应关系还是要搞清楚最好
阅读(1095) | 评论(0) | 转发(1) |