Scripts
-
Fix No Client state – SCCM
get-service ccmexec | stop-service -Force (Get-WmiObject Win32_Service -Filter "Name=’CcmExec’").StopService() Get-WmiObject win32_service -ComputerName ca1connect02 | Where-Object {$_.name -eq "ccmexec"} | Stop-Service…
Read More » -
Send Email – PS Script
We can use powershell script to send email to anyone or any Distribution list which will contains group of users.…
Read More » -
Terraform AzureDevOps – Pipeline
The biggest challenge to automate the deployment of Azure resource creation more than once, we need to create Azure DevOps…
Read More » -
Azure VM with existing vNet – Terraform Module
Recently i have been assigned a task to create virtual machine and using existing virtual network in Azure using Terraform…
Read More » -
WinGet – Install-upgrade Apps Automatically
Windows Package Manager Microsoft released their Windows Package Manager aka Winget for developers, application packager, application vendors to manage their…
Read More » -
Download/Install App – PowerShell
The easiest way to download and install any application from internet is using this script which i created. 1- Create…
Read More » -
Remove Azure Runbooks – PS Script
Remove all runbooks with specific names from specific Automation Acct from Azure I was recently being tasked to create a…
Read More » -
Task Scheduler – PowerShell – Clean Drive
Create Task Scheduler and Clean drive using PowerShell Script 1- Prepare your PS Script, and save it # PowerShell Script…
Read More » -
Get SCCM Software Update Status
function Get-SCCMSoftwareUpdateStatus { <# .Synopsis This will output the device status for the Software Update Deployments within SCCM. For updated…
Read More » -
Find Specific Software – PS Script
Sometime you want to find a specific software installed on Remote or local machine by PS Script. Below Powershell Command…
Read More »