종료

Process.Start("shutdown.exe", "-s"); // 기본적으로 30초 후 종료

Process.Start("shutdown.exe", "-s -t xx") // xx 초 후 종료

재부팅

Process.Start("shutdown.exe","-r"); // 종료과 유사하며 커멘드만 "-r"을 사용

Process.Start("shutdown.exe","-r -t xx");

로그오프

Process.Start("shutdown.exe","-l"); // 위 코드와 유사하며 커멘드만 "-l"(숫자 1이 아닌 소문자'l')을 사용


출저 : http://www.isfull.com

'Programming language > C#' 카테고리의 다른 글

c# 실행중인 프로그램 조회, 강제종료  (0) 2016.03.25