"윈도우 계정명 변경"의 두 판 사이의 차이

5번째 줄: 5번째 줄:
<source lang='bash'>
<source lang='bash'>
wmic UserAccount where Name="계정명" call Rename Name="새계정명"
wmic UserAccount where Name="계정명" call Rename Name="새계정명"
</source>
==실행예시==
<source lang='dos'>
C:\Users\jmnote>wmic UserAccount where Name="testuser" call Rename Name="newtest
user"
Executing (\\JMNOTE-PC\ROOT\CIMV2:Win32_UserAccount.Domain="jmnote-PC",Name="tes
tuser")->Rename()
Method execution successful.
Out Parameters:
instance of __PARAMETERS
{
        ReturnValue = 0;
};
</source>
</source>



2012년 8월 14일 (화) 18:44 판

윈도우 계정명 변경
윈도우 계정 이름 바꾸기

1 명령어

wmic UserAccount where Name="계정명" call Rename Name="새계정명"

2 실행예시

C:\Users\jmnote>wmic UserAccount where Name="testuser" call Rename Name="newtest
user"
Executing (\\JMNOTE-PC\ROOT\CIMV2:Win32_UserAccount.Domain="jmnote-PC",Name="tes
tuser")->Rename()
Method execution successful.
Out Parameters:
instance of __PARAMETERS
{
        ReturnValue = 0;
};

3 같이 보기

4 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}