powershell PowerShell:Get-SMASWDPackageCacheGuids:返回向本地代理注册的包GUID列表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell PowerShell:Get-SMASWDPackageCacheGuids:返回向本地代理注册的包GUID列表相关的知识,希望对你有一定的参考价值。

function Get-SMASWDPackageCacheGuids {
    [CmdletBinding(SupportsShouldProcess=$True,DefaultParameterSetName="None")]
    PARAM()

    begin {
    }

    process {
        $IAeXClient = New-Object -ComObject Altiris.AeXClient -ErrorAction Stop
        $IAeXSWDAgent = $IAeXClient.ClientPolicyMgr.ClientAgent("Altiris.SWD") 
        $IAeXSWDAgent.Packages | Select -ExpandProperty Id -Unique | % {[guid]$_}
    }

    end {
    }
}

以上是关于powershell PowerShell:Get-SMASWDPackageCacheGuids:返回向本地代理注册的包GUID列表的主要内容,如果未能解决你的问题,请参考以下文章

powershell PowerShell:Get-Handles

powershell PowerShell:Get-MicrosoftUpdates

powershell PowerShell:Get-NetPrefixPolicy

powershell PowerShell:Get-FileHash

powershell PowerShell:Get-ComparableVersion

powershell PowerShell:Get-OSBitness