Power shell -- Get-installedsoftwares

2022/2/26 7:30:16

本文主要是介绍Power shell -- Get-installedsoftwares,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

function Get-InstalledSoftwares
{
   
    function ConvertTo-ProductEntity
    {
        param([Microsoft.Win32.RegistryKey]$RegKey)
        $product = '' | select Name,Publisher,Version
        $product.Name =  $_.GetValue("DisplayName")
        $product.Publisher = $_.GetValue("Publisher")
        $product.Version =  $_.GetValue("DisplayVersion")

        if( -not [string]::IsNullOrEmpty($product.Name)){
            $product
        }
    }

    $UninstallPaths = @(,
 
    'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall',
  
    'HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall')

    
    if([Environment]::Is64BitOperatingSystem) {
        $UninstallPaths += 'HKLM:SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall'
    }
    $UninstallPaths | foreach {
        Get-ChildItem $_ | foreach {
            ConvertTo-ProductEntity -RegKey $_
        }
    }
}

  

 



这篇关于Power shell -- Get-installedsoftwares的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程