Forum Discussion
tylderlurden
Nov 24, 2025Brass Contributor
Map only local drives and default printer from clients computer when logging into 365 Desktop?
Hello, I have gone into Intune and created a new config profile and have set Windows Components > Remote Desktop Services > Remote Desktop Session Host > Printer Redirection \ Device and resource red...
tylderlurden
Nov 26, 2025Brass Contributor
Found out printer still looking for just local drives (no network drive mappint)
Printer =
# Set RedirectOnlyDefaultClientPrinter to Enabled (1)
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" `
-Name "RedirectOnlyDefaultClientPrinter" -Value 1 -Type DWord
# To disable (set to 0), use:
# Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" `
# -Name "RedirectOnlyDefaultClientPrinter" -Value 0 -Type DWord