File tree Expand file tree Collapse file tree
articles/storage/file-sync Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -194,15 +194,25 @@ The following table shows the interoperability state of NTFS file system feature
194194> Invoke-StorageSyncFileRecall -FilePath <path>
195195> compact /U /S <filepath>
196196> ```
197+ > Using NTFS compression on tiered files can cause significant performance impact. It is recommended not to use cloud tiering with compressed files.
198+ >
199+ > You can uncompress files using the [compact](/windows-server/administration/windows-commands/compact) command.
197200>
198- > On Windows Server 2019 or later, the **compact** command skips tiered files, so you must recall the file first before uncompressing it.
199- >
200- > If the file needs to be tiered again afterward, run:
201+ > On Windows Server 2019 or later, the **compact** command skips tiered files, so you must recall the file first before uncompressing it.
202+ > ```powershell
203+ > Import-Module "C:\Program Files\Azure\StorageSyncAgent\StorageSync.Management.ServerCmdlets.dll"
204+ > Invoke-StorageSyncFileRecall -FilePath <path>
205+ > compact /U /S <filepath>
206+ > ```
201207>
208+ > If file recalls lead to low disk space issues, you should wait for background tiering to kick in and tier the file back before recalling more files or tier the file back
209+ > after uncompressing by running the cmdlet
202210> ```powershell
211+ > Import-Module "C:\Program Files\Azure\StorageSyncAgent\StorageSync.Management.ServerCmdlets.dll"
203212> Invoke-StorageSyncCloudTiering -Path <path>
204213> ```
205214
215+
206216<a id="files-skipped"></a>Azure File Sync also skips certain temporary files and system folders:
207217
208218| File/folder | Note |
You can’t perform that action at this time.
0 commit comments