powershell PowerShell:Get-SMASWDFolders:返回包含已下载软件包的软件包正在使用的所有文件夹。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell PowerShell:Get-SMASWDFolders:返回包含已下载软件包的软件包正在使用的所有文件夹。相关的知识,希望对你有一定的参考价值。
function Get-SMASWDFolders {
[CmdletBinding(SupportsShouldProcess=$True,DefaultParameterSetName="None")]
PARAM()
begin {
}
process {
$IAeXClient = New-Object -ComObject Altiris.AeXClient -ErrorAction Stop
$IAeXSWDAgent = $IAeXClient.ClientPolicyMgr.ClientAgent("Altiris.SWD")
$IAeXSWDAgent.Packages | ? {$_.CacheFolder} | Select -ExpandProperty CacheFolder -Unique | % {Split-Path (Split-Path $_)} | Select -Unique
}
end {
}
}
以上是关于powershell PowerShell:Get-SMASWDFolders:返回包含已下载软件包的软件包正在使用的所有文件夹。的主要内容,如果未能解决你的问题,请参考以下文章
powershell PowerShell:Get-Handles
powershell PowerShell:Get-MicrosoftUpdates
powershell PowerShell:Get-NetPrefixPolicy
powershell PowerShell:Get-FileHash
powershell PowerShell:Get-ComparableVersion
powershell PowerShell:Get-OSBitness