Concise, repeatable fixes you can hand to Tier 1–2 support (and humans).
Settings → Network & Internet → Wi‑Fi → Manage known networksSystem Settings → Wi‑Fi → Details → Forget This Networknetsh int ip reset netsh winsock reset ipconfig /flushdns shutdown /r /t 0
# Delete SSID from preferred networks, then reconnect sudo /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport --delete=SSID
# Windows nslookup example.com curl -I https://example.com # macOS/Linux dig example.com +stats curl -I https://example.com
# Windows pathping example.com # macOS/Linux traceroute example.com mtr -rw example.com
# Windows (PowerShell as admin) netsh interface ipv4 show subinterfaces # Try lower MTU (example 1472 + 28 = 1500) netsh interface ipv4 set subinterface "Wi-Fi" mtu=1472 store=active
# Windows route print # macOS/Linux netstat -rn
ipconfig /release && ipconfig /renew
ipconfig/ifconfig address and check ARP:
# Windows arp -a # macOS/Linux ip neigh
arp -d *.winget (if allowed):
winget install --id Vendor.App -e --source winget
msiexec /i installer.msi /L*V C:\Temp\install.log
Install required runtimes first, then retry the setup.
System Settings → Privacy & Security → “Open Anyway”.xattr -dr com.apple.quarantine /Applications/AppName.app
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" brew install --cask iterm2
# Debian/Ubuntu sudo apt update && sudo apt install <pkg> # RHEL/CentOS/Fedora sudo dnf install <pkg> # Generic RPM sudo rpm -Uvh package.rpm
Settings → Bluetooth & devices → Printers & scanners → Add device → Add manually → Add a printer using a TCP/IP address.System Settings → Printers & Scanners → Add Printer, Scanner, or Fax → IP (use IPP if supported).services.msc # Stop "Print Spooler" del /q C:\Windows\System32\spool\PRINTERS\*.* # Start "Print Spooler"
cancel -a cupsctl --debug-logging lpstat -t
Title: <Problem Name> Scope: Who is this for? What systems? Impact: What breaks / who is affected? Prereqs: Access, permissions, tools Steps: 1) <Action> 2) <Action> 3) Validate: <expected output> Rollback: - <safe undo path> Notes: - Links to vendor docs / tickets - “Gotchas” / common traps Last Updated: <YYYY‑MM‑DD> Owner: <name>
Summary: <1‑2 sentence user‑friendly summary> User/Asset: <user@company / PC‑12345> Timeline: - <HH:MM> Reported - <HH:MM> First response - <HH:MM> Fix applied - <HH:MM> Verified with user Root Cause: <when known> Resolution: <final actionable fix> Follow‑ups: <PR, policy, KB link>