【发布时间】:2020-08-17 20:20:19
【问题描述】:
最近我混淆了自己的密码保护代码并使用了
@echo off
if "%~1"=="" exit /b
if /i "%~x1" neq ".bat" if /i "%~x1" neq ".cmd" exit /b
for /f %%i in ("certutil.exe") do if not exist "%%~$path:i" (
echo CertUtil.exe not found.
pause
exit /b
)
>"temp.~b64" echo(//4mY2xzDQo=
certutil.exe -f -decode "temp.~b64" "%~n1o%~x1"
del "temp.~b64"
copy "%~n1o%~x1" /b + "%~1" /b
我不知道我应该如何反转它以便我可以更改我的密码。
【问题讨论】:
-
我想补充一点,它使我的代码变成了普通话
-
你从哪里得到这个脚本?不要忘记添加它的参考或链接!
标签: batch-file