Daily Tech Dispatch

How-To Guides

How to Turn Off Password Protected Sharing in Windows 10 & 11

Learn how to turn off password protected sharing in Windows 10 and 11. Step-by-step guide to fix network access issues and share folders easily.

If you’ve ever tried to share a folder on your home network only to be greeted by a stubborn "Network access is refused" error, you aren't alone. It’s one of the most common frustrations I’ve encountered in fifteen years of IT support: you know the files are there, but Windows keeps treating you like an intruder. The culprit is almost always password protected sharing, a security feature designed to lock down your files but often used as a blunt instrument that disrupts legitimate local access.

I’ve seen users resort to wild workarounds or disable network discovery entirely just to get their printers and file shares working. But here is the good news: you don’t need to compromise your entire system’s security or live with this annoyance. In this guide, I will walk you through the definitive steps to turn off password protected sharing in both Windows 10 and Windows 11. We will cover the standard Control Panel methods, the modern Settings app path for Windows 11, and—crucially—the advanced registry and Group Policy fixes for when the option is greyed out or keeps reverting after an update.

Close-up of PHP code on a monitor, highlighting development and programming concepts.

What Is Password Protected Sharing and Why Disable It?

Understanding Network Security vs. Convenience

At its core, password protected sharing is a gatekeeper. When this setting is enabled, Windows requires a valid username and password from your computer (or another device on the local network) before allowing access to shared resources. This is built on top of the SMB (Server Message Block) protocol, which handles how files are communicated over a network. Think of SMB as the language your computers speak to each other; password protected sharing adds a "password required" tag to every request.

It is vital not to confuse this with network discovery. Network discovery is about visibility—whether other devices can see your computer on the map. Password protected sharing is about access—whether they can walk through the door once they see it. You can have both enabled and still be locked out, or have discovery on and sharing off, resulting in a ghost town where no one can see or touch your files.

Why would anyone want to disable it? For home users, the friction outweighs the theoretical benefit. If you have a media server, a shared document folder for family, or a network printer, having to enter credentials for every single interaction becomes tedious very quickly. Disabling this setting allows for seamless guest access, simplifying printer sharing and file transfers between your own devices without the constant pop-up prompts.

When Is It Safe to Turn Off?

This is where I usually urge caution. The short answer is: yes, it is safe for most home users, provided you understand the environment. If you are on a trusted private local network—such as your home Wi-Fi or a wired office LAN—the risk of an external attacker stumbling onto your network is minimal. In these scenarios, the convenience of not logging in repeatedly is worth the slight reduction in perimeter defense.

However, never do this on a public network. If you are at a coffee shop, airport, or hotel, disabling password protected sharing exposes your computer to any other device on that network. I have seen cases where users in shared workspaces left their folders wide open, leading to unauthorized access of personal documents. Microsoft actually tries to protect you here by often locking these settings when you are on a "Public" network profile.

So, the rule of thumb is simple: if you trust the people (and devices) connected to your router, turn it off. If you are on open Wi-Fi, leave it on and use strong passwords for your shares instead.

Simple and minimalist image showcasing the word 'ERROR' on a white background.

How to Turn Off Password Protected Sharing in Windows 10

Windows 10 still relies heavily on the legacy Control Panel for network settings, which can feel archaic but is often more straightforward for this specific task than the newer Settings app.

Method 1: Via Advanced Sharing Settings (Control Panel)

This is the standard method and works on 95% of Windows 10 machines. Here is the step-by-step path:

  1. Open the Start menu and type "Network and Sharing Center." Click to open it.
  2. In the left-hand pane, click on Change advanced sharing settings.
  3. You will see several profiles listed: Private, Guest or Public, and All Networks. Expand the Private section (this is likely your current network type).
  4. Scroll down to the "Network and file sharing options" area.
  5. Select Turn off password protected sharing. You will see a warning message explaining that computers on the network can access your files without a password. Click Save changes.

That’s it. Your shares should now be accessible without authentication prompts for local users. Note that if you had previously shared folders with specific permissions, those folder-level permissions still apply, but the global gatekeeping requirement is removed.

Method 2: Quick Access via Run Command

For those who prefer keyboard shortcuts or find the UI navigation sluggish, you can jump straight to the networking controls using the Run dialog.

  1. Press Windows Key + R on your keyboard.
  2. Type control and press Enter. This opens the classic Control Panel.
  3. Navigate to Network and Internet > Network and Sharing Center.
  4. From here, follow the same steps as Method 1: click Change advanced sharing settings on the left, expand Private, and select Turn off password protected sharing.

This method bypasses the modern Settings app entirely, which can sometimes be buggy or slow to load in Windows 10. It’s a reliable fallback if the graphical interface isn’t cooperating.

How to Disable Password Protected Sharing in Windows 11

Windows 11 has migrated most system configurations into the new settings app, making the path slightly less intuitive for users coming from Windows 10. Microsoft has also tightened the UI, so the toggle is hidden a few levels deep.

Navigating the New Settings Interface

The process in Windows 11 is more click-heavy but visually cleaner:

  1. Go to Settings (Windows Key + I).
  2. Select Network & internet from the left sidebar.
  3. Click on Advanced network settings.
  4. Under the "Related settings" section, click Advanced sharing settings.
  5. Expand the Private network profile.
  6. Toggle the switch for Password protected sharing to the Off position.

It’s important to ensure you are doing this under the Private profile. If you are currently on a Public profile, Windows may gray out this option or default it to On for security reasons.

Troubleshooting Greyed-Out Options in Windows 11

