windows:scripting:cmd_shell

Action disabled: index

Script to modify CMD prompt

to “username@computername architecture path” and a $ if run as admin, and > if not run as admin

|Cmd
@echo off
set P1=%USERNAME%@%COMPUTERNAME%
 
if "%PROCESSOR_ARCHITECTURE%" == "AMD64" (
    set P2= x64 $P
) else (
    set P2= x86 $P
)
 
net session >nul 2>&1
if %errorLevel% == 0 (
  set P3=$$
) else (
  set P3=$G
)
 
set P4= 
 
prompt %P1%%P2%%P3%%P4%
Enter your comment:
203 -9 = 
 
  • windows/scripting/cmd_shell.txt
  • Last modified: 2019/10/31 09:06
  • by 127.0.0.1