How to run an exe on a school computer? I can't use the command prompt. Is there any way
There are many solutions to your problem, depending on the OS and hardware the school have.
- Try rebooting and pressing F8 repeatedly to enter Safe Mode (Without networking). Then use Win+R and type cmd.exe to start command prompt. This is pretty risky assuming the teacher is behind you at all times but worth trying.
2. Making your own command prompt. Open notepad and type the following code. Then save to a .bat extension file named as you like.
- cls
- title Command Prompt
- :waitc
- set /p c=
- if %c%==t goto :EOF
- if %c%==T goto :EOF
- %c%
- goto :waitc
Start the newly created file and you should have an alternative to command prompt. Enter t or T to quickly terminate the cmd terminal to avoid detection.
3. Follow this tutorial
4. Use Win+R as a alternative to run cmd commands
5. Use Win+R and run the following command
- taskmgr
A task manager should pop up. Use this to check for the school control program and force kill it manually or by this script
- taskkill /f /im programnamehere.exe
Articoli simili
- Is there any way in c to change the value of a global variable through a function without passing it to the function?
- Is there any way to import photos from camera roll to Snapchat memories 'snaps' column?
- Is there a way to transfer a playlist from my iPhone onto iTunes on my computer?
- Is there a way to get the current URL or path from within a Angular2 component? I'm currently using Angular2 rc6.