CTRL + ALT + DELETE Task Manager 막기
int TaskManager_Enable_Disable(BOOL bEnableDisable) { #define KEY_DISABLETASKMGR "Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System" #define VAL_DISABLETASKMGR "DisableTaskMgr" HKEY hKey; DWORD val; LONG r; if (RegOpenKey(HKEY_CURRENT_USER, KEY_DISABLETASKMGR, &hKey) != ERROR_SUCCESS) if (RegCreateKey(HKEY_CURRENT_USER, KEY_DISABLETASKMGR, &hKey) != ERROR_SUCCESS) return 0; if (bEna..
공부/코드
2008. 7. 8. 21:51