惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
Schneier on Security
C
Cyber Attacks, Cyber Crime and Cyber Security
D
Darknet – Hacking Tools, Hacker News & Cyber Security
Project Zero
Project Zero
T
The Exploit Database - CXSecurity.com
G
GRAHAM CLULEY
T
Threatpost
A
Arctic Wolf
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Scott Helme
Scott Helme
Simon Willison's Weblog
Simon Willison's Weblog
P
Proofpoint News Feed
C
Cisco Blogs
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
K
Kaspersky official blog
P
Palo Alto Networks Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
T
Threat Research - Cisco Blogs
The Hacker News
The Hacker News
T
Tor Project blog
NISL@THU
NISL@THU
The GitHub Blog
The GitHub Blog
Security Latest
Security Latest
aimingoo的专栏
aimingoo的专栏
C
CERT Recently Published Vulnerability Notes
Recorded Future
Recorded Future
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Google DeepMind News
Google DeepMind News
Martin Fowler
Martin Fowler
N
News | PayPal Newsroom
P
Privacy & Cybersecurity Law Blog
MyScale Blog
MyScale Blog
G
Google Developers Blog
V
V2EX
V
Visual Studio Blog
P
Privacy International News Feed
Google Online Security Blog
Google Online Security Blog
Microsoft Azure Blog
Microsoft Azure Blog
宝玉的分享
宝玉的分享
博客园 - 【当耐特】
L
LINUX DO - 热门话题
MongoDB | Blog
MongoDB | Blog
腾讯CDC
J
Java Code Geeks
The Last Watchdog
The Last Watchdog
L
Lohrmann on Cybersecurity
Cyberwarzone
Cyberwarzone
博客园 - 聂微东
Webroot Blog
Webroot Blog
S
Secure Thoughts

博客园 - 幸福的菜菜

windows下使用ACME申请SSL证书的办法 ElementPlus Radio 实现双击取消选择的效果 SqlSugar : date绑定到XX失败,可以试着换一个类型,或者使用ORM自定义类型实现 VisualStudio Debug模式突然变慢 Visual Stadio 编译提示 The BaseOutputPath/OutputPath property is not set for project ... winform绘图与前端canvas绘图效率对比 node-sass编译不通过, 提示 “checking for Python executable "python2" in the PATH” c# async await的使用方式及为啥要用它 winform 实现对usb热拔插的监听 Laravel The only supported ciphers are AES-128-CBC and AES-256-CBC with the correct key lengths Wampserver 配置端口可访问服务 git credential for windows 总是弹出的问题 如何用B表的数据,更新A表的值 WampServer部署https 服务的过程 PHP 命名空间冲突解决方式 Windows下 Docker 简单部署 Django应用 C#实现后台格式化U盘的功能 Winform 实现断点续传的思路及代码 WAMPServer ServerName has syntax error 的问题(阿里云服务器上)
Windows10 LTSC版本 无法访问网络中部分的共享文件夹
幸福的菜菜 · 2024-12-10 · via 博客园 - 幸福的菜菜

问题:Windows电脑在网络中部分 共享文件夹可以访问,而另一部分电脑则无法访问,IP也能正常Ping通 。但是访问的时候始终会提示错误码 :0x80004005   或者 0x80070035

解决方法:

1、修改注册表
打开注册表,路径[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters],将"AllowInsecureGuestAuth"的值修改为“1”

 当然也可以使用以下批处理命令进行

@echo off
set KEY_NAME="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters"
set VALUE_NAME=AllowInsecureGuestAuth

REM 检查键是否存在,如果不存在则创建
reg query %KEY_NAME% >nul 2>&1
if %ERRORLEVEL% neq 0 (
    echo Creating key %KEY_NAME%
    reg add %KEY_NAME% /f >nul
)

REM 检查值是否存在,如果不存在则创建并设置为 1,如果存在则更新为 1
reg query %KEY_NAME% /v %VALUE_NAME% >nul 2>&1
if %ERRORLEVEL% neq 0 (
    echo Creating value %VALUE_NAME% and setting it to 1
    reg add %KEY_NAME% /v %VALUE_NAME% /t REG_DWORD /d 1 /f >nul
) else (
    echo Updating value %VALUE_NAME% to 1
    reg add %KEY_NAME% /v %VALUE_NAME% /t REG_DWORD /d 1 /f >nul
)

echo Operation completed.

保存成文件后,管理员权限执行即可。

2、修改本地策略组编辑  

组策略编辑器 - 管理模版-网络-Lanman工作站-启用不安全的来宾登录

原因:

  后来经过观察,能访问到的共享文件夹Windows 版本均为 Windows 10 LTSC版本,而家庭版本共享出来的文件夹则无法访问。

       应该是系统的安全限制