#PowerShell
-
Jun 10, 2016
Package Powershell 5.0 in SCCM
A Surprisingly very easy SCCM Package, the command line is just wusa.exe Win7AndW2K8R2 KB3134760 x64.msu /quiet /norestart You can download Powershell 5.0 from here: <https://www.microsoft.com/en...
-
Jun 3, 2016
Better Way to Find Drivers for SCCM OSD Image
There are lots of ways to find drivers, such as from the manufacturer website(Lenovo, HP, Dell), vendor website(Intel, Nvidia), or from Microsoft Update Catalog. At first I was downloading the SCCM...
-
Jul 5, 2015
Get IP Addresses from a List of Machines
I need to get IP addresses from a list of machines, so I googled it...needs to use test connection command, and here is the full script: Get IP Addresses from a List of Machine Name 07052015 $pcs =...
-
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...