#Powershell
-
Jun 22, 2015
Powershell Script to Find Email Address from Username in a Text File
Here is the simple powershell script to grab email address from AD. In a text file,just put username there. Q's email script $names= get content c:\pc.txt foreach ($name in $names) { Get ADUser $name...
-
Jun 22, 2015
Powershell Script to Check Live Bitlocker Encryption Status from Text File
If you have a list of computers and want the check the current bitlocker encryption status, here is a powershell script to do that: Rui Qiu PS Script 052014 $pcs= Get Content "c:\pc.txt" foreach ($pc...
-
Jun 22, 2015
Powershell Script to Export All Bitlocker Key to Local Disk
Sometimes we need to save bitlocker key in our environment locally to do some backup, comparison,etc. Here is a simple powershell script to export all the Bitlocker Keys to C:\. Please run this...