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