version170-migrate-settings.ps1 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # This script migrates Cryptomator settings for all local users on Windows in case the users uses custom directories as mountpoint
  2. # See also https://github.com/cryptomator/cryptomator/pull/2654.
  3. #
  4. # TODO: This script should be evaluated in a yearly interval if it is still needed and if not, should be removed
  5. #
  6. #Requires -RunAsAdministrator
  7. #Get all active, local user profiles
  8. $profileList = 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList'
  9. $localUsers = Get-LocalUser | Where-Object {$_.Enabled} | ForEach-Object { $_.Name}
  10. Get-ChildItem $profileList | ForEach-Object { $_.GetValue("ProfileImagePath") } | Where-Object {
  11. $profileNameMatches = ($_ | Select-String -Pattern "\\([^\\]+)$").Matches
  12. if($profileNameMatches.Count -eq 1) {
  13. #check if the last path part is contained in the local user name list
  14. #otherwise do not touch it
  15. return $localUsers.Contains($profileNameMatches[0].Groups[1].Value)
  16. } else {
  17. return $false;
  18. }
  19. } | ForEach-Object {
  20. $settingsPath = "$_\AppData\Roaming\Cryptomator\settings.json"
  21. if(!(Test-Path -Path $settingsPath -PathType Leaf)) {
  22. #No settings file, nothing to do.
  23. return;
  24. }
  25. $settings = Get-Content -Path $settingsPath | ConvertFrom-Json
  26. if($settings.preferredVolumeImpl -ne "FUSE") {
  27. #Fuse not used, nothing to do
  28. return;
  29. }
  30. #check if customMountPoints are used
  31. $atLeastOneCustomPath = $false;
  32. foreach ($vault in $settings.directories){
  33. $atLeastOneCustomPath = $atLeastOneCustomPath -or ($vault.useCustomMountPath -eq "True")
  34. }
  35. #if so, use WinFsp Local Drive
  36. if( $atLeastOneCustomPath ) {
  37. Add-Member -Force -InputObject $settings -Name "mountService" -Value "org.cryptomator.frontend.fuse.mount.WinFspMountProvider" -MemberType NoteProperty
  38. $newSettings = $settings | Select-Object * -ExcludeProperty "preferredVolumeImpl"
  39. ConvertTo-Json $newSettings | Set-Content -Path $settingsPath
  40. }
  41. }