Users with local printer

Risk Manager 1 Reputation point
2021-10-01T16:48:26.273+00:00

Is it possible to determine which users on a network have the ability to print locally?

Active Directory
Active Directory
A set of directory-based technologies included in Windows Server.
5,851 questions
Windows 10 Network
Windows 10 Network
Windows 10: A Microsoft operating system that runs on personal computers and tablets.Network: A group of devices that communicate either wirelessly or via a physical connection.
2,272 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Limitless Technology 39,351 Reputation points
    2021-10-04T10:01:36.3+00:00

    Hello,

    You can determine which computer is using the local printers. Look at the Syntax here and adjust the scrip according to your needs.

    https://learn.microsoft.com/en-us/powershell/module/printmanagement/get-printer?view=windowsserver2019-ps

    You can try to use also

    Get-WMIObject Win32_Printer -ComputerName $Comp

    Or:

    New-PSSession $Comp | Enter-PSSession
    Get-ChildItem Registry::\HKEY_Users\$UserSID\Printers


    If the reply is helpful, please Upvote and Accept as answer--

    0 comments No comments