Power Shell

  • Azure ArmTemplate

    This JSON Template creates the following Items: NetworkInterface NetworkSecurityGroup VirtualNetwork PublicIP VirtualMachine StorageAccount Availability Set VM Diagnostic Extension Managed Disk…

    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 »
  • SCCM Client Repair – PS Script

    To Repair SCCM Client and Repair WMI, please use this script. First download the WMI Repair tool and save it…

    Read More »
  • Copy Logs

    This is my new script which wrote to copy logs to a shared location. We recently started to upgrade user…

    Read More »
  • PowerShell Pop-Up – SCCM App

    i was looking to add Pop-Up message to users to close any running SQL Mgmt when deploying “SQL Server Management…

    Read More »
  • Disable Dual Scan

    I recently was working on an issue where device gets its software updates from Microsoft (windows update) which i didn’t…

    Read More »
  • PS -Disk-Usage History

    #get disk usage information and export it to a CSV file for trend reporting Param( [string[]]$Computername = $env:COMPUTERNAME ) #path…

    Read More »
  • PS – daily disk report

    #run the daily disk report Param ( [string]$Path = "C:\Work\DiskHistory.csv", [string]$ReportPath = "C:\work" ) #import CSV data #verify the file…

    Read More »
  • Get SCCM COllection Members

    I got a task to create a script so other team could use it to retrieve the list of machines…

    Read More »
Back to top button