170FuseMigration.ps1 706 B

123456789101112
  1. $settingsPath = 'C:\Users\Arbeit\AppData\Roaming\Cryptomator-Dev\settings1617.json'
  2. $settings = Get-Content -Path $settingsPath | ConvertFrom-Json
  3. $atLeastOneCustomPath = $false;
  4. foreach ($vault in $settings.directories){
  5. $atLeastOneCustomPath = $atLeastOneCustomPath -or ($vault.useCustomMountPath -eq "True")
  6. }
  7. if( $atLeastOneCustomPath -and ($settings.preferredVolumeImpl -eq "FUSE")) {
  8. Add-Member -Force -InputObject $settings -Name "mountService" -Value "org.cryptomator.frontend.fuse.mount.WinFspMountProvider" -MemberType NoteProperty
  9. $newSettings = $settings | Select-Object * -ExcludeProperty "preferredVolumeImpl"
  10. ConvertTo-Json $newSettings | Set-Content -Path $settingsPath
  11. }