Pseudo Command Prompt
Locked out of using the Command Prompt on Windows?
no probs, try this little trick to create a pseudo dos box ..
Save the following to a text file named something.bat
@echo off
echo.
:loop
set /P aa=”%cd%> ”
%aa%
echo.
goto loop
Run something.bat file for a psuedo command prompt. Note that this isn’t a real command prompt but you can do most of the things you would be able to do in a regular Command Prompt.
Posted on February 2, 2017 at 22:36 by simon · Permalink
In: Security · Tagged with: bypass, security
In: Security · Tagged with: bypass, security
on 16 August 2017 at 22:49
· Permalink
nice little hack, thanks for this :^)