Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Anyone understand why the simple Powershell script below works fine under Windows XP but not under Windows 7?

Get-WmiObject -Class win32_logonsession | %{ get-wmiobject -Query "Associators of {Win32_logonSession.LogonID=$($_.LogonId)} where AssocClass = Win32_LoggedOnUser Role=Dependent" }

Under Windows 7 it doesn't list any interactive accounts, only sessions for the local system account, network service etc. However under XP it returns information for all accounts.

Have been looking on MSDN and Google however haven't found an answer as yet.

share|improve this question

1 Answer

Seems the problem is that behind the scenes a double hop is occurring and WMI under Windows 7 is trying to find the user account details with an anonymous bind against AD. We only accept authenticated queries so this silently fails.

Going to give WMI a skip and try to pinvoke with LSA functions to get this to work.

share|improve this answer
Hey there, did you ever get this to work? – Christopher O'Neil Apr 3 '12 at 7:02
Hi Chris, the script above never did work and I ended up using C# and LSA to get it done. Hope that helps. – ServerMonkey Apr 6 '12 at 6:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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