我想获取系统中安装的edge和chrome浏览器的exe文件的路径, 使用gpt问了十几轮, 都没有搞到稳定的方法, 求路过大佬支招
方法3可以, 但是在自定义安装路径时就不行了, 方法4不行, 而且太慢了
Gpt的方法有如下:
1.不行! | | | $chromePath = Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\Google Chrome" -Name "InstallLocation" -ErrorAction SilentlyContinue | | if ($chromePath) { | | Write-Host "Google Chrome 安装路径: $($chromePath.InstallLocation)\chrome.exe" | | } | | | | | | $edgePath = Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge" -Name "InstallLocation" -ErrorAction SilentlyContinue | | if ($edgePath) { | | Write-Host "Microsoft Edge 安装路径: $($edgePath.InstallLocation)\msedge.exe" | | }COPY |
2.不行! | | | $chrome = Get-Command chrome -ErrorAction SilentlyContinue | | if ($chrome) { | | Write-Host "Google Chrome 的路径: $($chrome.Source)" | | } | | | | | | $edge = Get-Command msedge -ErrorAction SilentlyContinue | | if ($edge) { | | Write-Host "Microsoft Edge 的路径: $($edge.Source)" | | }COPY |
3.可以, 但是有时用户会自定义安装目录, 就不行了 | | | if (Test-Path "C:\Program Files\Google\Chrome\Application\chrome.exe") { | | Write-Host "Google Chrome 路径: C:\Program Files\Google\Chrome\Application\chrome.exe" | | } | | | | | | if (Test-Path "C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe") { | | Write-Host "Microsoft Edge 路径: C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" | | }COPY |
4.不行! | | | $installedApps = Get-WmiObject -Class Win32_Product | Where-Object { $_.Name -match "chrome|firefox|msedge|iexplore" } | | | | foreach ($app in $installedApps) { | | Write-Host "$($app.Name) 安装路径: $($app.InstallLocation)\$($app.Name).exe" | | }COPY |
|