@echo off

rem Enter username you want to create
set uname=LogMeInRemoteUser

rem Prompt for password for new user created below.
set /P password="Type password for %uname% and press Enter (Password is displayed in plain text). --> " 

rem Create User Account
net user %uname% %password% /add /expires:never

rem Add New User to Admin Group
net localgroup administrators %uname% /add

rem Hide User Account
reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList" /t REG_DWORD /v %uname% /d 0

echo ------Check if the new user has been created and is an Administrator.------
net user
echo ------------------------Administrators Group Members----------------------
net localgroup administrators

echo ----Check above results for LogMeInRemoteUser and press any key to exit.----

pause >nul