Summary: Guest blogger, Stephane van Gulick, continues his series about using Windows PowerShell and BitLocker together.
Microsoft Scripting Guy, Ed Wilson, is here. Welcome back Stephane van Gulick for the final part of his two-part series. Be sure you read PowerShell and BitLocker: Part 1 first.
Encryption operations
A lot of the following ...
Summary: Use Windows PowerShell to determine the letter that a string begins with.
How can I use Windows PowerShell to find if a particular string begins with the letter “s”?
Use the StartsWith method from the string, for example:
PS C:\> "string".StartsWith("S")
False
PS C:\> "...
Summary: Guest blogger, Stephane van Gulick, presents a practical hands-on post that shows how to use Windows PowerShell and BitLocker together.
Microsoft Scripting Guy, Ed Wilson, is here. Today we have a new guest blogger, Stephane van Gulick. Stephane was introduced to me by The Scripting Wife, she was browsing the Internet and found his ...
Summary: Find Windows PowerShell formatting information for list views.
How can I use Windows PowerShell to find information about format data for types for list views?
Use the Get-FormatData cmdlet and pipe the output to Where-Object., for example:
Get-FormatData | ? FormatViewDefinition -Match 'list view'...
Summary: Guest blogger, and Microsoft PFE Ian Farr, continues his series about JIT administration with Windows PowerShell.
Microsoft Scripting Guy, Ed Wilson, is here. Today, welcome back Ian Farr for the conclusion of his two-part blog. Before you dig into today's post, please read Use PowerShell for JIT Administration and PAM – ...