What's new

Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Welcome to the new site. New looks, more of a classic retro vibe. I am working on moving content from the old site to here. Many things will not be directly moved and will be added slowly over time. Such as downloads and images. The old site and its content will be available from beta.throneofgeeks.com for a while. Furthermore I have decided to completely get rid of ads as it only slows down the site. If you want to support what I do and the free internet you can buy me a coffee. Thanks! //Sirmadsen

Windows 11 Allow Insecure Connections from PowerShell

Sirmadsen

Administrator
Staff member
Admin
Moderator
Member
Joined
Jan 12, 2022
Messages
48
Sometimes when installing a fresh Windows you might not be able to connect to a shared network drive. This is especially true with Windows 11 and 24H2and up. There is a easy solution for this. I searched for hours to find this so to save you time here's the fix (might not work for you depending on the issue).

The short explanation. Windows 11 Home 25H2 that I use have added more secure and strict network features. This prevents Windows from discovering drives in your network that are not "verified" and have no secure connection, even if you have a username and password. What we need to do is open up insecure connections and allow guest access.

Allow Insecure Connections from PowerShell.​

The final method to fix the error "Network path not found – 0x80070035" in Windows 11 24H2, is to allow the insecure guest logons, using PowerShell.*

1. Open PowerShell as Administrator (important) and use the following three (3) commands one by one:

Set-SmbClientConfiguration -EnableInsecureGuestLogons $true -Force

Set-SmbClientConfiguration -RequireSecuritySignature $false -Force

Set-SmbServerConfiguration -RequireSecuritySignature $false -Force

Restart to make sure and try to connect again using \\mynetworkdrive or \\drivesipadress from explorer.

If you have any other tips, leave them in the comments.
 
Last edited:

Don't Miss

Back
Top Bottom