Skip to content

Commit 76bf077

Browse files
authored
update
1 parent 737a2ea commit 76bf077

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

support/windows-server/networking/slow-smb-file-transfer.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Slow SMB files transfer speed
33
description: Learn how to resolve transfer performance issues with SMB files by using the provided troubleshooting steps.
4-
ms.date: 02/12/2025
4+
ms.date: 02/13/2025
55
manager: dcscontentpm
66
audience: itpro
77
ms.topic: troubleshooting
@@ -154,6 +154,16 @@ You should verify that the Office and SMB binaries are up-to-date, and then test
154154
Set-SmbServerConfiguration -EnableLeasing $false
155155
```
156156

157+
Alternatively, to disable leasing on a per-share basis in Windows Server 2019 and later versions, run the following cmdlet:
158+
159+
> [!IMPORTANT]
160+
> We recommend testing with `LeasingMode` set to `Shared` first. This allows some leasing while disabling the portions that typically cause slowness. Use `None` only as a final option.
161+
162+
```powershell
163+
Set-SmbShare -Name <ShareName> -LeasingMode [Shared|None]
164+
```
165+
157166
2. This works immediately on a new SMB client connection. There's no need to restart the SMB server or client machines.
158167

159168
To avoid this issue, you can also replicate the file to a local file server. For more information, see [saving Office documents to a network server is slow when using EFS](/office/troubleshoot/office/saving-file-to-network-server-slow).
169+
t

0 commit comments

Comments
 (0)