If you encounter the error 0x800704f8 ("Windows cannot access..."), it usually means Windows is blocking access to a shared folder because unauthenticated (guest) access is disabled by default. This issue is common in Windows 11 (including 24H2) and Enterprise editions.

Why This Happens

By default, Windows requires secure SMB connections and does not allow guest access. This improves security but can cause problems if you rely on simple file sharing or NAS devices that use guest logins.

Solutions

1. Enable Insecure Guest Logons (for non-critical environments)

  1. Open Group Policy Editor (gpedit.msc).
  2. Navigate to:
    Computer Configuration 
      β†’ Administrative Templates 
        β†’ Network 
          β†’ Lanman Workstation
          
  3. Open "Enable Insecure Guest Logons" and set it to Enabled.
  4. Open Local Security Policy (secpol.msc) and disable:
    • Microsoft Network Client: Digitally Sign Communications (always)
    • Microsoft Network Client: Digitally Sign Communications (if server agrees)

2. Use PowerShell to Adjust SMB Settings

Open PowerShell as Administrator and run:

Set-SmbClientConfiguration -EnableInsecureGuestLogons $true -Force
Set-SmbClientConfiguration -RequireSecuritySignature $false -Force
Set-SmbServerConfiguration -RequireSecuritySignature $false -Force
  

These commands disable forced SMB signing and re-enable guest access.

3. Check Basic Sharing Settings

  • Enable File and Printer Sharing:
    Control Panel β†’ Network and Sharing Center β†’ Change advanced sharing settings β†’ enable sharing.
  • Turn off Password Protected Sharing if you only use guest access.
  • Temporarily disable firewalls or third-party security software to rule out blocking.

Summary Table

Scenario Suggested Action
Guest/shared folder access only Enable Insecure Guest Logons via Group Policy or PowerShell
Default Windows 11/Enterprise Disable SMB signing ("Digitally Sign Communications")
Quick fix preference Use PowerShell commands
Concerned about security Create a user account on the target machine/share instead of guest login

Important Security Note

Enabling insecure guest logons and disabling SMB signing lowers security and makes your system more vulnerable to attacks. For a safer setup, create password-protected shares and connect with valid credentials instead of guest access.

Conclusion

Error 0x800704f8 can be frustrating, but it usually comes down to Windows security policies around SMB and guest access. If you need a quick fix, PowerShell commands work best. If you want a long-term secure solution, create proper user accounts for shared folders.