Mobile Geräte verschieben
Mobile Geräte verschieben
Verschiebt das angegebene mobile Gerät in den angegebenen Ziel-Container.
Beispiele:
Hinweis: Voraussetzung für die Beispiele ist ein verbundenes PowerShell-Laufwerk. |
Verschieben des mobilen Geräts "Android_HTC_01" im Kontext "emdb:\rootDSE\Managed Mobile Devices\HTC" nach "emdb:\rootDSE\Managed Mobile Devices\Chicago" mit Hilfe der MoveTo()-Methode:
$MyMobileDevice = Get-EmdbMobileDevice "emdb:\rootDSE\Managed Mobile Devices\Android_HTC_01" $MyDestination = Get-EmdbOrganizationalUnit "emdb:\rootDSE\Managed Mobile Devices\Chicago" $MyMobileDevice.MoveTo($MyDestination) |
Verschieben des mobilen Geräts "IOS_IPHONE_05" im Kontext "emdb:\rootDSE\Managed Mobile Devices\Chicago" nach "emdb:\rootDSE\Managed Mobile Devices\Apple\" mit Hilfe des Move-Item Cmdlets:
Move-Item -Path "emdb:\rootDSE\Managed Mobile Devices\Chicago\IOS_IPHONE_05" -Destination "emdb:\rootDSE\Managed Mobile Devices\Apple\" |
Hinweis: Die hier beschriebenen Funktionen sind erst ab FrontRange DSM 7.1 oder höher verfügbar. |