Skip to content

Commit bc7ae96

Browse files
authored
Merge pull request #297188 from MicrosoftDocs/main
3/28 11:00 AM IST Publish
2 parents 729c580 + ab06b84 commit bc7ae96

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

articles/storage/files/storage-files-faq.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,23 @@ ms.topic: faq
125125
**Can I save to an Azure file share using a printer or scanner?**
126126

127127
Azure Files only supports Windows, Linux, and macOS. Accessing an Azure file share directly from a printer or scanner isn't supported. However, if you're already using Azure File Sync, you can print or scan to your Windows file server and then sync the file to an Azure file share.
128-
128+
129+
* <a id="alternate-data-streams"></a>
130+
**Does Azure Files support alternate data streams?**
131+
132+
Azure Files doesn't support [alternate data streams](https://learn.microsoft.com/openspecs/windows_protocols/ms-fscc/e2b19412-a925-4360-b009-86e3b8a020c8). Transferring data via SMB will throw a **file already exists** message if an alternate data stream is found. You can check alternate streams by using the following PowerShell command:
133+
134+
```powershell
135+
get-item <file path+name> -Stream *
136+
```
137+
138+
If more than one stream is shown, you can remove them using the following PowerShell command:
139+
140+
```powershell
141+
Remove-Item <file path+name> -Stream *`
142+
```
143+
144+
Please note that alternate data streams are preserved on-premises when Azure File Sync is used.
129145

130146
### Identity-based authentication
131147

0 commit comments

Comments
 (0)