[[Describe this app and list installation sources]]
Replace local settings with synchronized cloud settings
Invoke-Command { $cloudFolder = "D:\Nextcloud\Config\Youtube-dl" $localFolder = "$env:AppData\youtube-dl" $syncItems = @( 'config.txt' ) if (-not ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { throw "Administrator privilege required to run this script" } # Replace local files with references to synchronized cloud files $syncItems | foreach { New-Item -ItemType SymbolicLink -Path "$localFolder\$_" -Target "$cloudFolder\$_" -Force } # Keep all cloud files that can be pointed to always available Set-Location $cloudFolder -ErrorAction Stop @( Get-Item $syncItems Get-Item $syncItems | where PSIsContainer | Get-ChildItem -Recurse ) | foreach { $_.Attributes = $_.Attributes -bor 0x080000 } }