我在这之前写过从“破解极域电子教室”的经验想到的和如何在限制权限的电脑里简单提权? 这两篇文章,里边都提到了电脑对于cmd的禁用的问题。
所以我就尝试用bat批处理的方式执行命令,但有时候只是着急运行一些cmd命令,这样在对于cmd有限制的电脑实在让人恼火,于是,我找到了一个方法,用bat批处理来模拟一个cmd窗口执行命令。:)
里边用到的都是批处理的常用命令,大家可以把命令逐条复制粘贴到纯文本文档里然后更改后缀名为.bat,然后双击运行即可。
能执行的前提是你的电脑没有禁止批处理……呃,当然,一般来说这个是不会被禁止的。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
@echo off title fu_k Cmd! ---by Router. color 0e cls choice /m "Try to unlock regedit.exe?" if errorlevel 2 goto start if errorlevel 1 goto try :try reg add “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System” /v DisableRegistryTools /t reg_dword /d 00000000 start %windir%\regedit.exe cls :start echo Please input the fu_king cmd line and press return key~:) set /p command= echo The fu_king cmd line well done : call %command% goto start |
本文由 落格博客 原创撰写:落格博客 » 关于电脑禁止运行cmd的解决办法
转载请保留出处和原文链接:https://www.logcg.com/archives/206.html