1234567891011121314151617181920212223242526272829303132333435 |
- $profileList = 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList'
- Get-ChildItem $profileList | ForEach-Object {
- $profilePath = $_.GetValue("ProfileImagePath")
- $settingsPath = "$profilePath\AppData\Roaming\Cryptomator\settings.json"
- if(!(Test-Path -Path $settingsPath -PathType Leaf)) {
-
- return;
- }
- $settings = Get-Content -Path $settingsPath | ConvertFrom-Json
- if($settings.preferredVolumeImpl -ne "FUSE") {
-
- return;
- }
-
- $atLeastOneCustomPath = $false;
- foreach ($vault in $settings.directories){
- $atLeastOneCustomPath = $atLeastOneCustomPath -or ($vault.useCustomMountPath -eq "True")
- }
-
- if( $atLeastOneCustomPath ) {
- 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
- }
- }
|