AeThex-OS/find_fw.ps1
MrPiglr b3c308b2c8 Add functional marketplace modules, bottom nav bar, root terminal, arcade games
- ModuleManager: Central tracking for installed marketplace modules
- DataAnalyzerWidget: Real-time CPU/RAM/Battery/Storage widget (unlocked by Data Analyzer module)
- BottomNavBar: Navigation bar for Projects/Chat/Marketplace/Settings
- RootShell: Real root command execution utility
- TerminalActivity: Full root shell with neofetch, sysinfo, real Linux commands
- Terminal Pro module: Adds aliases (ll, la, h), command history
- ArcadeActivity + SnakeGame: Pixel Arcade module unlocks retro games
- fade_in/fade_out animations for smooth transitions
2026-02-18 22:03:50 -07:00

20 lines
906 B
PowerShell

# Find where the firmware files actually ended up
Write-Host "Checking all drive letters..."
foreach ($letter in 'A','B','C','D','E','F','G') {
$path = "${letter}:\"
try {
if (Test-Path $path) {
$items = Get-ChildItem $path -ErrorAction Stop | Select-Object -First 5
Write-Host "${letter}: exists - $($items.Count) items"
foreach ($i in $items) { Write-Host " $($i.Name) $($i.Length)" }
}
} catch {
Write-Host "${letter}: error - $($_.Exception.Message)"
}
}
# Also search for the extracted file
Write-Host ""
Write-Host "Searching for vortex*.zip..."
Get-ChildItem -Path C:\ -Filter "vortex*" -Recurse -ErrorAction SilentlyContinue -Depth 2 | Select-Object FullName, Length | Format-List
Get-ChildItem -Path C:\ -Filter "firmware*" -Recurse -ErrorAction SilentlyContinue -Depth 2 | Select-Object FullName, Length | Format-List