Answers for "change icloud drive difauilt folders"

0

change icloud drive difauilt folders

setup icloud drive
to drive D archive and drive F icloud drive


check symbolic links power shell

Get-ChildItem -Path "C:\Windows\","c:\","$env:USERPROFILE" -Force |Where-Object { $_.LinkType -ne $null -or $_.Attributes -match "ReparsePoint" -and $_.Length -eq 1 } |ft FullName,Attributes,Linktype,Target

Stop Icloud Services and then quickly remove this 2 directories
cmd /c rmdir /Q /S "C:\Users\michaell\iCloud Drive Archive"
cmd /c rmdir /Q /S "C:\Users\xxxxx\iCloudDrive"
cmd /c rmdir /Q /S "C:\Users\xxxxx\iCloud Drive"

after removal quicly create 2 synlinks to this deirectories

cmd /c mklink /J "C:\Users\xxxxx\iCloud Drive Archive" "D:\iCloud Drive Archive"
cmd /c mklink /J "C:\Users\xxxxx\iCloudDrive" "F:\iCloudDrive"

start icloud
Posted by: Guest on July-30-2021

Browse Popular Code Answers by Language