반응형

시스템 확인

// 컴퓨터이름, 날짜, 현재시간 확인
$ echo %computername% %date% %time%

// Windows 버전 확인
$ ver

// 환경변수 확인
$ set

// 로그온 제한사항 및 도메인 정보의 현재 설정 상태
$ net ACCOUNTS

// 지정된 도메인 확인
$ net ACCOUNTS /domain

// 현재 컴퓨터에 적용된 공유자원 출력
$ net share

 

시스템 제어

// 3600초 후, 종료 (f: 사용자에게 묻지않고 강제,
// s: shutdown, -t: 시간 제한)
shutdown -f -s -t 3600

// 셧다운 명령어 취소
shutdown -a

// 3600초 후, 재부팅  (r: reboot)
shutdown -f -r -t 3600

 

인용

https://moaimoai.tistory.com/215?category=571283

https://yong40.tistory.com/112

반응형