Samples/3-Package.ps1
# Create a .intunewin file $SourceFolder = "C:\IntuneWin32App\Source\7-zip" $SetupFile = "7z1900-x64.msi" $OutputFolder = "C:\IntuneWin32App\Output" New-IntuneWin32AppPackage -SourceFolder $SourceFolder -SetupFile $SetupFile -OutputFolder $OutputFolder -Verbose # Add the -Force switch to overwrite existing .intunewin file in output folder New-IntuneWin32AppPackage -SourceFolder $SourceFolder -SetupFile $SetupFile -OutputFolder $OutputFolder -Force -Verbose # Read metadata from .intunewin package $IntunePackageMetaData = Get-IntuneWin32AppMetaData -FilePath "C:\IntuneWin32App\Output\7z1900-x64.intunewin" $IntunePackageMetaData.ApplicationInfo $IntunePackageMetaData.ApplicationInfo.MsiInfo $IntunePackageMetaData.ApplicationInfo.EncryptionInfo # Explore what's actually in the .intunewin file Start-Process -FilePath "C:\Program Files\7-Zip\7zFM.exe" -ArgumentList "C:\IntuneWin32App\Output\7z1900-x64.intunewin" # Expand .intunewin package # Only works when the encryptionKey and IV properties can be read from the original '.intunewin' that contains the encoded '.intunewin file' within the Contents folder Expand-IntuneWin32AppPackage -FilePath "C:\IntuneWin32App\Output\7z1900-x64.intunewin" -Force -Verbose Start-Process -FilePath "C:\Program Files\7-Zip\7zFM.exe" -ArgumentList "C:\IntuneWin32App\Output\7z1900-x64.intunewin.decoded" # Read MSI data from source file Get-MSIMetaData -Path "C:\IntuneWin32App\Source\7-zip\7z1900-x64.msi" -Property "Manufacturer" Get-MSIMetaData -Path "C:\IntuneWin32App\Source\7-zip\7z1900-x64.msi" -Property "ProductName" Get-MSIMetaData -Path "C:\IntuneWin32App\Source\7-zip\7z1900-x64.msi" -Property "ProductCode" Get-MSIMetaData -Path "C:\IntuneWin32App\Source\7-zip\7z1900-x64.msi" -Property "ProductVersion" |