summaryrefslogtreecommitdiffstats
path: root/content/posts/windows-10-network-share-guest-access.md
diff options
context:
space:
mode:
authorbreadcat2020-06-19 12:23:15 +0100
committerbreadcat2020-06-19 12:23:15 +0100
commit70bb5d5a801428b0fb390abf79f19ffcf5e29c67 (patch)
treeb9fd7990156bd58bc38d58f91829c05933215102 /content/posts/windows-10-network-share-guest-access.md
parent0f9a31348079c0a061bcc194912e75cc1c07bc1f (diff)
downloadblog.minskio.co.uk-70bb5d5a801428b0fb390abf79f19ffcf5e29c67.tar.gz
blog.minskio.co.uk-70bb5d5a801428b0fb390abf79f19ffcf5e29c67.tar.bz2
blog.minskio.co.uk-70bb5d5a801428b0fb390abf79f19ffcf5e29c67.zip
Simple migration of existing posts to hugo format
Diffstat (limited to 'content/posts/windows-10-network-share-guest-access.md')
-rw-r--r--content/posts/windows-10-network-share-guest-access.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/content/posts/windows-10-network-share-guest-access.md b/content/posts/windows-10-network-share-guest-access.md
new file mode 100644
index 0000000..216c32f
--- /dev/null
+++ b/content/posts/windows-10-network-share-guest-access.md
@@ -0,0 +1,17 @@
+---
+title: "Windows 10 Network Share Guest Access"
+date: 2019-02-15T11:47:00
+tags: ["servers", "snippets", "software", "windows"]
+---
+
+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.
+
+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.
+
+The following registry key needs altering to allow *insecure* guest access to these shares.
+
+```
+reg add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v "AllowInsecureGuestAuth" /t REG_DWORD /d "1" /f
+```
+
+With the change made, everything will work as expected. Nicely done. \ No newline at end of file