replaced return of vcenter vm id's

replaced some return of vcenter vm id's that gave back some hardly usefull information to the user. Now it gives a successfully add... message
This commit is contained in:
Wouter Kursten
2018-02-26 22:01:33 +01:00
committed by GitHub
parent f7da4a963f
commit cda9bd36e1

View File

@@ -309,7 +309,7 @@ The Add-HVDesktop adds virtual machines to already exiting pools by using view A
if (!$confirmFlag -OR $pscmdlet.ShouldProcess($machines)) {
$desktop_service_helper.Desktop_AddMachinesToManualDesktop($services,$id,$machineList)
}
return $machineList
write-host "Successfully added desktop(s) to pool"
}
default {
Write-Error "Only Automated/Manual pool types support this add operation"
@@ -448,7 +448,7 @@ function Add-HVRDSServer {
if (!$confirmFlag -OR $pscmdlet.ShouldProcess($rdsServers)) {
$farm_service_helper.Farm_AddRDSServers($services, $id, $serverList)
}
return $serverList
write-host "Successfully added RDS Server(s) to Farm"
} catch {
Write-Error "Failed to Add RDS Server to Farm with error: $_"
break