53 lines
1.8 KiB
PowerShell
53 lines
1.8 KiB
PowerShell
$sourceFile = "C:\Dev2012\BUILDERS\jboss-eap-8.0\standalone\deployments\adv360-ear.ear"
|
|
$destinationPath = ".\arm_am-unpacked"
|
|
|
|
# Remove destination directory if it exists
|
|
if (Test-Path -Path $destinationPath) {
|
|
Remove-Item -Path $destinationPath -Recurse -Force
|
|
Write-Host "Removed existing directory: $destinationPath"
|
|
}
|
|
|
|
# Create destination directory
|
|
if (-not (Test-Path -Path $destinationPath)) {
|
|
New-Item -ItemType Directory -Path $destinationPath -Force
|
|
}
|
|
|
|
# Rename .ear to .zip temporarily to use Expand-Archive
|
|
$tempZipPath = $sourceFile -replace '\.ear$', '.zip'
|
|
Copy-Item -Path $sourceFile -Destination $tempZipPath
|
|
|
|
# Extract the EAR contents
|
|
Expand-Archive -Path $tempZipPath -DestinationPath $destinationPath -Force
|
|
|
|
# Clean up temporary zip file
|
|
Remove-Item -Path $tempZipPath
|
|
|
|
Write-Host "EAR file extracted to $destinationPath"
|
|
|
|
# Function to unpack archive files (war/ejb)
|
|
function Expand-JavaArchive {
|
|
param (
|
|
[string]$archivePath,
|
|
[string]$destinationPath
|
|
)
|
|
|
|
$tempZipPath = $archivePath -replace '\.(war|jar)$', '.zip'
|
|
Copy-Item -Path $archivePath -Destination $tempZipPath
|
|
|
|
# Create extraction directory
|
|
if (-not (Test-Path -Path $destinationPath)) {
|
|
New-Item -ItemType Directory -Path $destinationPath -Force
|
|
}
|
|
|
|
# Extract contents
|
|
Expand-Archive -Path $tempZipPath -DestinationPath $destinationPath -Force
|
|
Remove-Item -Path $tempZipPath
|
|
Write-Host "Extracted $archivePath to $destinationPath"
|
|
}
|
|
|
|
# Find and extract WAR and EJB files
|
|
Get-ChildItem -Path $destinationPath -Recurse -Include "*.war", "*-ejbx.jar" | ForEach-Object {
|
|
$extractPath = Join-Path (Split-Path -Parent $_.FullName) ($_.BaseName + "_unpacked")
|
|
Expand-JavaArchive -archivePath $_.FullName -destinationPath $extractPath
|
|
}
|