pstool을 통한 다수의 Window 전원 및 로긴 제어

많은 윈도우 서버 혹은 데스크탑을 종료하거나 재부팅 혹은 로그 오프를 해야할 일이 가끔 생긴다

이때 AD의 Group Policy 를 이용하더라도 뽀족한 방법이 없다.

이럴때 pstool을 사용하면 쉽게 제어 할수 있다.

필자는 AD 환경에서 다수의 VM을 재부팅 하기 위해 사용했고 다음과 같은 방법으로 적용했다.

1.pstools는 일단 명령어를 사용할수 있도록 exe 파일들을 다운받아 적당한 경로에 넣어둔다.

다운로드 클릭

2. 다음과 같은 명령어 목록을 참고 하여 명령어를 작성한다.

Usage: psshutdown [[\\computer[,computer[,..] | @file [-u user [-p psswd]]] -s|-r|-h|-d|-k|-a|-l|-o [-f] [-c] [-t nn|h:m] [-n s] [-v nn] [-e [u|p]:xx:yy] [-m “message”]

Displays the supported options.
computer Perform the command on the remote computer or computers specified. If you omit the computer name the command runs on the local system, and if you specify a wildcard (\\*), the command runs on all computers in the current domain.
@file Run the command on each computer listed in the text file specified.
-u Specifies optional user name for login to remote computer.
-p Specifies optional password for user name. If you omit this you will be prompted to enter a hidden password.
-a Aborts a shutdown (only possible while a countdown is in progress).
-c Allows the shutdown to be aborted by the interactive user.
-d Suspend the computer.
-e Shutdown reason code.
Specify ‘u’ for user reason codes and ‘p’ for planned shutdown reason codes.
xx is the major reason code (must be less than 256).
yy is the minor reason code (must be less than 65536).
-f Forces all running applications to exit during the shutdown instead of giving them a chance to gracefully save their data.
-h Hibernate the computer.
-k Poweroff the computer (reboot if poweroff is not supported).
-l Lock the computer.
-m This option lets you specify a message to display to logged-on users when a shutdown countdown commences.
-n Specifies timeout in seconds connecting to remote computers.
-o Logoff the console user.
-r Reboot after shutdown.
-s Shutdown without power off.
-t Specifies the countdown in seconds until the shutdown (default: 20 seconds) or the time of shutdown (in 24 hour notation).
-v

Display message for the specified number of seconds before the shutdown. If you omit this parameter the shutdown notification dialog displays and specifying a value of 0 results in no dialog.

3. 나는 다수의 PC를 특정시간에 재부팅하기위한 명령을 내리고 싶어서 다음과 같이 작성했다.
 psshutdown.exe -f -r -t 20:00 @tartget.txt
4. 명령을 해석해 보면 간단하다.
target.txt의 host들을 오후 8시 정각에 강제로 재부팅 하라는 명령이다.
5. target.txt는 호스트 목록을 한줄씩 넣어준다.