Find A File with Random Characters and Send Email by SCCM Compliance Rule
Here is my Powershell script for Finding a file with random characters in the end, if the system find the file, it will email to … Read more
Here is my Powershell script for Finding a file with random characters in the end, if the system find the file, it will email to … Read more
Here is my powershell script for finding if a process is running with SCCM compliance rule. $process = Get-Process Process-name-xxx -ErrorAction SilentlyContinue if ($process) { Write-Host … Read more
sometimes if you run as local admin, but your current user is not a local admin, then you need some special way of finding the … Read more
Here is a powershell command for creating a SCCM deployment Start-CMApplicationDeployment -CollectionName “Collection Name” -Name “Softwarename” -DeployAction Install -DeployPurpose Available -UserNotification DisplayAll -AvaliableDate (Get-Date) … Read more
With SCCM 2012, I love the Remote Control function, so much better than RDP! and it comes with SCCM console. For those don’t have SCCM … Read more
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 … Read more
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: … Read more
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 … Read more
If you have a list of computers and want the check the current bitlocker encryption status, here is a powershell script to do that: … Read more
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 … Read more