Skip to content

Latest commit

 

History

History
116 lines (87 loc) · 2.66 KB

README.md

File metadata and controls

116 lines (87 loc) · 2.66 KB

Windows Setup and Maintenance Guide

This guide provides essential commands and resources for activating, optimizing, and maintaining a Windows environment.

Activations

  1. Windows Activation (Massgrave)

    • Use this command to activate your Windows system:
    irm https://massgrave.dev/get | iex
  2. Windows Activation (Activated.win)

    • An alternative activation method:
    irm https://get.activated.win | iex

Utilities

  1. WinUtil

    • A comprehensive utility tool for Windows customization:
    irm https://christitus.com/win | iex
  2. Windows 10 Debloat

    • Remove unnecessary bloatware from Windows 10:
    iwr -useb https://git.io/debloat | iex

Links

  1. All Windows Resources

  2. Windows Server Dump

  3. Mac Activation

Commands

  1. Install WingetUI

    • Install a graphical user interface for managing packages via Winget:
    winget install -e --id SomePythonThings.WingetUIStore
  2. Upgrade All Packages

    • Upgrade all installed packages and accept agreements automatically:
    winget upgrade --all --accept-package-agreements

System Maintenance

SFC (System File Checker) Process

  1. Step 1: Run SFC /Scannow

    • Check for and repair corrupted system files:
    sfc /scannow
  2. Step 2: If Errors Found, Run DISM

    • Repair the Windows image to resolve deeper issues:
    DISM /Online /Cleanup-Image /RestoreHealth
  3. Step 3: Run SFC /Scannow Again

    • Re-run the System File Checker to ensure all issues are resolved:
    sfc /scannow

Windows Update Management

  1. Check for Updates

    • Ensure your system is up-to-date:
    wuauclt /detectnow
  2. Install Updates

    • Install any pending updates:
    Start-WindowsUpdate -Install
  3. Restart After Updates

    • Restart the system if required after installing updates:
    shutdown /r /t 0

Mac

  1. Homebrew
    • A combo command for homebrew
    brew update; brew upgrade; brew cu --include-mas -a -f -y ; brew cleanup --prune=all; find "$(brew --prefix)/Caskroom" -type f '(' -name '*.dmg' -or -name '*.pkg' ')' -delete; brew doctor