Google Drive Keeps Disconnecting
Resolution Checklist
- 1 Understand why Google Drive keeps disconnecting
- 2 Perform account reconnection and client updates
- 3 Troubleshoot network drops and reset connections on Windows
- 4 Troubleshoot network drops and reset connections on macOS
- 5 Summary Checklist for Disconnection Issues
Google Drive Keeps Disconnecting
If your Google Drive for Desktop keeps disconnecting, you will see notifications like “Account Disconnected”, “Sign in again to continue syncing”, or the application menu icon greyed out. This breaks the sync pipeline and stops changes from reaching the cloud.
This guide helps you resolve persistent sign-out issues and network disconnect loops on both Windows and macOS.
1. Understand Why Google Drive Keeps Disconnecting
Google Drive client disconnects are typically triggered by:
- Expired OAuth Security Tokens: Google Drive uses security tokens to maintain your session. If you change your Google account password, revoke app access from your Google account settings, or if the server invalidates the tokens, the client will constantly disconnect.
- DNS Resolution Drops: If your router or ISP experiences brief DNS resolution dropouts, the Drive client loses connection to Google’s real-time sync servers and goes offline.
- Power Management Interruption: Operating systems sometimes put network cards (NICs) or USB Wi-Fi adapters into low-power mode, dropping persistent WebSocket connections.
- VPN or Proxy Conflicts: Corporate VPN tunnels or security proxies that filter SSL/TLS traffic can terminate long-running HTTPS requests utilized by DriveFS.
2. Perform Account Reconnection and Client Updates
Before applying command-line fixes, clean up the application session state:
Step 1: Disconnect and Reconnect Your Account
- Click the Google Drive icon in the taskbar or menu bar.
- Click the Gear icon (Settings) → Preferences.
- Click the Gear icon inside the preferences panel.
- Click Disconnect account and confirm.
- Restart your computer.
- Open Google Drive and click Sign in. Complete the browser-based authorization.
Step 2: Download the Latest Client Release
Old versions of Google Drive are periodically blocked from connecting to Google API endpoints. Download and reinstall the latest desktop package from Google Drive Download Page.
3. Troubleshoot Network Drops and Reset Connections on Windows
If DriveFS disconnects when your PC wakes up or during network shifts, reset your Windows networking stack.
Step 1: Force Close Google Drive
taskkill /f /im googlepackagedexe.exe
Step 2: Disable Power Management Sleep on Network Adapters
- Press
Windows Key + Xand select Device Manager. - Expand Network adapters.
- Right-click your active Ethernet or Wi-Fi adapter and select Properties.
- Navigate to the Power Management tab.
- Uncheck Allow the computer to turn off this device to save power, then click OK.
Step 3: Reset TCP/IP and Flush DNS Cache
- Open Command Prompt (Admin).
- Execute the following commands to purge invalid routing entries and clean up cached hosts:
netsh winsock reset netsh int ip reset ipconfig /release ipconfig /renew ipconfig /flushdns - Restart your PC and run Google Drive.
4. Troubleshoot Network Drops and Reset Connections on macOS
On macOS, connection drops can occur due to corrupted FileProvider caches or mDNSResponder timeouts.
Step 1: Terminate the Application
Open Terminal and kill the Google Drive daemon:
killall "Google Drive"
Step 2: Flush the macOS DNS Resolver Cache
Flush the macOS DNS responder daemon to resolve host-resolution issues:
sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder
Step 3: Remove Stale DriveFS Cache Databases
Corrupted credentials databases will force disconnects even if the network is stable:
- Delete the local cache folder in terminal:
rm -rf ~/Library/Application\ Support/Google/DriveFS - Relaunch Google Drive. This prompts a clean authentication request and generates a fresh database structure.
5. Summary Checklist for Disconnection Issues
| Troubleshoot Layer | Resolution Action | Intended Outcome |
|---|---|---|
| Session Control | Disconnect and Re-sign in | Generates fresh OAuth2 tokens with the Google authorization server. |
| Windows Power Setting | Disable NIC Power Management in Device Manager | Prevents Windows from shutting down the network adapter. |
| Windows Network Stack | netsh winsock reset + ipconfig /flushdns | Purges corrupted local routing and DNS tables. |
| Windows Cache Purge | rmdir /s /q "%USERPROFILE%\AppData\Local\Google\DriveFS" | Clears corrupted credential database files. |
| macOS DNS Flush | sudo killall -HUP mDNSResponder | Restores connectivity to Google’s WebSocket hosts. |
| macOS Cache Purge | rm -rf ~/Library/Application\ Support/Google/DriveFS | Resets login states and local file database tables. |