Windows Server 2012 R2: Changing “Work Resources” name in RDS Logon page


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.

image

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).

 

 

4 thoughts on “Windows Server 2012 R2: Changing “Work Resources” name in RDS Logon page

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s