Automated Patching for Amazon Workspaces via SCCM and Powershell – Day 1
Do you have hundreds of Amazon Workspaces to patch monthly? and you are so tired of manually power them on to patch, and only reboot … Read more
Do you have hundreds of Amazon Workspaces to patch monthly? and you are so tired of manually power them on to patch, and only reboot … Read more
If you upgraded to Windows 10 1809, and re-installed RSAT, but the DNS Management tool is missing from RSAT, you can use this Powershell Script … Read more
Solution is here: How to hide shared folders under DFS Namespaces attrib –r +h +s <folder path> /L
Here is my powershell script to prompt to rename computer during SCCM OSD Task Sequence. It will first auto popular machine name according to serial … Read more
I have to check if machine has MS March update installed, and SCCM cannot make my job simpler 🙁 So I created a new compliance … 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