mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-17 22:07:20 +00:00
- 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
20 lines
906 B
PowerShell
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
|