Statische Software-Kategorien verschieben
Statische Software-Kategorien verschieben
Verschiebt das angegebene statische Software-Kategorie-Objekt in den angegebenen Ziel-Container.
Beispiele:
Hinweis: Voraussetzung für die Beispiele ist ein verbundenes PowerShell-Laufwerk. |
Verschieben der statischen Software-Kategorie "Office 14" aus dem Container "Global Software Library\Application Library\Microsoft" nach "Global Software Library\Application Library" mit Hilfe der MoveTo()-Methode:
$MySwCategory = Get-EmdbSoftwareCategory "emdb:\rootDSE\Global Software Library\Application Library\Microsoft\Office 14" $MyDestinationFolder = Get-EmdbSoftwareFolder "emdb:\rootDSE\Global Software Library\Application Library" $MySwCategory.MoveTo($MyDestinationFolder) |
Verschieben der statischen Software-Kategorie "System-Tools" aus dem Container "Global Software Library" nach "Global Software Library\Application Library" mit Hilfe des Move-Item Cmdlets:
Move-Item -Path "emdb:\rootDSE\Global Software Library\System-Tools" -Destination "emdb:\rootDSE\Global Software Library\Application Library" |