Storefront 3.7 - Need's To Have Friendly Name Show Up Instead Of Delivery Group.

Storefront 3.7 - Need's To Have Friendly Name Show Up Instead Of Delivery Group.

book

Article ID: CTX228125

calendar_today

Updated On:

Description

When he opens the Storefront it will give him the Delivery Group Name but he needs the VM name to show up.


Instructions

Below mentioned format required to add Frinedly names of Static machines to show in Storefront.

Set-BrokerPrivateDesktop -MachineName domainName\MachineName -PublishedName Machinename

We can create manual script in case we have several machines in Delivery group:
 

#***************************
#Load Citrix Snapins


#***************************

Asnp Citrix*

#**************************************
#Search and rename VMs
#**************************************

$Machine = Get-BrokerPrivateDesktop | Where-Object {$_.PublishedName -eq $Null} | ft HostedMachineName | findstr /v ” _$Null HostedMachineName ———– _$Null”
$var1 = $Machine.Trim()
$var2 = $Test.Trim()
Write-Output $var2 > log.txt
(gc log.txt) | ? {$_.trim() -ne “”} | set-content file.txt
$Final = (gc file.txt) | findstr (Place the string to search, depending on the nomenclature used.)
foreach ($XD in $Final){
Set-BrokerPrivateDesktop -MachineName dominio\$XD -PublishedName $XD
}

 

Issue/Introduction

We see in a lot of cases, that the StoreFront shows more than one pc per user, and for the user is difficult to know in what VM need to click. So, to fix this problem, we create a simple script to change the presented name in Storefront, changing the VM group to the VM name.

Additional Information

https://www.goblinsoft.org/how-to-set-xendesktop-friendly-name-in-storefront-7-x/