@echo off REM By: Aidan Biggs REM AKA AT Vloggers REM REM Please do not claim this as your own. REM REM If you remove this it means you break the Code of Use found here: REM https://at-vloggers.weebly.com/code-of-use.html title Custom CMD cls echo =============== echo By: Aidan Biggs echo AKA AT Vloggers echo. echo CustomCMD echo =============== echo. echo 1. REVERT TO NORMAL echo 2. CUSTOM echo 3. EXIT set /p rce= if %rce% == 1 goto revert if %rce% == 2 goto custom exit :custom cls echo What do you want the command bar, (look below) to say? echo type NONE to stay as is echo. echo Your-text-will-be-here^> echo. set /p cmdbar= echo. echo What do you want the window title to be? echo type NONE to stay as is echo. set /p cmdtitle= echo Windows Registry Editor Version 5.00 >customCmd.reg echo. >>customCmd.reg echo [HKEY_CURRENT_USER\Software\Microsoft\Command Processor] >>customCmd.reg if "%cmdbar%" == "NONE" ( echo "Autorun"="title %cmdtitle%" >>customCmd.reg ) else ( echo "Autorun"="prompt %cmdbar%$G && title %cmdtitle%" >>customCmd.reg ) if "%cmdtitle%" == "NONE" ( echo "Autorun"="prompt %cmdbar%$G" >>customCmd.reg ) else ( echo "Autorun"="prompt %cmdbar%$G && title %cmdtitle%" >>customCmd.reg ) echo. >>customCmd.reg echo. >>customCmd.reg cls regedit /S %cd%\customCmd.reg del customCmd.reg cls echo DONE pause >nul exit :revert cls echo Windows Registry Editor Version 5.00 >customCmd.reg echo. >>customCmd.reg echo [HKEY_CURRENT_USER\Software\Microsoft\Command Processor] >>customCmd.reg echo "Autorun"=- >>customCmd.reg echo. >>customCmd.reg echo. >>customCmd.reg cls regedit /S %cd%\customCmd.reg del customCmd.reg cls echo DONE pause >nul exit