Scripts
-
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 » -
Uninstall Java Older Versions
I have been struggling to remove all older version of Java JDK/JRE from bulk machines, i tried using uninstall string…
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 » -
BitLocker Status | Recovery Key
I had to run create a script to get the BitLocker status and the recovery key of bulk machines, and…
Read More » -
Invoke bitlocker key to Mbam Server Script
First run the Initiate TPM step in Ts using this powershell command Initialize-tpm Then restart the TS and add the…
Read More » -
Get-WinEvent Logs Reports include Remote Machine
In order to run this first script function, you need to save the second script along with this script with…
Read More » -
Disk usage information
#get disk usage information and export it to a CSV file for trend reporting Param( [string[]]$Computername = $env:COMPUTERNAME )…
Read More »