powershelldeeb25a2 | 1 | $ErrorActionPreference = "Stop" |
| 2 | $src = Join-Path $PSScriptRoot "settings.localappdata.example.toml" |
| 3 | $destDir = Join-Path $env:LOCALAPPDATA "CascadeIDE" |
| 4 | $dest = Join-Path $destDir "settings.toml" |
| 5 | New-Item -ItemType Directory -Force -Path $destDir | Out-Null |
| 6 | Copy-Item -LiteralPath $src -Destination $dest -Force |
| 7 | Write-Host "Copied to $dest" |
| 8 | Get-Item $dest | Format-List FullName, LastWriteTime, Length |
| 9 | Get-Content $dest -TotalCount 6 |
| 10 | |
View only · write via MCP/CIDE