标题: 【已解决】50元有偿求助自动脚本安装谷歌浏览器并配置 [打印本页]
作者: 阿布leo 时间: 2019-5-14 21:43 标题: 【已解决】50元有偿求助自动脚本安装谷歌浏览器并配置
本帖最后由 阿布leo 于 2019-5-15 13:08 编辑
如题。
需求如下;
1,装个谷歌浏览器
2,给装好的浏览器快捷方式加个参数
3,把谷歌浏览器放到启动目录下,每次开机自动启动。
4,禁止虚拟键盘Tablet PC。
5,脚本在win7和win10上都能运行
作者: zaqmlp 时间: 2019-5-14 23:26
本帖最后由 zaqmlp 于 2019-5-15 22:22 编辑
以管理员身份运行- @echo off
- rem 指定谷歌浏览器的安装程序
- set "exefile=D:\ChromeInstall.exe"
-
- rem 执行安装
- "%exefile%"
-
- rem 修改桌面快捷方式并添加到启动文件夹
- (echo;Set ws=CreateObject^("WScript.Shell"^)
- echo;Set fso=CreateObject^("Scripting.FileSystemObject"^)
- echo;inkfile="":t=ws.SpecialFolders^("DeskTop"^) ^& "\Google Chrome.lnk"
- echo;If fso.FileExists^(t^) Then inkfile=t
- echo;t=ws.SpecialFolders^("AllUsersDeskTop"^) ^& "\Google Chrome.lnk"
- echo;If fso.FileExists^(t^) Then inkfile=t
- echo;If inkfile="" Then WSH.Quit
- echo;Set a=ws.CreateShortcut^(inkfile^)
- echo;Set b=ws.CreateShortcut^(inkfile^)
- echo;b.TargetPath=a.TargetPath
- echo;b.WorkingDirectory=a.WorkingDirectory
- echo;b.Arguments=WSH.Arguments^(0^)
- echo;If fso.FileExists^(inkfile^) Then fso.DeleteFile inkfile,True
- echo;b.Save
- echo;WSH.echo inkfile ^& "|" ^& ws.SpecialFolders^("Startup"^) ^& "\Google Chrome.lnk"
- echo;WSH.Quit)>"%tmp%\#t.t"
-
- for /f "tokens=1* delims=|" %%a in ('cscript -nologo -e:vbscript "%tmp%\#t.t" "-参数"') do (
- del /a /f /q "%%b"
- copy "%%a" "%%b"
- )
-
- rem 禁用Tablet PC
- reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\TabTip.exe" /v debugger /t reg_sz /d debugfile.exe /f
- reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\DisallowRun" /v 1 /t REG_SZ /d "TabTip.exe" /f
- reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v DisallowRun /t REG_DWORD /d 1 /f
- taskkill /f /im explorer.exe
- start explorer
- pause
复制代码
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |