# 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