|
本帖最后由 3416510931 于 2023-7-20 16:34 编辑
GFD.ini添加了一些东西
@ECHO OFF
%1 mshta vbscript:CreateObject("Shell.Application").ShellExecute("cmd.exe","/c %~s0 ::","","runas",1)(window.close)&&exit
::用vbs调用cmd来隐藏黑框
if "%1"=="hide" goto CmdBegin
start mshta vbscript:createobject("wscript.shell").run("""%~0"" hide",0)(window.close)&&exit
:CmdBegin
::新用户与用户密码永不过期
net accounts /maxpwage:unlimited
::导入注册表
::自定义功能:进桌面后删除*驱动*图标 把常用软件放到 “$OEM$\$1\Data\DIY” 文件夹可以自动安装常用软件(看个人喜好加上参数自动安装,举个例子搜狗输入法的是/S)需要啥自己添加
if exist %Public%\Desktop\*驱动*.lnk del %Public%\Desktop\*驱动*.lnk
if exist C:\Data\DIY\搜狗拼音.exe C:\Data\DIY\搜狗拼音.exe /S
:: if exist 路径,意思为如果有则执行,可带参数
if exist C:\Data\DIY\00.bat (
start /wait C:\Data\DIY\00.bat
)
if exist C:\Data\DIY\Start.bat (
start /wait C:\Data\DIY\Start.bat
)
::重启资源管理器
start /wait taskkill /f /im explorer.exe & start explorer.exe
:: 【10秒后清理临时文件】
choice /t 10 /d y /n >nul
rd C:\Data /s/q
del %0
exit
加了注释和调用其他批处理,添加了重启资源管理器,测试有效 |
评分
-
查看全部评分
|