Showing results for August 2013 - Page 4 of 13 - Scripting Blog [archived]

Aug 24, 2013
0
0

PowerTip: Use PowerShell to Get BitLocker Recovery Key

Doctor Scripto
Doctor Scripto

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-BitLocke...

Scripting Guy!Windows PowerShellPowerTip
Aug 24, 2013
0
0

Deciding How to Use PowerShell to Access AD DS

Doctor Scripto
Doctor Scripto

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 Directory Do...

Scripting Guy!Windows PowerShellscripting techniques
Aug 23, 2013
0
0

PowerTip: Find PowerShell Logging Info

Doctor Scripto
Doctor Scripto

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*

Scripting Guy!Windows PowerShellPowerTip
Aug 23, 2013
0
0

PowerShell Workflow for Mere Mortals: Part 5

Doctor Scripto
Doctor Scripto

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 woul...

Scripting Guy!Windows PowerShellscripting techniques
Aug 22, 2013
0
0

PowerTip: View PowerShell Console Host Information

Doctor Scripto
Doctor Scripto

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

Scripting Guy!Windows PowerShellPowerTip