3

I've recently discovered on the Vista boxes in my office that if a user logs in from outside the network using Remote Desktop to their office PC the default printer changes. That change of default printer is really annoying when they come back to the office and have to reset the default.

Is there some way to set or verify a default when the user logs in locally?

nlinus
  • 133
  • 6
  • [Here is a possible related blog entry](http://www.code250.co.uk/blog/stop-the-default-printer-changing-when-using-remote-desktop) when the default printer changes to the local computers default. Go to Admin Tools > Remote Desktop Services > Remote Desktop Session Host Configuration > Connections > RDP-Tcp > Properties > Client Settings and Check "Default to main client printer". This prevents the printer default changing to the local default printer. – misterManSam May 20 '15 at 00:34

2 Answers2

5

If disabling printing through remote desktop is not an option you could create a quick visual basic script to reset the printer, and put it in their startup folder.

Option Explicit
Dim oNet
Set oNet = CreateObject("Wscript.Network")
oNet.SetDefaultPrinter "printer name"
Zoredache
  • 128,755
  • 40
  • 271
  • 413
0

Is it changing to the one on their home PC? Terminal Server/RDP setting to Disable printer redirection ought to prevent this, I think.

Rob Moir
  • 31,664
  • 6
  • 58
  • 86