본문 바로가기

원도우

윈도우 계정 관리 명령어 정리

728x90

윈도우 계정 관리 명령어 정리

1. 신규 계정 생성

  • testac01 계정을 생성(패스워드 없는 상태로 생성)
C:\> net user testac01 /add
  • testac02 계정을 생성 시 패스워드 지정
C:\> net user testac02 testpasswd1! /add
  • 계정 리스트 및 계정 상세 정보 출력
C:\> net use
C:\> net user testac01

2. 계정 패스워드 변경

  • 기존 계정의 패스워드 변경
C:\> net user testac01 passwd1!

3. 계정 그룹에 등록/삭제

  • testac02 계정에 Administors 그룹에 추가
C:\> net localgroup Administrators testac02 /add
  • testac02 계정에 Administors 그룹에 제외
C:\> net localgroup Administrators testac02 /delete

 

참고URL

- http://snoopybox.co.kr/1546

 

728x90