smartGit系列之长期使用批处理脚本

2022-05-07 16:41:56 浏览数 (1)

看到网上很多实现smartgit简单破解的方法,其实就是删除smartgit配置文件,让smartgit还可以试用一个月,依此循环达到一直使用,不过,每个月都要重复一遍删除配置文件,所以我就改写了一下bat批处理脚本 这个settingsPath=%smartGitPath%18.1settings.xml,需要根据自己安装版本修改

代码语言:javascript复制
@echo off & color 0A
::查找smartGit文件夹
set smartGitPath=%APPDATA%syntevoSmartGit
set settingsPath=%smartGitPath%18.1settings.xml
::删除smartGit配置文件
if exist %settingsPath% (del %settingsPath%
echo delete smartgit settings.xml success) else (echo can not find smargit settings)
echo 4 second exit...
ping -n 4 127.1>nul
exit

0 人点赞