shutdown - The entered computer name is not valid or remote shutdown is not supported on the target computer.
오랜만에 shutdown을 했더니,
Windows - Restart-Computer / shutdown 명령어 수행 시 Access is denied(E_ACCESSDENIED)
; https://www.sysnet.pe.kr/2/0/12586
이런 오류 메시지가 발생합니다.
C:\temp> shutdown /r /m \\192.168.100.50
192.168.100.50: The entered computer name is not valid or remote shutdown is not supported on the target computer. Check the name and then try again or contact your system administrator.(53)
검색해 보니까, 방화벽 문제라고 합니다. ^^ 따라서 "Remote Service Management" 서비스를 "Enable Rule" 시키면 되는데요, 제 경우에는 "(NP-In)" 항목만 활성화해도 잘 됐습니다.
이후, 만약 권한 오류가 발생한다면?
C:\temp> shutdown /r /m \\192.168.100.50
192.168.100.50: Access is denied.(5)
이전 글에 따라 해결하시면 됩니다.
참고로, shtudown 명령어를 /r /m 옵션만으로 실행하면 대상 컴퓨터에 다음의 메시지와 함께,
You're about to be signed out
Windows가 1분 이내에 종료됩니다.
"Close" 버튼을 가진 창이 뜨는데요, shutdown을 취소하려는 경우라면 그 창을 닫는 것만으로는 부족합니다. 직접 -a 옵션을 추가해 shutdown 명령어를 로컬 또는 원격에서 수행해야 합니다.
// 해당 컴퓨터의 로컬에서 취소
shutdown -a
// 원격으로 취소
shutdown -a -m \\192.168.100.50
참고로, /i 옵션을 사용해 실행하면 GUI 화면이 제공됩니다.
shutdown 명령 자체가 아주 가끔 실행하는 유형이다 보니 영~~~ 옵션이 외워지지 않았는데 ^^ /i 옵션만큼이라도 확실히 기억해 두면 끝이군요.
[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]