Add installation guides for OpenClaw and uv package manager
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user