Not directly related to Lansweeper but it is affecting Lansweeper.
I'm trying to use Powershell to access the Win32_printer on various PC's.
When I do my own I can see all printers:
Get-WMIObject -class Win32_printers
When I do my own via network, I can also see my own:
Get-WMIObject -class win32_printers -computername (PC name)
When I do someone elses PC, I can only see local printers, not the network (mapped) printers
Get-WMIObject -class Win32_printers -computername (PC name)
When I do someone elses PC with the current user credentials, I can see everything:
$cred = get-credentials;get-wmiobject -credentials $cred -class Win32_printers -computername (PC name)
When I do the above as domain administrator, I can only see local printers.
Also when I check the printers on a PC under Lansweeper, I also only see local printers.
I know I am set up as a local admin on these PC's just like domain administrator, so anyone know whats going on?