Enable Windows GOD Mode
“God Mode” is a hidden feature in Windows that provides a centralized Control Panel for all of Windows’ settings. Here’s how you can enable it using P ...
Windows Defender Real Time Monitoring Status
PowerShell script that you can use to check the status of Windows Defender’s real-time monitoring on a list of computers from a text file
# Import th ...
Managing VMware Snapshots with Powershell
PowerShell script that you can use to list all snapshots on a vServer. This script assumes that you have the necessary permissions and that the Get-Nc ...
Disable/Enable all Network Adapters
PowerShell script that can disable and then enable all network adapters on a computer. Please note that running this script will interrupt all network ...
Remote Windows Computer Inventory
Here’s a PowerShell script that gathers detailed inventory information from a remote computer. This script retrieves information about the operating s ...
Remove Windows Bloatware
Here is a PowerShell script that can be used to remove unwanted pre-installed apps from Windows.
$MsftBloatApps = @(
"Microsoft.3DBuilder"
...
Remove unwanted Windows applications
This script uses the Microsoft.Win32.RegistryKey class to list all installed programs and their details. The user is then prompted to enter the name o ...
Remove installed Windows Updates
This powershell snippet will search for all installed Windows updates and uninstall them one at a time.
$Session = New-Object -ComObject Microsoft.Up ...
Disable SSL 2.0/3.0 and TLS 1.0/1.1
Learn to disable SSL and weak TLS versions like 1.0 and 1.1 ...
BSOD – Restore Windows Registries
Many times a Blue Screen of Death (BSOD) is caused by corrupted registry. Follow this process to restore the windows registry, I have found 90% of the ...