| 88 | === Mountain Duck Sync-Cache uses a lot of disk space on the system drive on Windows === |
| 89 | The Sync-Cache which is usually located in `%LocalAppData%\Cyberduck\Cache` can grow to a significant size. To change the writing location of the offline Cache you have to follow these steps: |
| 90 | * Quit Mountain Duck. |
| 91 | * Create the directory which should be the new writing target for the Cache. |
| 92 | * In ''CMD'': `mkdir "<target Drive Letter>:\Mountain Duck\Cache"` |
| 93 | * In ''PowerShell'': `new-item -type directory -path "<target Drive Letter>:\Mountain Duck" -name Cache` |
| 94 | * Remove the original Cache directory in `%LocalAppData%\Cyberduck`. |
| 95 | * Create a link between the old location and the new location. |
| 96 | * In ''elevated CMD'': `mklink "%LocalAppData%\Cyberduck\Cache" "<target Drive Letter>:\Mountain Duck\Cache"` |
| 97 | * In ''elevated PowerShell'': `new-item -type symboliclink -target "<target Drive Letter>:\Mountain Duck\Cache" -path "$env:LocalAppData\Cyberduck\Cache"` |
| 98 | |