windows-10-network-share-guest-access.md (896B)
1 --- 2 title: "Windows 10 network share guest access" 3 date: 2019-02-15T11:47:00 4 tags: ["Servers", "Snippets", "Software", "Windows"] 5 --- 6 7 I recently re-installed Windows 10, my edition of choice was the new 2019 edition of LTSC-N and as such I updated the [prep script](https://github.com/breadcat/win10-prep) I use to *provision* a new installation. 8 9 One thing worth noting however was that I couldn't access this script stored on a remote Linux Samba share. After checking the server everything looked correct until I looked at the group policies enabled by default in this new LTSB/LTSC version. 10 11 The following registry key needs altering to allow *insecure* guest access to these shares. 12 13 ``` 14 reg add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d "1" /f 15 ``` 16 17 With the change made, everything will work as expected. Nicely done.