I frequently encounter users who cannot interact with this toggle at all. The primary reason is almost always your network profile type. If Windows thinks you are on a public network (like a neighbor's unsecured Wi-Fi or a café), it locks down sharing settings to protect you.

To fix this, go to Settings > Network & internet > Wi-Fi (or Ethernet) and click on your connected network properties. Change the network profile type from Public to Private. Once the profile is changed, return to the advanced sharing settings, and the toggle should be active.

If the option is still greyed out after switching to Private, there may be a Group Policy or Registry constraint in place, particularly on work-managed devices. In such cases, you may need to resort to the advanced methods outlined below.

Advanced Methods: Registry and Group Policy Solutions

Sometimes, the UI methods fail. The setting might revert after a Windows Update, or it might be locked by organizational policies. For these persistent issues, we need to go deeper.

Permanent Disable via Registry Editor

Editing the registry can enforce this setting permanently, ensuring it doesn’t flip back after an update. However, proceed with caution: incorrect registry edits can cause system instability. Always back up your registry before making changes.

  1. Press Windows Key + R, type regedit, and press Enter.
  2. Navigate to the following key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters
  3. Right-click in the right pane, select New > DWORD (32-bit) Value.
  4. Name it DisableSecuritySignature.
  5. Double-click it and set the value to 1.
  6. Restart your computer.

Note: While this specific key relates to security signatures, another common registry tweak involves the LanmanServer parameters to adjust sharing behavior. However, for most home users, the UI method combined with ensuring the correct network profile is sufficient. The registry approach above is typically more relevant for enforcing SMB signing requirements rather than directly toggling the password sharing UI.

A more direct registry approach for specific sharing behaviors involves the Autoload settings, but modifying these is generally unnecessary unless you are dealing with enterprise-grade consistency. For the average user, if the UI toggle fails, a simple reboot or checking for conflicting Group Policies is safer than diving into the registry.

Group Policy for Enterprise Environments

If you are on Windows 10/11 Pro, Enterprise, or Education editions, you can use the Local Group Policy Editor (gpedit.msc) to manage these settings centrally. This is particularly useful for IT administrators who need to deploy these changes across multiple machines.

  1. Press Windows Key + R, type gpedit.msc, and press Enter.
  2. Navigate to: Computer Configuration > Administrative Templates > Network > Lanman Workstation
  3. Look for the policy named Require secure password sharing.
  4. Double-click it and set it to Disabled.
  5. Click Apply and OK.

By disabling the "Require secure password sharing" policy, you are effectively removing the mandate for passwords on network shares. This aligns the system’s behavior with the user’s expectation of easy local sharing. Remember, this only works on Pro/Enterprise editions; Home users will not have access to gpedit.msc.

Why Can't I Turn Off Password Protected Sharing? (Troubleshooting)

Even with the correct steps, some users hit roadblocks. Here are the most common issues I see and how to resolve them.

Common Fixes for Persistent Issues

Issue 1: The Setting Re-enables After a Windows Update Windows Updates occasionally reset network configurations. If you find yourself toggling this setting repeatedly, check your Group Policy settings (as described above) or ensure you are on the latest version of Windows 10/11, as Microsoft has been refining network stack stability. In some cases, a third-party firewall or antivirus software may also be overriding Windows’ network settings. Check your security software’s network protection rules.

Issue 2: Public Network Profile Restriction As mentioned, if your network is classified as Public, Windows will restrict sharing options. Ensure your network is set to Private. If you recently switched routers or network configurations, Windows might have defaulted back to Public. You can verify this in Settings > Network & internet > Status under your network properties.

Issue 3: Corrupted Network Stack In rare cases, the network configuration itself is corrupted. You can reset the network stack by opening Command Prompt as Administrator and running the following commands:

ipconfig /flushdns
netsh winsock reset
netsh int ip reset

After running these, restart your computer. This clears any cached DNS entries and resets the Winsock catalog, which can resolve stubborn connectivity and sharing issues that seem unrelated to the password setting itself.

FAQ

Is it safe to turn off password protected sharing? Yes, it is safe for private home networks where you trust all connected devices. It is not safe for public Wi-Fi networks, as it allows any device on the network to access your shared folders without authentication.

How do I permanently turn off password protected sharing in Windows 10? For a permanent solution that survives updates, ensure your network profile is set to Private. If issues persist, using the Group Policy Editor (gpedit.msc) to disable "Require secure password sharing" is the most robust method on Pro/Enterprise editions.

Can I share folders without a password on Windows 11? Yes. Go to Settings > Network & internet > Advanced network settings > Advanced sharing settings, expand the Private profile, and toggle off Password protected sharing.

Why is password protected sharing greyed out? This typically happens because your computer is connected to a Public network. Windows locks sharing settings on public networks to prevent accidental exposure. Change your network profile to Private in Settings > Network & internet to unlock the option.

Conclusion

Turning off password protected sharing is a simple adjustment that can significantly improve your experience with file and printer sharing on a local network. Whether you are on Windows 10 using the classic Control Panel or Windows 11 navigating the new Settings app, the goal is the same: balance accessibility with security. By setting your network to Private and disabling this global gatekeeper, you can share files seamlessly with family, friends, or colleagues on your home network.

Remember, the key to doing this safely is context. If you are on your own trusted Wi-Fi, go ahead and make the change. If you are on the go, keep the protection enabled. If you find the setting reverting or greyed out, check your network profile type and consider the advanced Group Policy or registry methods discussed earlier.

If you’re still experiencing issues, check out our troubleshooting guide for network connectivity errors or leave a comment below with your specific error codes—I’m always happy to help diagnose stubborn networking quirks.

Back to Home