标题: [系统相关] 【已解决】求助删除谷歌浏览器的批处理 [打印本页]
作者: 986981535 时间: 2022-10-20 15:29 标题: 【已解决】求助删除谷歌浏览器的批处理
本帖最后由 986981535 于 2022-10-21 16:55 编辑
背景:公司需要批量卸载谷歌浏览器,希望做个批处理实现用户自行卸载
现状:发现谷歌浏览器安装目录没有卸载程序
尝试:
cd %C:\Program Files (x86)\Google\Chrome\Application%
start /wait chrome.exe -uninstall
发现可以跳出卸载框,但是点击确定无效。
寻求帮助:批处理是否可以直接调用 控制面板- 程序和功能- 选取对应软件卸载。
作者: 986981535 时间: 2022-10-20 16:30
大佬们,有没有良策。先谢谢了
作者: 986981535 时间: 2022-10-21 10:42
前辈们,我找到解决办法:
cd "C:\Program Files (x86)\Google\Chrome\Application\105.0.5195.102\Installer"
start /wait setup.exe -uninstall -system-level
但是目前红色字体部分可能会变化,有没有什么办法可以自动找数字文件夹下面的Installer文件夹?
作者: qixiaobin0715 时间: 2022-10-21 11:01
- cd "C:\Program Files (x86)\Google\Chrome\Application"
- for /f "delims=" %%a in ('dir /s /b /ad Installer') do cd "%%a"
- start /wait setup.exe -uninstall -system-level
复制代码
作者: 986981535 时间: 2022-10-21 16:19
回复 4# qixiaobin0715
我的报错--此时不应有 %%a。
这是啥问题,谢谢。
作者: qixiaobin0715 时间: 2022-10-21 16:22
你是直接在cmd中运行的吧,如果是的话,将第2行的2个%%a修改为%a试试。
作者: 986981535 时间: 2022-10-21 16:28
回复 6# qixiaobin0715
是的,感谢。可以了。
作者: Batcher 时间: 2022-10-21 17:03
回复 7# 986981535
是否需要考虑x86和x64所在的文件夹不同
C:\Program Files
C:\Program Files (x86)
比如我的电脑就是安装的x64版本
作者: Batcher 时间: 2022-10-21 17:13
- @echo off
- for /f "tokens=2*" %%i in ('reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\chrome.exe" /v Path') do (
- set "MyPath=%%~fj"
- )
- cd /d "%MyPath%"
- for /f "delims=" %%i in ('dir /b /s /ad Installer') do (
- cd /d "%%i"
- )
- start /wait setup.exe -uninstall -system-level
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |