新增 停用 SMB 服務

2026-03-11 14:57:07 +00:00
parent 34bf9e9db5
commit 233634d475

@@ -0,0 +1,17 @@
# 停用 SMB1 功能
```powershell
Disable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol
```
# 停用開機啟動
```powershell
Set-Service -Name LanmanServer -StartupType Disabled
```
# 立即停止服務
```powershell
Stop-Service -Name LanmanServer -Force
```