- Local time
- 2:56 AM
- Posts
- 222
- OS
- PE
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Insane, I agree. But it is what we got.. The solution to most issues for folks with mixed OSes is to create credentials on every machine for accessSince 24H2 I'm in sort of the same boat. Can't see one of my NAS devices, some of my PCs aren't there and worst of all the 24H2 PC doesn't see itself in the network!! Now that's just insane to me and this alone has kept me from updating any of my other PCs to 24H2.
The NAS seems to always be the one that is the stickler. All our networked machines are now Win11 Pro, and I do use RDP for a couple of them that are headless. My NAS is a somewhat aging Netgear ReadyNAS, and it always takes the full suite of changes to allow full access when I do a new install.Fast forward about 6 months and I upgraded my last system from 10 to 11. Every system saw all the others, all my credentials worked. But I still couldn't access a NAS. I got it worked out using Chatgpt. First problem I ever used AI to solve.
Mine is pretty ancient, it's next on the replacement list. I enabled everything I could, which is not much on this model. Mine is the ReadyNAS 102 from 2013, so it's twelve years old. To give you and idea of the age, it still has an eSATA port if you want to put an external disk on it! I have a USB 3 disk on it to do automated backups of the data. The firmware is 6.10.10, the last release and it's listed as end of life. I don't think I'll be getting any updates to the firmware.ReadyNAS OS has supported SMB 3 for a while now. Is your NAS upgradable?
all four computers are on private network and have file and printer sharing on and have password protected sharing turned offDo you have you main setup as Public network of private network?
The following services should be set to a start type of Automatic or Manual:
Name DisplayName Status StartType
---- ----------- ------ ---------
DcomLaunch DCOM Server Process Launcher Running Automatic
http HTTP Service Running Manual
fdphost Function Discovery Provider Host Running Manual
FDResPub Function Discovery Resource Publication Running Manual
The network category for your connection should be Private:
Name InterfaceAlias NetworkCategory
---- -------------- ---------------
Banana Pineapple Private
The following rules should be enabled and set to allow traffic.
DisplayName Direction Enabled Action
----------- --------- ------- ------
Network Discovery (SSDP-Out) Outbound True Allow
Network Discovery (WSD Events-In) Inbound True Allow
Network Discovery (UPnP-Out) Outbound True Allow
I never disabled it from 23H2. When I updated to 24H2 I checked and it was still enabled.@flhthemi Did you re-enable smbv1 or no? (just curious)
If I run it on each of the four computer then each one shows up in Network (at least for a time).net stop FDResPub
net start FDResPub
huh?? what is smbv1 and where do I change setting/re-enable??@flhthemi Did you re-enable smbv1 or no? (just curious)
Set-SmbClientConfiguration -EnableInsecureGuestLogons $true
ok... so i don't have any device other than computers on my LAN ... 1 windows 10 and three windows 11 so i don't need to mess with SMBv1 right?It's in the "turn Windows features on/off," but you only need SMBv1 if you're using Windows older than Vista, or some device that doesn't support newer versions, like a USB drive connected to a home router or an ancient NAS.
I tried it but this is the response i get:Okay, so now they're able to discover (see) each other; we just need to deal with permissions. Run this in an elevated PowerShell session on each computer.
Set-SmbClientConfiguration -EnableInsecureGuestLogons $true
For items 3 and 4, you can run the attached PowerShell script to get a report. No need to run it with admin rights; it's just showing you the state of things. Rename it to a .ps1 extension before trying to run it. You should get something like this; I edited mine to make it shorter
I tried to run this in a PowerShell by typing it at the prompt but got a message that loading scripts is disabled on this system. This is the first time I have EVER used PowerShell so I have no idea what to do.Sounds like you're running it in Command Prompt, not PowerShell.
You need to enable scripts. In PowerShell, run the following command.
Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser
When you're done, you might want to disable them again unless you need to run scripts.
Set-ExecutionPolicy Restricted
POWERSHELL -nop -c "Set-SmbClientConfiguration -EnableInsecureGuestLogons $true"