Microsoft Reduce Customer Effort Center

Our team drives product feedback based on solid data, it drives proactive issue prevention and ultimately, drives improvements around products based on customer feedback.

Browse by Tags

Related Posts
  • Blog Post: Server Manager can't handle expectedly during install WDS role

    In windows 2008 R2 SP1 RC, during install the WDS role, if you uncheck “Transport server” role service ,and then go ahead follow system’s request to remove dependent role services, the server manager MMC will crashed.(This works fine in windows 2008 R2) We can easily reproduce this...
  • Blog Post: How to determine if current user is a domain or local user?

    Assuming you need it in script, PowerShell: (gwmiWin32_LogonSession).GetRelated("Win32_UserAccount") If you expect more than one logon session, then (gwmi Win32_Process -filter "Handle = $Pid").GetRelated("Win32_LogonSession") |% {$_.GetRelated("Win32_UserAccount")} will give...