AcroRdrDC Deploy MDT Server 2016
Hi,
I have a question about deploying a Acrobat Pro Application on a MDT Server 2016. I have already done most of the work myself but how do I deploy the mst file ?
Below you see my PowerShell script I have done. Please look at the statement I have marked that is what I use but I am wondering how I should I keep the mst file. As you probably know the mst file also be a part of the solution ? Should I do a unattended statement too for the mst file and how should that look like ?
Write-Verbose "Setting Arguments" -Verbose
$StartDTM = (Get-Date)
$Vendor="Adobe"
$Product="Reader DC"
$PackageName="AcroRdrDC1500920069_en_US"
$InstallerType="exe"
$Version="3.9"
$LogPS = "${env:SystemRoot}" + "\Temp\$Vendor $Product $Version PS Wrapper.log"
$LogApp = "${env:SystemRoot}" + "\Temp\$PackageName.log"
$Destination = "${env:ChocoRepository}" + "\$Vendor\$Product\$Version\$packageName.$installerType"
$UnattendedArgs='/sAll /rs /l /msi /qb- /norestart EULA_ACCEPT=YES'
Start-Transcript $LogPS
CD Files
Write-Verbose "Starting Installation of $Vendor $Product $Version" -Verbose
(Start-Process "$PackageName.$InstallerType" $UnattendedArgs -Wait -Passthru).ExitCode
Write-Verbose "Customization" -Verbose
Write-Verbose "Stop logging" -Verbose
$EndDTM = (Get-Date)
Write-Verbose "Elapsed Time: $(($EndDTM-$StartDTM).TotalSeconds) Seconds" -Verbose
Write-Verbose "Elapsed Time: $(($EndDTM-$StartDTM).TotalMinutes) Minutes" -Verbose
Stop-Transcript
Best Regards
Michael Pierre
I have a question about deploying a Acrobat Pro Application on a MDT Server 2016. I have already done most of the work myself but how do I deploy the mst file ?
Below you see my PowerShell script I have done. Please look at the statement I have marked that is what I use but I am wondering how I should I keep the mst file. As you probably know the mst file also be a part of the solution ? Should I do a unattended statement too for the mst file and how should that look like ?
Write-Verbose "Setting Arguments" -Verbose
$StartDTM = (Get-Date)
$Vendor="Adobe"
$Product="Reader DC"
$PackageName="AcroRdrDC1500920069_en_US"
$InstallerType="exe"
$Version="3.9"
$LogPS = "${env:SystemRoot}" + "\Temp\$Vendor $Product $Version PS Wrapper.log"
$LogApp = "${env:SystemRoot}" + "\Temp\$PackageName.log"
$Destination = "${env:ChocoRepository}" + "\$Vendor\$Product\$Version\$packageName.$installerType"
$UnattendedArgs='/sAll /rs /l /msi /qb- /norestart EULA_ACCEPT=YES'
Start-Transcript $LogPS
CD Files
Write-Verbose "Starting Installation of $Vendor $Product $Version" -Verbose
(Start-Process "$PackageName.$InstallerType" $UnattendedArgs -Wait -Passthru).ExitCode
Write-Verbose "Customization" -Verbose
Write-Verbose "Stop logging" -Verbose
$EndDTM = (Get-Date)
Write-Verbose "Elapsed Time: $(($EndDTM-$StartDTM).TotalSeconds) Seconds" -Verbose
Write-Verbose "Elapsed Time: $(($EndDTM-$StartDTM).TotalMinutes) Minutes" -Verbose
Stop-Transcript
Best Regards
Michael Pierre
0 Comments
[ + ] Show comments
Answers (0)
Please log in to answer
Be the first to answer this question