Tag: Staff Picks
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 ...
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 ...
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 ...
Testing SSL and TLS with PowerShell
This is an excellent PowerShell script if you want to test which SSL and TLS protocols are enabled on your webserver. This is extremely important ...
Moving files up a folder level
In the past I’ve used this small snippet to move tons of files and folders up a level.
<#
.SYNOPSIS
Moves all subfolders in Source to same ...
Removing an installed Windows Update
I needed to do this recently when we had a problem with an installed Windows Update that was causing random BSOD on both Server 2008 and Server 2012, ...
Check Active Directory for Stale Computers
Several times I have need to generate a list of computers that are identified as stale, but as an extra measure I want to try pinging them. This s ...
8 / 8 POSTS