Nick ändern
Dieses Script ändert den Windows Usernamen. Username wird
als Parameter übergeben.
|
Script: |
@Echo Off
If %1'==' Goto Get
If Not %1'==/?' Goto Set
Echo Ändert den Usernamen.
Echo.
Echo [Call] Username
Goto End
:Get
Set | Find "winbootdir=" > NUL
If ErrorLevel 1 For %%C In (Echo Goto:End) Do %%C Win9x bat file
Set USERNAME=
Start /Wait Regedit /E %TEMP%.\Tmp.bxt HKEY_LOCAL_MACHINE\Network\Logon
Find /I "username" < %TEMP%.\Tmp.bxt | Find /I /V
"NetWareUsername" > %TEMP%.\Tmp.bat
%TEMP%.\Tmp.bat
:Set
For %%V In (%1) Do Set USERNAME=%%V
Del %TEMP%.\Tmp.b?t
:End
|
|