Tech Fixes
How to Fix the 9 Most Common Tech Support Issues
Every help desk shift seems to feature the same core problems. Use this checklist to triage the top nine issues in less than five minutes each.
1. Password or Account Lockouts
- Confirm whether the system is federated (Azure AD, Okta, Google Workspace) and unlock/reset in the IdP first.
- Walk the user through MFA re-registration if their authenticator app or SMS number changed.
- Clear any lingering sessions by forcing a sign-out across devices; this prevents re-locks from cached tokens.
- If the service flagged “suspicious login,” confirm geo/IP details, then mark the attempt safe and have the user update their password immediately.
2. Wi-Fi or Internet Not Working
- Ask if other devices on the same SSID are affected; if so, reboot the modem/router and check the ISP status page.
- For a single device, forget and rejoin the network, making sure it grabs a fresh DHCP lease.
- Run
ipconfig /flushdns(Windows) orsudo dscacheutil -flushcache(macOS) when DNS resolution is slow. - Recommend plugging directly into the modem with Ethernet to isolate router vs. ISP trouble.
3. Device Running Slow
- Open Task Manager/Activity Monitor, sort by CPU and Startup impact, and disable unneeded launch items.
- Run Disk Cleanup or Storage Sense and free at least 15% of the system drive; spinning disks thrash when nearly full.
- Check for runaway Windows Update or Spotlight indexing jobs; pause indexing until after peak hours.
- Inspect temps with HWMonitor/iStat—if hot, clean vents and verify fans are spinning before blaming software.
4. Apps Won’t Install, Launch, or They Crash
- Compare installer requirements against OS build and architecture; mismatches (32-bit vs 64-bit) are common.
- Run the installer “as administrator” and temporarily disable security software if it inspects MSI packages.
- Clear cached installers (
%temp%,/Library/Caches) and redownload in case of corruption. - For licensed apps, verify the activation count and deactivate old machines so the new device can check in.
5. Printer Problems
- Power-cycle the printer itself, then restart the Print Spooler service (
services.mscornet stop spooler). - Remove stalled items in the queue before attempting another job.
- Reinstall the latest driver from the manufacturer; the Windows class driver often lacks scanning features.
- For network printers, ping the static IP; if it changed, update the port in Devices & Printers.
6. Email Problems
- Check server status dashboards first (Microsoft 365, Google Workspace) to rule out platform outages.
- Verify quota—mailboxes silently stop receiving when they hit storage limits. Archive or expand the mailbox.
- Reset the local profile (Outlook: Control Panel > Mail) when sync hangs at “Updating inbox.”
- Review spam/junk rules and any forwarding that could be intercepting mail before the inbox.
7. Updates Causing Problems
- Capture the KB/build number and confirm whether it is a known-bad update on the vendor health dashboard.
- Roll back via
Settings > Windows Update > Update history > Uninstall updatesor macOS Recovery’s Time Machine. - After removal, pause updates for seven days to avoid automatic reinstallation while Microsoft/Apple issue a fix.
- If the machine is in a boot loop, use Safe Mode or Windows RE to uninstall the update offline.
8. File Access and Sharing Issues
- For “Access denied,” check NTFS or share permissions and ensure the user’s group is granted Modify rights.
- Sync engines (OneDrive, Drive for Desktop) pause when the user signs out; have them reauthenticate and check for
sync pendingfiles. - Map network drives using
\server\sharewith explicit credentials to avoid cached mismatches. - Restore deleted files from cloud recycle bins before touching backups; most services keep 30-day versions.
9. Hardware and Peripheral Issues
- Test suspect devices on a second machine to confirm whether the failure follows the hardware or the OS.
- For USB gear, remove hidden devices via Device Manager > View > Show hidden devices, then uninstall old drivers.
- Update chipset and Bluetooth stack drivers from the OEM—not Windows Update—if dongles or headsets drop frequently.
- If external drives fail to mount, check Disk Management; assign a drive letter or run
chkdsk /fto clear dirty bits before concluding the disk is dead.
Need manufacturer specifics? Always cross-reference the official service manual after these baseline steps.