GPO tool

Group Policy made searchable

A free ADMX browser or comparison tool for IT administrators. Search policies, find registry keys, and see exactly what each setting writes to the Windows Registry. Or compare two GPO backups to see exactly what has changed between them.

Select a product
  • Select a category.

Remove remote desktop wallpaper

This policy setting allows you to specify whether desktop wallpaper is displayed to clients when they are connected to a remote server using RDP.

You can use this setting to enforce the removal of wallpaper during a Remote Desktop Services session.

If you enable this policy setting, wallpaper is not displayed in a Remote Desktop Services session.

If you disable this policy setting, wallpaper is displayed in a Remote Desktop Services session, depending on the client configuration.

If you do not configure this policy setting, Windows Vista displays wallpaper to remote clients connecting through Remote Desktop, depending on the client configuration (see the Experience tab in the Remote Desktop Connection options for more information). Servers running Windows Server 2008 do not display wallpaper by default to Remote Desktop Services sessions.

Registry Information

VendorMicrosoft
ProductTerminalserver Server
CategoryTS SESSIONS
Applies toUser Configuration
Supported onWindows Server2008
Registry Key[HKCU]SOFTWAREPoliciesMicrosoftWindows NTTerminal Services
Value NamefNoRemoteDesktopWallpaper
TypeREG_DWORD
Enabled value1
Disabled value0

Registry File (.reg)

Windows Registry Editor Version 5.00

; Enable the policy
[HKEY_CURRENT_USERSOFTWAREPoliciesMicrosoftWindows NTTerminal Services]
"fNoRemoteDesktopWallpaper"=dword:00000001

; Disable the policy
[HKEY_CURRENT_USERSOFTWAREPoliciesMicrosoftWindows NTTerminal Services]
"fNoRemoteDesktopWallpaper"=dword:00000000

PowerShell

# Enable the policy
Set-ItemProperty -Path "HKCU:SOFTWAREPoliciesMicrosoftWindows NTTerminal Services" -Name "fNoRemoteDesktopWallpaper" -Value 1 -Type DWord

# Disable the policy
Set-ItemProperty -Path "HKCU:SOFTWAREPoliciesMicrosoftWindows NTTerminal Services" -Name "fNoRemoteDesktopWallpaper" -Value 0 -Type DWord