Connect to Server greyed out on Mac — fix now

macOS Errors Beginner 👁 1 views 📅 May 29, 2026

The Connect to Server option in Finder is greyed out. Three quick fixes, plus why it happens.

Yeah, that's annoying. You hit Cmd+K or click Go and Connect to Server is just… greyed out. Doesn't matter if you're on Sonoma or Sequoia — it's a common bug when Finder loses its marbles. Here's how to get it back.

Fix 1: Force quit and relaunch Finder

This sounds dumb but it works 90% of the time. Finder hangs on some background process and the menu item goes dead.

  1. Hold down Option and right-click the Finder icon in your Dock.
  2. Choose Relaunch from the menu. (If you don't hold Option, you'll only see Quit.)
  3. Finder will disappear and come back. Wait 3 seconds.
  4. Now press Cmd+K. You should see the Connect to Server dialog pop up.

After relaunching, you'll see the menu bar flash and Finder refresh. If Cmd+K still doesn't work, move to Fix 2.

Fix 2: Kill the background process via Terminal

Sometimes Finder relaunch isn't enough because a hidden process called sharingd or netbiosd locks the menu. I've seen this on macOS 14.5 and 15.0. Here's the real fix:

  1. Open Terminal (from /Applications/Utilities or search with Spotlight).
  2. Type this exactly and press Return:
    sudo killall sharingd 2>/dev/null; sudo killall netbiosd 2>/dev/null; open -a Finder
  3. It will ask for your Mac password. Type it (you won't see characters) and press Return.
  4. Wait 5 seconds. Finder will relaunch automatically.
  5. Try Cmd+K again. It should work now.

The command kills two services that handle network browsing and SMB connections. When they hang, Finder greys out the Connect to Server option because it thinks no network is available. Killing them forces a fresh start.

Fix 3: Reset Finder preferences (last resort)

If the first two fixes didn't help, Finder's preference file is corrupted. I've only seen this on macOS 13 Ventura and later, but it happens.

  1. Quit Finder (Cmd+Option+Esc, select Finder, click Relaunch).
  2. Go to ~/Library/Preferences/. (In Finder, press Cmd+Shift+G and paste that path.)
  3. Find the file named com.apple.finder.plist.
  4. Drag it to your Desktop — don't delete it yet, just move it.
  5. Relaunch Finder again (same Option+right-click method).
  6. Finder will create a new preference file automatically.
  7. Test Cmd+K. If it works, you can trash the old plist on Desktop.

If the problem comes back after a restart, the plist rebuilds itself cleanly. Moving it to Desktop is safe — you can always put it back if something weird happens.

Why this happens

The Connect to Server command is part of Finder's Go menu. When you click it, Finder talks to the system's network framework to see if any servers are reachable. If sharingd, netbiosd, or Finder itself freezes, it marks the menu item as disabled. It's not a permissions issue or a broken update — it's a service that got stuck.

Less common variations

Variation: Only greyed out when on VPN

If Connect to Server works normally when you're on your home Wi-Fi but greys out when connected to a VPN, the VPN is blocking mDNS or SMB traffic. Fix: in your VPN settings, turn off "Send all traffic over VPN" or add an exception for your local subnet (like 192.168.1.0/24).

Variation: Greyed out after macOS update

Some macOS updates (I saw this after 14.4.1) reset network permissions for Finder. Go to System Settings > Privacy & Security > Local Network and make sure Finder has a green toggle. If it's off, turn it on and restart Finder.

Variation: Only greyed out when external monitor connected

This is rare but real. On M-series Macs, connecting an external display can cause Finder to lose focus or misread the menu state. Disconnect the monitor, relaunch Finder, reconnect. The menu should come back.

Prevention

There's no permanent fix because it's a macOS bug, not something you caused. But you can reduce how often it happens:

  • Don't put your Mac to sleep while connecting to a network drive. Wake it up, then connect. Sleeping during connection can corrupt the service state.
  • Restart your Mac once a week. I know, that's basic. But it clears out hung processes better than any Terminal command.
  • Use the Terminal command from Fix 2 as a quick trigger. I have it saved as a snippet in my notes app. One paste and it's fixed in 10 seconds.

If none of this helps and it's happening every day, try creating a new user account and test Connect to Server there. If it works in the new account, your main user's Finder preferences are toast. Back up your stuff and migrate to a fresh account — it's faster than debugging a corrupted plist for hours.

Was this solution helpful?