返回列表 发帖
  1. Get-ChildItem -Path @('HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall',
  2.   'HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall',
  3.   'HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall',
  4.   'HKCU:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall') -ErrorAction SilentlyContinue | `
  5.   Get-ItemProperty -Name DisplayName, DisplayVersion, InstallLocation, UninstallString -ErrorAction SilentlyContinue |`
  6.   Where-Object { $_.DisplayName -eq "Microsoft Edge" } | Format-List -Property DisplayName, DisplayVersion, InstallLocation, UninstallString
复制代码
微信:flashercs
QQ:49908356

TOP

返回列表