Add installation guides for OpenClaw and uv package manager

This commit is contained in:
2026-04-28 12:56:13 +08:00
parent 2830a10a1b
commit b13cd32d6a
34 changed files with 0 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# Check Windows Credentials for Halo Token
$output = & cmdkey /list 2>&1
# Find halo-related credentials
$haloCreds = $output | Select-String -Pattern "halo" -CaseSensitive:$false
if ($haloCreds) {
Write-Host "Found Halo credentials:"
$haloCreds
} else {
Write-Host "No Halo credentials found"
}
# Show all generic credentials
Write-Host "`nAll credentials:"
$output