By default RDS 2012 names the REWeb page to “Work Resources”. You can change it easily using Set-RDWorkspace cmdlet in PowerShell.
Before you change the name, have you added all the RDS 2012 servers into All Servers section in Server Manager. This makes things very easier. (hope you are using Windows 8 or Windows Server 2012). If not just logon to RDS Connection Broker server.
1. Open PowerShell as Administrator. (All RDS cmdlets runs on elevated PowerShell)
2. Type Import-Module RemoteDesktop
3. Type Set-RDWorkspace –Name “My Awesome Company Apps” –ConnectionBroker RDS-CB.company.com (Of course, you will have to change the name to your own text and provide your connection broker’s FQDN)
4. That’s all. Try opening RDWeb page.
For more information, here is the help on Set-RDWorkspace cmdlet information.
PS C:\> Get-Help Set-RDWorkspace -Full
NAME
Set-RDWorkspace
SYNTAX
Set-RDWorkspace [-Name] <string> [-ConnectionBroker <string>] [<CommonParameters>]
PARAMETERS
-ConnectionBroker <string>
Required? false
Position? Named
Accept pipeline input? false
Parameter set name (All)
Aliases None
Dynamic? false
-Name <string>
Required? true
Position? 0
Accept pipeline input? false
Parameter set name (All)
Aliases None
Dynamic? false
<CommonParameters>
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
If you are running multiple Connection Brokers in High Availability mode, you must run this against the active broker. You can use this command:
Set-RDWorkspace -Name “XYZ Applications” -ConnectionBroker (Get-RDConnectionBrokerHighAvailability).ActiveManagementServer
See http://social.technet.microsoft.com/wiki/contents/articles/13451.customizing-the-rds-title-work-resources-using-powershell-on-windows-server-2012.aspx
Ha..ha. Damn it. I am correcting the typo. Thanks Bastiaan. 🙂
…thanks for the intentional spelling mistake on ‘Set-RDWorksapce’ 🙂
if I don’t want to enter any name and want to keep it blank .. how to do it