共用方式為


腳本:擷取 .msu 和 .cab 檔案

本文提供如何使用PowerShell腳本來擷取 .msu.cab 檔案至指定目錄的指南。 腳本的設計訴求是處理各種案例、確保順暢擷取,甚至視需要建立目錄。

腳本概觀

文稿需要兩個必要參數:

  • .cab 檔案的.msu檔案路徑
  • 將儲存擷取檔案的目的地路徑

腳本會檢查指定的檔案和目的地目錄是否存在,並在不存在時建立目的地目錄。 然後,腳本會繼續擷取 或 .cab 檔案的內容.msu,並處理程式中的巢狀.cab檔案。

使用腳本的逐步指示

  1. 準備腳本。

    將提供的PowerShell腳本複製到 .ps1 檔案中(例如 Extract-MSUAndCAB.ps1)。

  2. 執行指令碼。

    以管理員身分開啟 PowerShell。 移至儲存文稿的目錄。 在此範例中,執行 來執行 腳本 .\Extract-MSUAndCAB.ps1

  3. 提供檔案路徑。

    出現提示時,請提供您要擷取之 .msu.cab 檔案的路徑。 指定應儲存擷取檔案的目的地路徑。

以下是使用範例︰

powershell -ExecutionPolicy Bypass -File .\Extract-MSUAndCAB.ps1 -filePath "C:\<path>\<yourfile>.msu" -destinationPath "C:\<path>\<destination>"

重要

任何Microsoft標準支援程式或服務都不支援此範例腳本。

範例腳本會提供 AS IS,但沒有任何種類的擔保。 Microsoft進一步否認所有默示擔保,包括不受限制,任何適銷性或適合特定用途的默示擔保。

範例腳本和檔使用或效能所造成的整個風險仍與您一起。 在任何情況下,不得Microsoft,其作者或參與建立、製作或傳遞腳本的任何其他人,對任何損害負責(包括但不限於商業利潤損失、業務中斷、商業中斷、商業資訊遺失或其他金錢損失)因使用或無法使用範例腳本或檔而造成的損害。 即使Microsoft已被告知這種損害的可能性。

param (
    [Parameter(Mandatory = $true)]
    [string]$filePath,
    [Parameter(Mandatory = $true)]
    [string]$destinationPath
)

# Display the note to the user
Write-Host "==========================="
Write-Host
Write-Host -ForegroundColor Yellow "Note: Do not close any Windows opened by this script until it is completed."
Write-Host
Write-Host "==========================="
Write-Host


# Remove quotes if present
$filePath = $filePath -replace '"', ''
$destinationPath = $destinationPath -replace '"', ''

# Trim trailing backslash if present
$destinationPath = $destinationPath.TrimEnd('\')

if (-not (Test-Path $filePath -PathType Leaf)) {
    Write-Host "The specified file does not exist: $filePath"
    return
}

if (-not (Test-Path $destinationPath -PathType Container)) {
    Write-Host "Creating destination directory: $destinationPath"
    New-Item -Path $destinationPath -ItemType Directory | Out-Null
}

$processedFiles = @{}

function Extract-File ($file, $destination) {
    Write-Host "Extracting $file to $destination"
    Start-Process -FilePath "cmd.exe" -ArgumentList "/c expand.exe `"$file`" -f:* `"$destination`" > nul 2>&1" -Wait -WindowStyle Hidden | Out-Null
    $processedFiles[$file] = $true
    Write-Host "Extraction completed for $file"
}

function Rename-File ($file) {
    if (Test-Path -Path $file) {
        $newName = [System.IO.Path]::GetFileNameWithoutExtension($file) + "_" + [System.Guid]::NewGuid().ToString("N") + [System.IO.Path]::GetExtension($file)
        $newPath = Join-Path -Path ([System.IO.Path]::GetDirectoryName($file)) -ChildPath $newName
        Write-Host "Renaming $file to $newPath"
        Rename-Item -Path $file -NewName $newPath
        Write-Host "Renamed $file to $newPath"
        return $newPath
    }
    Write-Host "File $file does not exist for renaming"
    return $null
}

function Process-CabFiles ($directory) {
    while ($true) {
        $cabFiles = Get-ChildItem -Path $directory -Filter "*.cab" -File | Where-Object { -not $processedFiles[$_.FullName] -and $_.Name -ne "wsusscan.cab" }

        if ($cabFiles.Count -eq 0) {
            Write-Host "No more CAB files found in $directory"
            break
        }

        foreach ($cabFile in $cabFiles) {
            Write-Host "Processing CAB file $($cabFile.FullName)"
            $cabFilePath = Rename-File -file $cabFile.FullName

            if ($cabFilePath -ne $null) {
                Extract-File -file $cabFilePath -destination $directory
                Process-CabFiles -directory $directory
            }
        }
    }
}

try {
    # Initial extraction
    if ($filePath.EndsWith(".msu")) {
        Write-Host "Extracting .msu file to: $destinationPath"
        Extract-File -file $filePath -destination $destinationPath
    } elseif ($filePath.EndsWith(".cab")) {
        Write-Host "Extracting .cab file to: $destinationPath"
        Extract-File -file $filePath -destination $destinationPath
    } else {
        Write-Host "The specified file is not a .msu or .cab file: $filePath"
        return
    }

    # Process all .cab files recursively
    Write-Host "Starting to process CAB files in $destinationPath"
    Process-CabFiles -directory $destinationPath
}
catch {
    Write-Host "An error occurred while extracting the file. Error: $_"
    return
}

Write-Host "Extraction completed. Files are located in $destinationPath"
return $destinationPath