DEV Community

Cover image for Stop Calling IT, Fix These 10 Issues Yourself
Saeed Qadir Jokhio
Saeed Qadir Jokhio

Posted on

Stop Calling IT, Fix These 10 Issues Yourself

There’s a particular kind of chaos that happens at 8:47 in the morning. Someone walks into the office, opens their laptop, and nothing works. The Wi-Fi is gone, the printer is throwing a tantrum, or Outlook has decided today is the day it refuses to open. They call IT. You pick up. And the day begins.

If you’ve spent any time on a helpdesk or if you are the helpdesk you know these problems by heart. Here are ten of the most common ones, and how to actually fix them.

  1. “My computer is so slow”
    Before blaming the hardware, check what’s quietly eating resources in the background. Open Task Manager, sort by CPU and RAM usage, and look for processes that shouldn’t be running. Clear startup programs. Run a quick malware scan. In most cases, a restart and a few disabled background apps solve it. If the machine is genuinely aging, a RAM upgrade or SSD replacement buys more time than any software trick.

  2. Wi-Fi keeps dropping
    Start with the simple things: forget the network and reconnect, update the network adapter driver, and make sure the device isn’t too far from the access point. If it’s office-wide, the issue is usually the router or DHCP lease problems. For one specific machine, check power management settings Windows sometimes lets adapters sleep to “save power,” which just means intermittent connection drops at the worst possible times.

  3. Printer not responding
    Printers are the one piece of technology that humbles every IT person. First: is it actually on? Is it online in the print queue? Clear any stuck jobs, restart the print spooler service, and reinstall the driver if needed. If it’s a network printer, verify the IP address hasn’t changed. Half the time, someone just bumped a cable.

  4. Forgotten passwords
    The most frequent helpdesk ticket in existence. Set up a self-service password reset portal if you haven’t already it saves enormous time. For immediate fixes, use your Active Directory or identity management tool to reset and force a new password on next login. Remind users to avoid using the same password across everything. They won’t listen, but you said it.

  5. Outlook won’t open or keeps crashing
    Run Outlook in safe mode first (outlook.exe /safe in Run). If it opens fine, a faulty add-in is the culprit — disable them one by one. If it still crashes, rebuild the Outlook profile. A corrupted PST file is another common cause; the built-in Inbox Repair Tool (scanpst.exe) handles that.

  6. Blue Screen of Death (BSOD)
    Frightening to users, but usually diagnostic. Note the stop code displayed it points directly to the problem. Common culprits are outdated or incompatible drivers, failed RAM, overheating, or bad Windows updates. Check Event Viewer logs after restart to trace the exact cause. Driver updates and a RAM test resolve the majority of cases.

  7. Can’t connect to VPN
    Verify credentials first. Then check whether the VPN client software is up to date. Firewall rules blocking VPN ports are a frequent culprit in corporate environments. If it’s a specific user, compare their config to someone who connects fine. Sometimes the fix is just reinstalling the VPN client entirely.

  8. Files won’t open or are corrupted
    If a file suddenly won’t open, check whether the application is updated. For Office files specifically, try opening in repair mode. If the file is on a shared drive, check permissions and whether the drive is still properly mapped. For genuinely corrupted files, recovery tools can sometimes salvage the contents.

  9. Email not syncing on mobile
    Delete the account from the device and re-add it. Make sure the server settings especially incoming/outgoing ports are correct for your mail setup. Check that the device’s time and date are accurate; even a small discrepancy can cause sync failures with Exchange servers.

  10. “I think I got hacked”
    Take this seriously immediately. Disconnect the device from the network, don’t let the user continue working on it, and preserve everything for investigation. Change passwords from a clean, separate device. Check login activity, email forwarding rules, and any unusual software installed recently. Report upward. Don’t try to quietly fix it and move on.

Most helpdesk work isn’t glamorous. It’s patient, methodical, and often repetitive. But solving these problems well quickly, calmly, and without making people feel foolish for not knowing is genuinely skilled work. The people who do it well are worth more than most organizations realize.

Top comments (0)