명령어 모음
# 컴퓨터 이름 변경 명령어wmic computersystem where name="%computername%"call rename name="변경될 이름" # IP 설정netsh interface ip set address "로컬 영역 연결" static 100.100.100.110 255.255.255.0 192.168.12.254 IP 주소 서브넷마스크 Gateway 주소# IP 자동할당netsh interface ip set address "로컬 영역 연결" dhcp # 사용자 계정 보기net user# bbb라는 사용자 계정 생성net user bbb /add # ccc 라는 계정의 비밀번호 P@ssw0rd 생성 net user ccc P@ssw0rd /add# ccc라는 계정 삭제net use..
2015.09.24