Jump to content
Updated Privacy Statement
  • 0

Delete Host connection


Dennis Haschke

Question

4 answers to this question

Recommended Posts

  • 0

You can do this with powershell - something like this:


 

asnp citrix*
$vhp=Get-PvsVirtualHostingPool -sitename <site name> -name <connection name>
get-pvsdevice| Where-Object {$_.virtualhostingpoolid -eq $vhp.virtualhostingpoolid}|ft -Property devicename

 

Output from my system:

PS C:\Users\Administrator.MCU> $vhp=Get-PvsVirtualHostingPool -sitename site -name simgr-cerium2-resources
PS C:\Users\Administrator.MCU> get-pvsdevice| Where-Object {$_.virtualhostingpoolid -eq $vhp.virtualhostingpoolid}|ft -Property devicename

DeviceName
----------
simgr-851
simgr-852
simgr-853
simgr-854
simgr-855
simgr-856
simgr-857
simgr-858
simgr-859

 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...