vote up 1 vote down star

I am looking for a way to see what printers a specific user has mapped into his or her TS session.

How can I achieve this with WMI (via PowerShell) or VB-Script? Is there a built-in way I'm not aware of?

EDIT: In our construct mapping of local printers by the RDP-Client is disabled. Users get their printers created during login via VBS-Script and deleted during logoff.

So there's no printers installed directly on our TS server and querying the Win32_Printers WMI class returns nothing. The printers are installed on a dedicated print server. Querying the printers on that server returns ALL printers and not the one mapped for a single user.

flag

50% accept rate

4 Answers

vote up -1 vote down

As far as I understand You can read some field in Registry.

PS: I prefer to use Linux for terminal service ;)

link|flag
This doesn't work, as on Remote Desktop, the registry HKCU\Software\Microsoft\Windows NT\CurrentVersion\Devices can contain printers which are no longer active. – seanyboy Sep 15 at 8:41
vote up 1 vote down

I can't check in a TS session right now, but this does it normally in powershell:

Get-WMIObject Win32_Printer

link|flag
This works for TS sessions as well. I get back drivers with names like "<printer> on <server> (from <clientmachine>) in session <sessionId>". They also have a port name of "TSxxx". There may be an object for the relationship to a session, but I couldn't find anything. – JasonMArcher Mar 24 at 21:09
This doesn't work in our construct since the printers aren't installed on the Terminal Server. I updated the question. – VVS Mar 25 at 9:10
vote up 0 vote down

From here: http://www.microsoft.com/technet/scriptcenter/guide/sas%5Fprn%5Ftart.mspx?mfr=true

strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
 & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colInstalledPrinters = objWMIService.ExecQuery _
 ("SELECT * FROM Win32_Printer")
For Each objPrinter in colInstalledPrinters
 Wscript.Echo "Name: " & objPrinter.Name
 Wscript.Echo "Location: " & objPrinter.Location
Next
link|flag
vote up 0 vote down

May be You need CUPS based tecnology? It's simple task for cups on any unix but I'm not sure about Windows.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.