瀏覽代碼

prototpye for powershell script to be executed after installation

Armin Schrenk 2 年之前
父節點
當前提交
a106b04c7e
共有 1 個文件被更改,包括 12 次插入0 次删除
  1. 12 0
      dist/win/contrib/170FuseMigration.ps1

+ 12 - 0
dist/win/contrib/170FuseMigration.ps1

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