Skip to content

Instantly share code, notes, and snippets.

@BlazOrazem
BlazOrazem / pc_doctor.txt
Last active August 24, 2023 21:34
Best tools for the health of your PC
TFC - Temp File Cleaner
A small utility that will clean out all the folders on your computer that house temporary files.
http://www.bleepingcomputer.com/download/tfc/
***
ADW Cleaner
AdwCleaner is a program that searches for and deletes Adware, Toolbars,
Potentially Unwanted Programs (PUP), and browser Hijackers from your computer.
@wise-io
wise-io / UpdateWindows.ps1
Last active June 20, 2024 14:12
Download & Install Windows Updates with PowerShell
# Install all Windows updates
function Install-PSModule {
param(
[Parameter(Position = 0, Mandatory = $true)]
[String[]]$Modules
)
Write-Output "`nChecking for necessary PowerShell modules..."
try {
# Set PowerShell to TLS 1.2 (https://devblogs.microsoft.com/powershell/powershell-gallery-tls-support/)