Summary: Use Windows PowerShell to get the BitLocker recovery key.
How can I quickly find my BitLocker recovery key?
Jason Walker, Microsoft PFE, says:
From an elevated Windows PowerShell console, use the Get-BitlockerVolume function, select -MountPoint C, and choose the KeyProtector property:
(Get-...
Summary: Microsoft Scripting Guy, Ed Wilson, talks about the decision points for deciding how to use Windows PowerShell to access Active Directory Domain Services.
Hey, Scripting Guy! I am a bit confused. I see various blogs and scripts on the Script Repository, and some always use a third-party snap-in to access Active Directory ...
Summary: Use a Windows PowerShell cmdlet to retrieve logged information about Windows PowerShell.
How can I easily find logged information about Windows PowerShell?
Use the Get-WinEvent cmdlet and look for a LogName with powershell in the name:
Get-WinEvent -LogName *powershell...
Summary: Microsoft Scripting Guy, Ed Wilson, concludes his five-part series about Windows PowerShell Workflow.
Hey, Scripting Guy! I have a number of commands that I want to run against several remote servers. The commands include stuff that must happen prior to something else happening. But then, there are also some things that I...
Summary: View Windows PowerShell console host information.
How can I easily find information about the Windows PowerShell console host?
Use the Get-Host cmdlet, and select the RawUI property from the InterhostUserInterface object:
(get-host).ui.RawUI...