26 lines
1.2 KiB
PowerShell
26 lines
1.2 KiB
PowerShell
$version = "1.8.6"
|
|
if (-not (Test-Path -Path $version -PathType Container)) {
|
|
Invoke-WebRequest -Uri ("https://github.com/microsoft/Microsoft-Win32-Content-Prep-Tool/archive/refs/tags/v{0}.zip" -f $version) -OutFile ("v{0}.zip" -f $version)
|
|
Expand-Archive -Path ("v{0}.zip" -f $version) -Force
|
|
Remove-Item -Path ("v{0}.zip" -f $version)
|
|
}
|
|
|
|
foreach ($folder in (Get-ChildItem -Path "./apps/" )) {
|
|
write-host $folder.Name
|
|
$sourceFolder = $folder.FullName
|
|
|
|
$sourceFile = $null
|
|
foreach ($wntrypoint in @('install.bat', 'install.ps1', '*.msi', '*.exe')) {
|
|
$sourceFile = (Get-ChildItem -Path $sourceFolder -Filter $wntrypoint | Select-Object -First 1 )
|
|
if ($null -ne $sourceFile){
|
|
break
|
|
}
|
|
}
|
|
|
|
Remove-Item -Path ("./build/{0}.intunewin" -f $folder.Name) -Force
|
|
$buildArgs = "-c", $folder.FullName, "-s", $sourceFile.FullName, "-o", "./build/", "-q"
|
|
Start-Process -FilePath ('./v{0}/Microsoft-Win32-Content-Prep-Tool-{0}/IntuneWinAppUtil.exe' -f $version) -ArgumentList "$buildArgs" -Wait
|
|
Move-Item -Path ("./build/{0}.intunewin" -f ($sourceFile.Name -split "\.")[0]) -Destination ("./build/{0}.intunewin" -f $folder.Name)
|
|
}
|
|
|