Last active
          October 20, 2025 00:02 
        
      - 
      
- 
        Save wumb0/306f97dc8376c6f53b9f9865f60b4fb5 to your computer and use it in GitHub Desktop. 
Revisions
- 
        wumb0 revised this gist Sep 18, 2024 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewingThis file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -326,11 +326,14 @@ function Expand-Psf { # unpack the patch! Write-Host "Manifest expanded. Unpacking patch" $hasher = [Security.Cryptography.HashAlgorithm]::Create("sha256") $tot = $xml.Container.Files.ChildNodes.Count $n = 0 $xml.Container.Files.ChildNodes | ForEach-Object { $offset = [int]$_.Delta.Source.offset $length = [int]$_.Delta.Source.length $expectedhash = $_.Delta.Source.Hash.value.ToUpper() $fn = $_.name Write-Progress -PercentComplete ($n/$tot*100) -Status "Unpacking patch $PsfFile" -Activity "$fn" $psf.Seek($offset, [IO.SeekOrigin]::Begin) | Out-Null $patch = $psfreader.ReadBytes($length) $path = Join-Path $OutPath $fn @@ -344,6 +347,7 @@ function Expand-Psf { Write-Error Unexpected hash } Set-Content -Encoding Byte -Path $path $patch $n += 1 } $psf.Close() } 
- 
        wumb0 revised this gist Sep 18, 2024 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewingThis file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -239,7 +239,6 @@ function Expand-Psf { $env:PATH = $env:PATH + ";$OutPath" $deltadll = "UpdateCompression.dll" $ucpath = (Join-Path $OutPath $deltadll) if (-not (Test-Path $ucpath)) { # we need to get and import UpdateCompression if ($null -ne $DesktopDeploymentCab) { 
- 
        wumb0 revised this gist Sep 18, 2024 . 1 changed file with 20 additions and 11 deletions.There are no files selected for viewingThis file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -229,23 +229,30 @@ function Expand-Psf { param ( [string]$DesktopDeploymentCab, [string]$PsfFile, [string]$OutPath, [switch]$Verbose = $false ) mkdir -Force $OutPath | Out-Null $OutPath = Resolve-Path $OutPath $oldpath = $env:PATH $env:PATH = $env:PATH + ";$OutPath" $deltadll = "UpdateCompression.dll" $ucpath = (Join-Path $OutPath $deltadll) echo $env:PATH if (-not (Test-Path $ucpath)) { # we need to get and import UpdateCompression if ($null -ne $DesktopDeploymentCab) { expand -F:UpdateCompression.dll $ddcab $OutPath | Out-Null } if (-not (Test-Path $ucpath)) { $uri = "https://msdl.microsoft.com/download/symbols/updatecompression.dll/2F47410A82000/updatecompression.dll" Write-Warning "UpdateCompression.dll was not present in $DesktopDeploymentCab" Write-Host "Downloading a copy from $uri" Invoke-WebRequest -UseBasicParsing -Uri $uri -OutFile $ucpath } } try { [FFI.UpdateCompression] | Out-Null } catch { Add-Type -Name UpdateCompression -Namespace FFI -MemberDefinition @" [StructLayout(LayoutKind.Sequential)] public struct DELTA_INPUT { @@ -292,7 +299,7 @@ function Expand-Psf { $Source.uSize = [IntPtr]::Zero $Delta.lpcStart = $md_buffer $Delta.uSize = [IntPtr]$manifest_len $res = [FFI.UpdateCompression]::ApplyDeltaB( 0, [ref]$Source, @@ -306,7 +313,7 @@ function Expand-Psf { Write-Error "ApplyDeltaB failed to expand the PSF metadata" return } # create the manifest from the output bytes $buf = [byte[]]::new($Target.uSize) [Runtime.InteropServices.Marshal]::Copy($Target.lpStart, $buf, 0, $Target.uSize) | Out-Null @@ -319,7 +326,6 @@ function Expand-Psf { # unpack the patch! Write-Host "Manifest expanded. Unpacking patch" $hasher = [Security.Cryptography.HashAlgorithm]::Create("sha256") $xml.Container.Files.ChildNodes | ForEach-Object { $offset = [int]$_.Delta.Source.offset @@ -328,7 +334,10 @@ function Expand-Psf { $fn = $_.name $psf.Seek($offset, [IO.SeekOrigin]::Begin) | Out-Null $patch = $psfreader.ReadBytes($length) $path = Join-Path $OutPath $fn if ($Verbose) { Write-Host "Unpacking $fn from offset $offset with length $length to $path" } mkdir -Force (Split-Path -Parent -Path $path) | Out-Null # check the hash $shasum = [BitConverter]::ToString($hasher.ComputeHash($patch)).Replace("-", "").ToUpper() 
- 
        wumb0 revised this gist Sep 16, 2024 . 1 changed file with 203 additions and 66 deletions.There are no files selected for viewingThis file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,36 +1,26 @@ <# ____ _ _ | _ \ __ _| |_ ___| |__ | |_) / _` | __/ __| '_ \ | __/ (_| | || (__| | | | |_| \__,_|\__\___|_| |_| _____ _ _ | ____|_ _| |_ _ __ __ _ ___| |_ | _| \ \/ / __| '__/ _` |/ __| __| | |___ > <| |_| | | (_| | (__| |_ |_____/_/\_\\__|_| \__,_|\___|\__| __ ___ _ _ \ \ / / || || | \ \ / /| || || |_ \ V / | ||__ _| \_/ |_(_) |_| ================ PATCHEXTRACT.PS1 ================= Version 1.4 Microsoft MSU Patch Extraction and Patch Organization Utility by Greg Linares (@Laughing_Mantis) and wumb0 This Powershell script will extract a Microsoft MSU update file and then organize the output of extracted files and folders. @@ -166,6 +156,10 @@ March 24, 2021 - Version 1.32 - Unofficial update by wumb0 * Simplify recursive CAB extraction into a loop * Add option to skip the SSU CAB * Silenced a lot of output September 15, 2024 - Version 1.4 - wumb0 * Updated to handle MSWIM and PSF cabs * Replaced the ASCII art ;) * This version should be backward compatible with most (all?) older MSU patch types. Let me know if I broke something. ========== @@ -179,9 +173,6 @@ Feedback is encouraged and I will be likely releasing new scripts and tools and #> Param ( @@ -217,32 +208,137 @@ Param Clear-Host $ASCIIART = @" ____ _ _ | _ \ __ _| |_ ___| |__ | |_) / _` | __/ __| '_ \ | __/ (_| | || (__| | | | |_| \__,_|\__\___|_| |_| _____ _ _ | ____|_ _| |_ _ __ __ _ ___| |_ | _| \ \/ / __| '__/ _` |/ __| __| | |___ > <| |_| | | (_| | (__| |_ |_____/_/\_\\__|_| \__,_|\___|\__| __ ___ _ _ \ \ / / || || | \ \ / /| || || |_ \ V / | ||__ _| \_/ |_(_) |_| "@ function Expand-Psf { param ( [string]$DesktopDeploymentCab, [string]$PsfFile, [string]$OutPath ) $oldpath = $env:PATH try { [FFI.UpdateCompression] | Out-Null } catch { # we need to get and import UpdateCompression expand -F:UpdateCompression.dll $ddcab $OutPath | Out-Null $deltadll = "UpdateCompression.dll" $ucpath = (Join-Path $OutPath UpdateCompression.dll) if (-not (Test-Path $ucpath)) { $uri = "https://msdl.microsoft.com/download/symbols/updatecompression.dll/2F47410A82000/updatecompression.dll" Write-Warning "UpdateCompression.dll was not present in $DesktopDeploymentCab" Write-Host "Downloading a copy from $uri" Invoke-WebRequest -UseBasicParsing -Uri $uri -OutFile $ucpath } $env:PATH = $env:PATH + ";$OutPath" Add-Type -Name UpdateCompression -Namespace FFI -MemberDefinition @" [StructLayout(LayoutKind.Sequential)] public struct DELTA_INPUT { public IntPtr lpcStart; public IntPtr uSize; public int Editable; } [StructLayout(LayoutKind.Sequential)] public struct DELTA_OUTPUT { public IntPtr lpStart; public IntPtr uSize; } [DllImport("$deltadll", SetLastError=true)] public static extern bool ApplyDeltaB( int ApplyFlags, ref DELTA_INPUT Source, ref DELTA_INPUT Delta, ref DELTA_OUTPUT lpTarget ); [DllImport("$deltadll")] public static extern bool DeltaFree(IntPtr Buffer); "@ } # get the manifest delta from the PSF file $psf = [IO.File]::OpenRead((Resolve-Path $psffile)) $psf.Seek(4, [IO.SeekOrigin]::Begin) | Out-Null $psfreader = [IO.BinaryReader]$psf $manifest_len = [bitconverter]::ToUInt32($psfreader.ReadBytes(4), 0) # skip PSTREAM header, read the PA30 delta $psf.Seek(0x80, [IO.SeekOrigin]::Begin) | Out-Null $manifest_delta = $psfreader.ReadBytes($manifest_len) $md_buffer = [Runtime.InteropServices.Marshal]::AllocHGlobal($manifest_len) [Runtime.InteropServices.Marshal]::Copy($manifest_delta, 0, $md_buffer, $manifest_len) | Out-Null # expand the manifest $Source = New-Object FFI.UpdateCompression+DELTA_INPUT $Delta = New-Object FFI.UpdateCompression+DELTA_INPUT $Target = New-Object FFI.UpdateCompression+DELTA_OUTPUT $Source.lpcStart = [IntPtr]::Zero $Source.uSize = [IntPtr]::Zero $Delta.lpcStart = $md_buffer $Delta.uSize = [IntPtr]$manifest_len $res = [FFI.UpdateCompression]::ApplyDeltaB( 0, [ref]$Source, [ref]$Delta, [ref]$Target ) # dll was loaded, can restore path $env:PATH = $oldpath [Runtime.InteropServices.Marshal]::FreeHGlobal($md_buffer) | Out-Null if ($res -eq 0) { Write-Error "ApplyDeltaB failed to expand the PSF metadata" return } # create the manifest from the output bytes $buf = [byte[]]::new($Target.uSize) [Runtime.InteropServices.Marshal]::Copy($Target.lpStart, $buf, 0, $Target.uSize) | Out-Null [FFI.UpdateCompression]::DeltaFree($Target.lpStart) | Out-Null $xml = [xml]([Text.Encoding]::UTF8.GetString($buf)) if ($xml.Container.type -ne "PSF") { Write-Error "Invalid PSF manifest XML" return } # unpack the patch! Write-Host "Manifest expanded. Unpacking patch" mkdir -Force $outpath | Out-Null $hasher = [Security.Cryptography.HashAlgorithm]::Create("sha256") $xml.Container.Files.ChildNodes | ForEach-Object { $offset = [int]$_.Delta.Source.offset $length = [int]$_.Delta.Source.length $expectedhash = $_.Delta.Source.Hash.value.ToUpper() $fn = $_.name $psf.Seek($offset, [IO.SeekOrigin]::Begin) | Out-Null $patch = $psfreader.ReadBytes($length) $path = Join-Path $outpath $fn mkdir -Force (Split-Path -Parent -Path $path) | Out-Null # check the hash $shasum = [BitConverter]::ToString($hasher.ComputeHash($patch)).Replace("-", "").ToUpper() if ($shasum -ne $expectedhash) { Write-Error Unexpected hash } Set-Content -Encoding Byte -Path $path $patch } $psf.Close() } Write-Host $ASCIIART -ForegroundColor Magenta Start-Sleep -s 3 @@ -380,7 +476,6 @@ if (!(Test-Path $PATCHCAB -pathType Container)) $SYSPATH = Join-Path -path (get-item env:\windir).Value -ChildPath "system32" $EXPAND = Join-Path -path $SYSPATH -ChildPath "expand.exe" @@ -389,30 +484,72 @@ if (!(Test-Path $EXPAND)) Throw ("Error: Cannot find 'Expand.exe' in the $SYSPATH folder.") } # check for WIM or CAB $msu = [IO.File]::OpenRead($PATCH) $msureader = [IO.BinaryReader]$msu $mswim = [Text.Encoding]::UTF8.GetBytes("MSWIM") $sig = $msureader.ReadBytes(5) # powershell array comparisons are broken if ([string]$sig -eq [string]$mswim) { # win11 24h2 patch. new format, who dis? Write-Host "Extracting WIM MSU (this requires an administrator shell!)" # get all of the files out of the WIM # this requires elevation $dirname = [IO.Path]::GetRandomFileName() New-Item -ItemType Directory -Path $dirname try { Mount-WindowsImage -Path $dirname -ImagePath $PATCH -Index 1 -ReadOnly Copy-Item -Recurse -Path "$dirname\*" -Destination $PATH Dismount-WindowsImage -Path $dirname -Discard } catch { Write-Error "Failed to extract patch from WIM: $($PSItem.ToString())" exit } finally { Remove-Item $dirname } } else { $CMD = $EXPAND $ARG = '-F:* ' + '"' + $PATCH + '" ' + '"' + $PATH + '"' Write-Host "Executing the following command: $EXPAND $ARG" -ForegroundColor Cyan # https://github.com/PowerShell/PowerShell/issues/5576 iex("$EXPAND $ARG")# | Out-Null") } $CABS = Get-Childitem -Path $PATH -Filter *.cab $PSF = Get-ChildItem -Path $PATH -Filter *.psf if ($PSF) { $ddcab = $CABS | Where-Object { $_.Name -eq "DesktopDeployment.cab" } if (-not $ddcab) { Write-Error "Detected a PSF patch, but could not find DesktopDeployment.cab" exit } $psffile = Get-ChildItem -Path $PATH -Filter *.psf try { Expand-Psf -DesktopDeploymentCab $ddcab -PsfFile (Join-Path $PATH $psffile) -OutPath $PATH } catch { Write-Warning "Failed to expand PSF, proceeding with CAB expansion: $($PSItem.ToString())" } # TODO: expand the WIM file? don't really need it... } # some patches have BOTH a PSF and CAB files while ($null -ne $CABS) { foreach ($CAB in $CABS) { Write-Host "CAB File: $CAB" -ForegroundColor White if (!($CAB.Name -eq "WSUSSCAN.cab" -or ($NOSSU -and $CAB.Name -like "SSU-*" -or $CAB.Name -like "DesktopDeployment*"))) { $CAB = Join-Path -path $PATH -ChildPath $CAB Write-Host "Main-Cab: $CAB" -ForegroundColor Magenta if (Test-Path $CAB) { # add unique characters to the filename to prevent name collisions $hash = Get-FileHash -Algorithm MD5 $CAB $newcab = $CAB.SubString(0, $CAB.LastIndexOf(".")) + "-" + $HASH.Hash.SubString(0, 5) + ".cab" Move-Item $CAB $newcab -Force -ErrorAction SilentlyContinue $CAB = $newcab $ARG = '-F:* ' + '"' + $CAB + '" ' + '"' + $PATH + '"' Write-Host "Executing the following command: $EXPAND $ARG" -ForegroundColor Cyan iex("$EXPAND $ARG | Out-Null") | Out-Null @@ -574,14 +711,14 @@ foreach ($JunkFile in $Junkfiles) try { if ($JunkFile.Extension -in (".manifest", ".cat", ".mum", ".wim")) { Move-Item $JunkFile.FullName $PATCHJUNK -Force -ErrorAction SilentlyContinue #Write-Host "Moving $JunkFile to $PATCHJUNK" -ForegroundColor Magenta Continue } if ($JunkFile.Extension -in (".cab", ".xml", ".msu", ".pkgProperties.txt", ".ini", ".psf")) { Move-Item $JunkFile.FullName $PATCHCAB -Force -ErrorAction SilentlyContinue #Write-Host "Moving $JunkFile to $PATCHCAB" -ForegroundColor Cyan 
- 
        wumb0 revised this gist Mar 24, 2021 . 1 changed file with 56 additions and 57 deletions.There are no files selected for viewingThis file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -19,7 +19,7 @@ __ __ _ __ /\ \/\ \ /' \ /'__`\ \ \ \ \ \ /\_, \ /\_\L\ \ \ \ \ \ \\/_/\ \ \/_/_\_<_ \ \ \_/ \ \ \ \ __ /\ \L\ \ @@ -56,6 +56,8 @@ C:\PATCHES\MS15-XXX\PRE - original patch, cabs and xml files from the extraction -MSIL - MSIL .NET binary patched files ***New in Version 1.1*** -NOSSU - Exclude the SSU CAB in the extraction process Directories will automagically be organized into filename-version to remove garbage filler folder names @@ -131,6 +133,8 @@ ARGUMENTS Specifies the folder name within $PATH to store extraction xml and original patch msu and cab files example: -BIN bin - NOSSU <SWITCH> [OPTIONAL] [DEFAULT=$false] Excludes the servicing stack CAB from extraction (if present) ================ VERSION HISTORY @@ -157,6 +161,11 @@ March 15, 2017 - Version 1.3 Released August 23, 2020 - Version 1.31 - Unofficial update by wumb0 * Fixed extracting command (Start-Process -> iex). There's a bug in powershell that breaks Start-Process with arg lists that have literal quotes * Supressed output of expand.exe commands to cut down on script runtimes March 24, 2021 - Version 1.32 - Unofficial update by wumb0 * Update script to handle this month's update to the patch packaging format * Simplify recursive CAB extraction into a loop * Add option to skip the SSU CAB * Silenced a lot of output ========== @@ -199,7 +208,10 @@ Param [string]$JUNK = "JUNK", [Parameter(ValueFromPipelineByPropertyName = $true)] [string]$BIN = "PATCH", [Parameter(ValueFromPipelineByPropertyName = $true)] [switch]$NOSSU = $false ) @@ -385,93 +397,80 @@ Write-Host "Executing the following command: $EXPAND $ARG" -ForegroundColor Cyan iex("$EXPAND $ARG | Out-Null") | Out-Null $CABS = Get-Childitem -Path $PATH -Filter *.cab while ($null -ne $CABS) { foreach ($CAB in $CABS) { Write-Host "CAB File: $CAB" -ForegroundColor White if (!($CAB.Name -eq "WSUSSCAN.cab" -or ($NOSSU -and $CAB.Name -like "SSU-*"))) { $CAB = Join-Path -path $PATH -ChildPath $CAB Write-Host "Main-Cab: $CAB" -ForegroundColor Magenta if (Test-Path $CAB) { # add unique characters to the filename to prevent name collisions $hash = Get-FileHash -Algorithm MD5 $CAB $NEWCAB = $CAB.SubString(0, $CAB.LastIndexOf(".")) + "-" + $HASH.Hash.SubString(0, 5) + ".cab" Move-Item $CAB $NEWCAB -Force -ErrorAction SilentlyContinue $CAB = $NEWCAB $ARG = '-F:* ' + '"' + $CAB + '" ' + '"' + $PATH + '"' Write-Host "Executing the following command: $EXPAND $ARG" -ForegroundColor Cyan iex("$EXPAND $ARG | Out-Null") | Out-Null Write-Host "Moving $CAB to $PATCHCAB" -ForegroundColor Magenta Move-Item $CAB $PATCHCAB -Force -ErrorAction SilentlyContinue } else { Throw "Error: Patch .CAB File [$CAB] could not be located. Patch Extraction failed - please send notification of this error to @Laughing_Mantis." } } else { Write-Host "Moving $CAB to $PATCHCAB" -ForegroundColor Magenta Move-Item $CAB $PATCHCAB -Force -ErrorAction SilentlyContinue } } $CABS = Get-Childitem -Path $NEW -Filter *.cab } $PATCHFolders = Get-ChildItem -Path $PATH -Force -ErrorAction SilentlyContinue | where {$_.Attributes -eq 'Directory'} Write-Host "Sorting patch files into the correct folders" foreach ($folder in $PATCHFolders) { if ($folder.Name.Contains(".resources_")) { Move-Item $folder.FullName $PATCHJUNK -Force #Write-Host "Moving $folder to $PATCHJUNK" -ForegroundColor Cyan Continue } else { if ($folder.Name.StartsWith("x86_")) { Move-Item $folder.FullName $PATCHx86 -Force #Write-Host "Moving $folder to $PATCHx86" -ForegroundColor Cyan Continue } if ($folder.Name.StartsWith("amd64_")) { Move-Item $folder.FullName $PATCHx64 -Force #Write-Host "Moving $folder to $PATCHx64" -ForegroundColor Cyan Continue } if ($folder.Name.StartsWith("wow64_")) { Move-Item $folder.FullName $PATCHWOW -Force #Write-Host "Moving $folder to $PATCHWOW" -ForegroundColor Cyan Continue } if ($folder.Name.StartsWith("msil_")) { Move-Item $folder.FullName $PATCHMSIL -Force #Write-Host "Moving $folder to $PATCHMSIL" -ForegroundColor Cyan Continue } } @@ -489,7 +488,7 @@ foreach ($folder in $PATCHFolders) $newname = $newfolder.Split("_")[0] $version = $newfolder.Split("_")[2] $newname = $newname + "_" + $version #Write-Host ("Renaming $folder to $newname") -ForegroundColor Magenta Rename-Item -path $folder.FullName -newName ($newname) } elseif ($folder -like "x86_*") @@ -498,7 +497,7 @@ foreach ($folder in $PATCHFolders) $newname = $newfolder.Split("_")[0] $version = $newfolder.Split("_")[2] $newname = $newname + "_" + $version #Write-Host ("Renaming $folder to $newname") -ForegroundColor Cyan Rename-Item -path $folder.FullName -newName ($newname) } } @@ -513,7 +512,7 @@ foreach ($folder in $PATCHFolders) $newname = $newfolder.Split("_")[0] $version = $newfolder.Split("_")[2] $newname = $newname + "_" + $version #Write-Host ("Renaming $folder to $newname") -ForegroundColor Magenta Rename-Item -path $folder.FullName -newName ($newname) } elseif ($folder -like "amd64_*") @@ -522,7 +521,7 @@ foreach ($folder in $PATCHFolders) $newname = $newfolder.Split("_")[0] $version = $newfolder.Split("_")[2] $newname = $newname + "_" + $version #Write-Host ("Renaming $folder to $newname") -ForegroundColor Cyan Rename-Item -path $folder.FullName -newName ($newname) } } @@ -537,7 +536,7 @@ foreach ($folder in $PATCHFolders) $newname = $newfolder.Split("_")[0] $version = $newfolder.Split("_")[2] $newname = $newname + "_" + $version #Write-Host ("Renaming $folder to $newname") -ForegroundColor Magenta Rename-Item -path $folder.FullName -newName ($newname) } elseif ($folder -like "wow64_*") @@ -546,7 +545,7 @@ foreach ($folder in $PATCHFolders) $newname = $newfolder.Split("_")[0] $version = $newfolder.Split("_")[2] $newname = $newname + "_" + $version #Write-Host ("Renaming $folder to $newname") -ForegroundColor Cyan Rename-Item -path $folder.FullName -newName ($newname) } } @@ -561,7 +560,7 @@ foreach ($folder in $PATCHFolders) $newname = $newfolder.Split("_")[0] $version = $newfolder.Split("_")[2] $newname = $newname + "_" + $version #Write-Host ("Renaming $folder to $newname") -ForegroundColor Cyan Rename-Item -path $folder.FullName -newName ($newname) } @@ -578,20 +577,20 @@ foreach ($JunkFile in $Junkfiles) if (($JunkFile.Name.EndsWith(".manifest")) -or ($JunkFile.Name.EndsWith(".cat")) -or ($JunkFile.Name.EndsWith(".mum"))) { Move-Item $JunkFile.FullName $PATCHJUNK -Force -ErrorAction SilentlyContinue #Write-Host "Moving $JunkFile to $PATCHJUNK" -ForegroundColor Magenta Continue } if (($JunkFile.Name.EndsWith(".cab")) -or ($JunkFile.Name.EndsWith(".xml")) -or ($JunkFile.Name.EndsWith(".msu")) -or ($JunkFile.Name.EndsWith("pkgProperties.txt")) -or ($JunkFile.Name.EndsWith("ini"))) { Move-Item $JunkFile.FullName $PATCHCAB -Force -ErrorAction SilentlyContinue #Write-Host "Moving $JunkFile to $PATCHCAB" -ForegroundColor Cyan Continue } if ($JunkFile.Name -eq "patch") { Move-Item $JunkFile.FullName $PATCHCAB -Force -ErrorAction SilentlyContinue #Write-Host "Moving $JunkFile to $PATCHCAB" -ForegroundColor Magenta Continue } } 
- 
        wumb0 revised this gist Aug 23, 2020 . 1 changed file with 7 additions and 73 deletions.There are no files selected for viewingThis file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -154,7 +154,9 @@ March 15, 2017 - Version 1.3 Released * Cleaned up some awful code that I must have been on some amazing substances when I wrote * Spent several hours making a rad ASCII Logo * Most importantly fixed the Sub-cab auto-extraction method that Microsoft introduced late 2016 August 23, 2020 - Version 1.31 - Unofficial update by wumb0 * Fixed extracting command (Start-Process -> iex). There's a bug in powershell that breaks Start-Process with arg lists that have literal quotes * Supressed output of expand.exe commands to cut down on script runtimes ========== @@ -379,9 +381,8 @@ $ARG = '-F:* ' + '"' + $PATCH + '" ' + '"' + $PATH + '"' Write-Host "Executing the following command: $EXPAND $ARG" -ForegroundColor Cyan # https://github.com/PowerShell/PowerShell/issues/5576 iex("$EXPAND $ARG | Out-Null") | Out-Null $CABS = Get-Childitem -Path $PATH -Filter *.cab foreach ($CAB in $CABS) @@ -395,7 +396,7 @@ foreach ($CAB in $CABS) { $ARG = '-F:* ' + '"' + $CAB + '" ' + '"' + $PATH + '"' Write-Host "Executing the following command: $EXPAND $ARG" -ForegroundColor Cyan iex("$EXPAND $ARG | Out-Null") | Out-Null Write-Host "Moving $CAB to $PATCHCAB" -ForegroundColor Magenta Move-Item $CAB $PATCHCAB -Force -ErrorAction SilentlyContinue } @@ -423,7 +424,7 @@ foreach ($CAB in $CABS) { $ARG = '-F:* ' + '"' + $CAB + '" ' + '"' + $PATH + '"' Write-Host "Executing the following command: $EXPAND $ARG" -ForegroundColor Cyan iex("$EXPAND $ARG | Out-Null") | Out-Null Write-Host "Moving $CAB to $PATCHCAB" -ForegroundColor Magenta Move-Item $CAB $PATCHCAB -Force -ErrorAction SilentlyContinue } @@ -434,73 +435,6 @@ foreach ($CAB in $CABS) } } $PATCHFolders = Get-ChildItem -Path $PATH -Force -ErrorAction SilentlyContinue | where {$_.Attributes -eq 'Directory'} foreach ($folder in $PATCHFolders) 
- 
        wumb0 created this gist Aug 23, 2020 .There are no files selected for viewingThis file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,668 @@ <# ____ ______ ______ ____ __ __ /\ _`\ /\ _ \ /\__ _\/\ _`\ /\ \/\ \ \ \ \L\ \\ \ \L\ \\/_/\ \/\ \ \/\_\\ \ \_\ \ \ \ ,__/ \ \ __ \ \ \ \ \ \ \/_/_\ \ _ \ \ \ \/ \ \ \/\ \ \ \ \ \ \ \L\ \\ \ \ \ \ \ \_\ \ \_\ \_\ \ \_\ \ \____/ \ \_\ \_\ \/_/ \/_/\/_/ \/_/ \/___/ \/_/\/_/ ____ __ __ ______ ____ ______ ____ ______ /\ _`\ /\ \ /\ \ /\__ _\/\ _`\ /\ _ \ /\ _`\ /\__ _\ \ \ \L\_\\ `\`\/'/'\/_/\ \/\ \ \L\ \\ \ \L\ \\ \ \/\_\\/_/\ \/ \ \ _\L `\/ > < \ \ \ \ \ , / \ \ __ \\ \ \/_/_ \ \ \ \ \ \L\ \ \/'/\`\ \ \ \ \ \ \\ \ \ \ \/\ \\ \ \L\ \ \ \ \ \ \____/ /\_\\ \_\ \ \_\ \ \_\ \_\\ \_\ \_\\ \____/ \ \_\ \/___/ \/_/ \/_/ \/_/ \/_/\/ / \/_/\/_/ \/___/ \/_/ __ __ _ __ /\ \/\ \ /' \ /'__`\ \ \ \ \ \ /\_, \ /\_\L\ \ \ \ \ \ \\/_/\ \ \/_/_\_<_ \ \ \_/ \ \ \ \ __ /\ \L\ \ \ `\___/ \ \_\/\_\\ \____/ `\/__/ \/_/\/_/ \/___/ ================ PATCHEXTRACT.PS1 ================= Version 1.3 Microsoft MSU Patch Extraction and Patch Organization Utility by Greg Linares (@Laughing_Mantis) This Powershell script will extract a Microsoft MSU update file and then organize the output of extracted files and folders. Organization of the output files is based on the patch's files and will organize them based on their archicture (x86, x64, or wow64) as well as their content-type, ie: resource and catalog files will be moved to a JUNK subfolder and patch binaries and index files will goto a PATCH folder. This script was developed in order to aid reverse engineers in quickly organizing patches so they can be binary diffed faster and easier. This was especially developed with the new bulk Microsoft Kernel patches in mind. Example output folder structure ouput would be similar to this: C:\PATCHES\MS15-XXX\PRE -x86 - x86 Binary patched files -x64 - x64 binary patched files -WOW64 - syswow64 binary patched files -JUNK - resource, catalog, mum, and other non-binary based patched files -PATCH - original patch, cabs and xml files from the extraction -MSIL - MSIL .NET binary patched files ***New in Version 1.1*** Directories will automagically be organized into filename-version to remove garbage filler folder names ============= REQUIREMENTS ============= 'expand.exe' to be present in %WINDIR%\SYSTEM32 (it is by default) - It will execute this file @ the current users permissions A valid Microsoft MSU patch file to extract (PATCH variable) Directory and File write/creation permissions to the PATH folder specified ======= USAGE ======= Powershell -ExecutionPolicy Bypass -File PatchExtract.ps1 -Patch C:\Patches\Windows6.1-KB3088195-x64.msu -Path C:\Patches\MS15-XXX\POST\ This would extract the patch file C:\Patches\Windows6.1-KB3088195-x64.msu to the folder C:\Patches\MS15-XXX\POST\. It will then create all the sub organization folders within C:\Patches\MS15-XXX\POST\ folder. (Note: the optional Powershell parameters '-ExecutionPolicy Bypass' is necessary in some environments to overcome Powershell execution restrictions) ========== ARGUMENTS ========== -PATCH <STRING:Filename> [REQUIRED] [NO DEFAULT] Specifies the MSU file that will be extracted to the specified PATH folder and then organized into the x86, x64, WOW, JUNK, and BIN folders specified Extract command will be "expand -F:* <PATCH> <PATH>" Non MSU files have not been tested however if the extraction does not generate a CAB file of the same name (indicator of successful extraction of MSU files) the script assumes extraction failed. -PATH <STRING:FolderPath> [REQUIRED] [NO DEFAULT] Specified the folder that the PATCH file will be extracted and organized into If the specified folders does not exist yet, the user will be prompted if they want to create it. Relative paths '.\POST' can be used but it has not extensively been tested. ***New in Version 1.1*** The -PATH variable may be now omitted to expand to current directory -x86 <STRING:Foldername> [OPTIONAL] [DEFAULT='x86'] Specifies the folder name within $PATH to store x86 patch binaries example: -x86 32bit -x64 <STRING:Foldername> [OPTIONAL] [DEFAULT='x64'] Specifies the folder name within $PATH to store x64 patch binaries example: -x64 64bit -WOW <STRING:Foldername> [OPTIONAL] [DEFAULT='WOW64'] Specifies the folder name within $PATH to store wow64 type patch binaries example: -WOW sysWOW64 -MSIL <STRING:Foldername> [OPTIONAL] [DEFAULT='MSIL'] *** New in Version 1.1*** Specifies the folder name within $PATH to store .NET type patch binaries example: -MSIL DOTNET -JUNK <STRING:Foldername> [OPTIONAL] [DEFAULT='JUNK'] Specifies the folder name within $PATH to store resource, catalog, and other generally useless for diffing patch binaries example: -JUNK res -BIN <STRING:Foldername> [OPTIONAL] [DEFAULT='PATCH'] Specifies the folder name within $PATH to store extraction xml and original patch msu and cab files example: -BIN bin ================ VERSION HISTORY ================ I originally wrote this as an ugly batch file sometime between 2014 and 2015 as a way to organize folders but it was incomplete and buggy Oct 15, 2015 - Initial Public Release 1.0 Oct 20, 2016 - Version 1.1 Released * Bug fixes handling new naming format for patch .cab files * Added the ability to auto-extract to the same directory as current PATCH * filtered output directory name format to aid in bindiffing Oct 20, 2016 - Version 1.2 Released * Bug fixes handling MSIL renaming issues and collisions in renameing patch folders Nov 7, 2016 - Version 1.25 Released * Added hack to handle subsequent CAB files Microsoft Added in Windows 10 Cumulative Patches - will make a better way to handle this in 1.3 March 15, 2017 - Version 1.3 Released * Color Change to sweet vaporwave retro 80s colors * Cleaned up some awful code that I must have been on some amazing substances when I wrote * Spent several hours making a rad ASCII Logo * Most importantly fixed the Sub-cab auto-extraction method that Microsoft introduced late 2016 ========== LICENSING ========== This script is provided free as beer. It probably has some bugs and coding issues, however if you like it or find it useful please give me a shout out on twitter @Laughing_Mantis. Feedback is encouraged and I will be likely releasing new scripts and tools and training in the future if it is welcome. -GLin #> Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [ValidateNotNullOrEmpty()] [string]$PATCH = "", [Parameter(ValueFromPipelineByPropertyName = $true)] [string]$PATH = "", [Parameter(ValueFromPipelineByPropertyName = $true)] [string]$x86 = "x86", [Parameter(ValueFromPipelineByPropertyName = $true)] [string]$x64 = "x64", [Parameter(ValueFromPipelineByPropertyName = $true)] [string]$WOW = "WOW64", [Parameter(ValueFromPipelineByPropertyName = $true)] [string]$MSIL = "MSIL", [Parameter(ValueFromPipelineByPropertyName = $true)] [string]$JUNK = "JUNK", [Parameter(ValueFromPipelineByPropertyName = $true)] [string]$BIN = "PATCH" ) Clear-Host $ASCIIART = @" ____ ______ ______ ____ __ __ /\ _`\ /\ _ \ /\__ _\/\ _`\ /\ \/\ \ \ \ \L\ \\ \ \L\ \\/_/\ \/\ \ \/\_\\ \ \_\ \ \ \ ,__/ \ \ __ \ \ \ \ \ \ \/_/_\ \ _ \ \ \ \/ \ \ \/\ \ \ \ \ \ \ \L\ \\ \ \ \ \ \ \_\ \ \_\ \_\ \ \_\ \ \____/ \ \_\ \_\ \/_/ \/_/\/_/ \/_/ \/___/ \/_/\/_/ ____ __ __ ______ ____ ______ ____ ______ /\ _`\ /\ \ /\ \ /\__ _\/\ _`\ /\ _ \ /\ _`\ /\__ _\ \ \ \L\_\\ `\`\/'/'\/_/\ \/\ \ \L\ \\ \ \L\ \\ \ \/\_\\/_/\ \/ \ \ _\L `\/ > < \ \ \ \ \ , / \ \ __ \\ \ \/_/_ \ \ \ \ \ \L\ \ \/'/\`\ \ \ \ \ \ \\ \ \ \ \/\ \\ \ \L\ \ \ \ \ \ \____/ /\_\\ \_\ \ \_\ \ \_\ \_\\ \_\ \_\\ \____/ \ \_\ \/___/ \/_/ \/_/ \/_/ \/_/\/ / \/_/\/_/ \/___/ \/_/ __ __ _ __ /\ \/\ \ /' \ /'__`\ \ \ \ \ \ /\_, \ /\_\L\ \ \ \ \ \ \\/_/\ \ \/_/_\_<_ \ \ \_/ \ \ \ \ __ /\ \L\ \ \ `\___/ \ \_\/\_\\ \____/ `\/__/ \/_/\/_/ \/___/ "@ Write-Host $ASCIIART -ForegroundColor Magenta Start-Sleep -s 3 if ($PATCH -eq "") { Throw ("Error: No PATCH file specified. Specify a valid Microsoft MSU Patch with the -PATCH argument") } if ((Split-Path $PATCH -Parent) -eq "") { # First look in current working directory for the relative filename $CurrentDir = $(get-location).Path; $PATCH = $CurrentDir + "\" + $PATCH # if that doesnt work we look in the current script directory (less likely) # but hey we tried if (!(Test-Path $PATCH)) { $scriptDir = Split-Path -Path $MyInvocation.MyCommand.Definition -Parent $PATCH = $scriptDir + "\" + $PATCH } } if (!(Test-Path $PATCH)) { Throw ("Error: Specified PATCH file ($PATCH) does not exist. Specify a valid Microsoft MSU Patch file with the -PATCH argument.") } if ($PATH -eq "") { $PATH = Split-Path $PATCH -Parent write-Host ("PATH = $PATH") -ForegroundColor White Write-Host ("No PATH folder specified. Will extract to $PATH folder.") -ForegroundColor White } #Bug Fix (Resolve-Path Error if invalid path was specified before the path was created) if (!($PATCH.ToUpper().EndsWith(".MSU"))) { Do { $Attempt = Read-Host ("Warning: Specified PATCH file ($PATCH) is not a MSU file type. Do you still want to attempt extraction? [Y] or [N]") } Until ('Y', 'y', 'n', 'N' -ccontains $Attempt) if ($Attempt.ToUpper() -eq 'N') { Write-Host ("Exiting...") -ForegroundColor DarkMagenta Exit } } if (!(Test-Path $PATH)) { Do { $Attempt = Read-Host ("Warning: Specified PATH folder ($PATH) does not exist. Do you want to create it? [Y] or [N]") } Until ('Y', 'y', 'n', 'N' -ccontains $Attempt) if ($Attempt.ToUpper() -eq 'N') { Write-Host ("Exiting...") -ForegroundColor DarkMagenta Exit } else { New-Item $PATH -Force -ItemType Directory Write-Host "Created $PATH Folder" -ForegroundColor Cyan } } $PATCH = Resolve-Path $PATCH $PATH = Resolve-Path $PATH Write-Host "Patch to Extract: $PATCH" -ForegroundColor Magenta Write-Host "Extraction Path: $PATH" -ForegroundColor Magenta Write-Host "x86 File Storage Folder Name: $x86" -ForegroundColor Magenta Write-Host "x64 File Storage Folder Name: $x64" -ForegroundColor Magenta Write-Host "WOW64 File Storage Folder Name: $WOW" -ForegroundColor Magenta Write-Host "MSIL File Storage Folder Name: $MSIL" -ForegroundColor Magenta Write-Host "Junk File Storage Folder Name: $JUNK" -ForegroundColor Magenta Write-Host "Orignal Patch File Storage Folder Name: $BIN" -ForegroundColor Magenta $PATCHx86 = Join-Path -path $PATH -ChildPath $x86 $PATCHx64 = Join-Path -path $PATH -ChildPath $x64 $PATCHWOW = Join-Path -path $PATH -ChildPath $WOW $PATCHMSIL = Join-Path -path $PATH -ChildPath $MSIL $PATCHJUNK = Join-Path -path $PATH -ChildPath $JUNK $PATCHCAB = Join-Path -path $PATH -ChildPath $BIN if (!(Test-Path $PATCHx86 -pathType Container)) { New-Item $PATCHx86 -Force -ItemType Directory Write-Host "Making $PATCHx86 Folder" -ForegroundColor Cyan } if (!(Test-Path $PATCHx64 -pathType Container)) { New-Item $PATCHx64 -Force -ItemType Directory Write-Host "Making $PATCHx64 Folder" -ForegroundColor Cyan } if (!(Test-Path $PATCHWOW -pathType Container)) { New-Item $PATCHWOW -Force -ItemType Directory Write-Host "Making $PATCHWOW Folder" -ForegroundColor Cyan } if (!(Test-Path $PATCHMSIL -pathType Container)) { New-Item $PATCHMSIL -Force -ItemType Directory Write-Host "Making $PATCHMSIL Folder" -ForegroundColor Cyan } if (!(Test-Path $PATCHJUNK -pathType Container)) { New-Item $PATCHJUNK -Force -ItemType Directory Write-Host "Making $PATCHJUNK Folder" -ForegroundColor Cyan } if (!(Test-Path $PATCHCAB -pathType Container)) { New-Item $PATCHCAB -Force -ItemType Directory Write-Host "Making $PATCHCAB Folder" -ForegroundColor Cyan } $SYSPATH = Join-Path -path (get-item env:\windir).Value -ChildPath "system32" $EXPAND = Join-Path -path $SYSPATH -ChildPath "expand.exe" if (!(Test-Path $EXPAND)) { Throw ("Error: Cannot find 'Expand.exe' in the $SYSPATH folder.") } $ARG = '-F:* ' + '"' + $PATCH + '" ' + '"' + $PATH + '"' Write-Host "Executing the following command: $EXPAND $ARG" -ForegroundColor Cyan Start-Process -File $EXPAND -ArgumentList $ARG -Wait $CABS = Get-Childitem -Path $PATH -Filter *.cab foreach ($CAB in $CABS) { Write-Host "CAB File: $CAB" -ForegroundColor White if (!($CAB.Name -eq "WSUSSCAN.cab")) { $CAB = Join-Path -path $PATH -ChildPath $CAB Write-Host "Main-Cab: $CAB" -ForegroundColor Magenta if (Test-Path $CAB) { $ARG = '-F:* ' + '"' + $CAB + '" ' + '"' + $PATH + '"' Write-Host "Executing the following command: $EXPAND $ARG" -ForegroundColor Cyan Start-Process -File $EXPAND -ArgumentList $ARG -Wait Write-Host "Moving $CAB to $PATCHCAB" -ForegroundColor Magenta Move-Item $CAB $PATCHCAB -Force -ErrorAction SilentlyContinue } else { Throw "Error: Patch .CAB File [$CAB] could not be located. Patch Extraction failed - please send notification of this error to @Laughing_Mantis." } } else { Write-Host "Moving $CAB to $PATCHCAB" -ForegroundColor Magenta Move-Item $CAB $PATCHCAB -Force -ErrorAction SilentlyContinue } } #Now for subcabs we do it again $CABS = Get-Childitem -Path $PATH -Filter *.cab foreach ($CAB in $CABS) { if (!($CAB.Name -eq "WSUSSCAN.cab")) { $CAB = Join-Path -path $PATH -ChildPath $CAB Write-Host "Sub-Cab: $CAB" -ForegroundColor Magenta if (Test-Path $CAB) { $ARG = '-F:* ' + '"' + $CAB + '" ' + '"' + $PATH + '"' Write-Host "Executing the following command: $EXPAND $ARG" -ForegroundColor Cyan Start-Process -File $EXPAND -ArgumentList $ARG -Wait Write-Host "Moving $CAB to $PATCHCAB" -ForegroundColor Magenta Move-Item $CAB $PATCHCAB -Force -ErrorAction SilentlyContinue } else { Throw "Error: Patch .CAB File [$CAB] could not be located. Patch Extraction failed - please send notification of this error to @Laughing_Mantis." } } } <# Microsoft newer patches do not follow this formula - likely an attempt to prevent auto extraction so we need to handle scenarios where patch cab does not have the same name as the container MSP #> <# Nov 7th, 2016 - Looks like Microsoft does not like my tool and added new sub-CABs to make automagic patch extraction not work. Adding an additional check to look for sub-CABs incase this becomes the new normal. This is an absolute hack that will likely be bypassed next month. #> <# 1.3 Fix - Microsoft likes to put multiple .Cabs in a single MSU now.... So we will look in the extracted contents and run extract on ALL cabs found except for WSUSSCAN.cab - I feel like Microsoft might put specific patches in sub cabs that might cause extracted files to overwrite each other - ie cab 1 might have binaries for specific build while cab 2 has same binary/folder name for different build...fingers crossed this doesnt happen Also Greetz to all the Microsoft Patch Team members #> ### I must have been on some amazing substances when i wrote this next part.....utterly ridiculous ### yeah this is garbage let me rewrite this for 1.3 <# GARBAGE CODE BELOW SAVED FOR SHAMING PURPOSES $patchCABID = "cab_" + $patchCAB + "_*.cab" $CAB = (Get-ChildItem -Path $PATH -Filter $PatchCABID | Select-Object -First 1) Write-Host "Debug CAB = $CAB" if (Test-Path $CAB) { $flag = "1" } while ($flag -eq "1") { Write-Host "Subsequent CAB $CAB detected - attempting beta extraction" -ForegroundColor Yellow $ARG = '-F:* ' + '"' + $CAB + '" ' + '"' + $PATH + '"' Write-Host "Executing the following command: $EXPAND $ARG" -ForegroundColor Cyan Start-Process -File $EXPAND -ArgumentList $ARG -Wait $patchCAB++ $patchCABID = "cab_" + $patchCAB + "_*.cab" try { $CAB = (Get-ChildItem -Path $PATH -Filter $PatchCABID | Select-Object -First 1) if ((!(Test-Path $CAB)) -or ($CAB -eq "")) { $flag = "0" } } catch { $flag = "0" } } #> $PATCHFolders = Get-ChildItem -Path $PATH -Force -ErrorAction SilentlyContinue | where {$_.Attributes -eq 'Directory'} foreach ($folder in $PATCHFolders) { if ($folder.Name.Contains(".resources_")) { Move-Item $folder.FullName $PATCHJUNK -Force Write-Host "Moving $folder to $PATCHJUNK" -ForegroundColor Cyan Continue } else { if ($folder.Name.StartsWith("x86_")) { Move-Item $folder.FullName $PATCHx86 -Force Write-Host "Moving $folder to $PATCHx86" -ForegroundColor Cyan Continue } if ($folder.Name.StartsWith("amd64_")) { Move-Item $folder.FullName $PATCHx64 -Force Write-Host "Moving $folder to $PATCHx64" -ForegroundColor Cyan Continue } if ($folder.Name.StartsWith("wow64_")) { Move-Item $folder.FullName $PATCHWOW -Force Write-Host "Moving $folder to $PATCHWOW" -ForegroundColor Cyan Continue } if ($folder.Name.StartsWith("msil_")) { Move-Item $folder.FullName $PATCHMSIL -Force Write-Host "Moving $folder to $PATCHMSIL" -ForegroundColor Cyan Continue } } } <# PRETTY BINDIFF OUTPUT - changes folder names from x86-microsoft-windows-filename-hash-version-garbage to filename-version #> $PATCHFolders = Get-ChildItem -Path $PATCHx86 -Force -ErrorAction SilentlyContinue | where {$_.Attributes -eq 'Directory'} foreach ($folder in $PATCHFolders) { if ($folder -like "x86_microsoft-windows-*") { $newfolder = $folder.Name.Replace("x86_microsoft-windows-", "") $newname = $newfolder.Split("_")[0] $version = $newfolder.Split("_")[2] $newname = $newname + "_" + $version Write-Host ("Renaming $folder to $newname") -ForegroundColor Magenta Rename-Item -path $folder.FullName -newName ($newname) } elseif ($folder -like "x86_*") { $newfolder = $folder.Name.Replace("x86_", "") $newname = $newfolder.Split("_")[0] $version = $newfolder.Split("_")[2] $newname = $newname + "_" + $version Write-Host ("Renaming $folder to $newname") -ForegroundColor Cyan Rename-Item -path $folder.FullName -newName ($newname) } } $PATCHFolders = Get-ChildItem -Path $PATCHx64 -Force -ErrorAction SilentlyContinue | where {$_.Attributes -eq 'Directory'} foreach ($folder in $PATCHFolders) { if ($folder -like "amd64_microsoft-windows-*") { $newfolder = $folder.Name.Replace("amd64_microsoft-windows-", "") $newname = $newfolder.Split("_")[0] $version = $newfolder.Split("_")[2] $newname = $newname + "_" + $version Write-Host ("Renaming $folder to $newname") -ForegroundColor Magenta Rename-Item -path $folder.FullName -newName ($newname) } elseif ($folder -like "amd64_*") { $newfolder = $folder.Name.Replace("amd64_", "") $newname = $newfolder.Split("_")[0] $version = $newfolder.Split("_")[2] $newname = $newname + "_" + $version Write-Host ("Renaming $folder to $newname") -ForegroundColor Cyan Rename-Item -path $folder.FullName -newName ($newname) } } $PATCHFolders = Get-ChildItem -Path $PATCHWOW -Force -ErrorAction SilentlyContinue | where {$_.Attributes -eq 'Directory'} foreach ($folder in $PATCHFolders) { if ($folder -like "wow64_microsoft-windows-*") { $newfolder = $folder.Name.Replace("wow64_microsoft-windows-", "") $newname = $newfolder.Split("_")[0] $version = $newfolder.Split("_")[2] $newname = $newname + "_" + $version Write-Host ("Renaming $folder to $newname") -ForegroundColor Magenta Rename-Item -path $folder.FullName -newName ($newname) } elseif ($folder -like "wow64_*") { $newfolder = $folder.Name.Replace("wow64_", "") $newname = $newfolder.Split("_")[0] $version = $newfolder.Split("_")[2] $newname = $newname + "_" + $version Write-Host ("Renaming $folder to $newname") -ForegroundColor Cyan Rename-Item -path $folder.FullName -newName ($newname) } } $PATCHFolders = Get-ChildItem -Path $PATCHMSIL -Force -ErrorAction SilentlyContinue | where {$_.Attributes -eq 'Directory'} foreach ($folder in $PATCHFolders) { if ($folder -like "msil_*") { $newfolder = $folder.Name.Replace("msil_", "") $newname = $newfolder.Split("_")[0] $version = $newfolder.Split("_")[2] $newname = $newname + "_" + $version Write-Host ("Renaming $folder to $newname") -ForegroundColor Cyan Rename-Item -path $folder.FullName -newName ($newname) } } $Junkfiles = Get-ChildItem -Path $PATH -Force -ErrorAction SilentlyContinue foreach ($JunkFile in $Junkfiles) { try { if (($JunkFile.Name.EndsWith(".manifest")) -or ($JunkFile.Name.EndsWith(".cat")) -or ($JunkFile.Name.EndsWith(".mum"))) { Move-Item $JunkFile.FullName $PATCHJUNK -Force -ErrorAction SilentlyContinue Write-Host "Moving $JunkFile to $PATCHJUNK" -ForegroundColor Magenta Continue } if (($JunkFile.Name.EndsWith(".cab")) -or ($JunkFile.Name.EndsWith(".xml")) -or ($JunkFile.Name.EndsWith(".msu")) -or ($JunkFile.Name.EndsWith("pkgProperties.txt"))) { Move-Item $JunkFile.FullName $PATCHCAB -Force -ErrorAction SilentlyContinue Write-Host "Moving $JunkFile to $PATCHCAB" -ForegroundColor Cyan Continue } if ($JunkFile.Name -eq "patch") { Move-Item $JunkFile.FullName $PATCHCAB -Force -ErrorAction SilentlyContinue Write-Host "Moving $JunkFile to $PATCHCAB" -ForegroundColor Magenta Continue } } catch { Write-Host "Error Processing ($JunkFile.Fullname)" -ForegroundColor DarkMagenta } }