Forum Discussion
J. M.
Feb 01, 2018Copper Contributor
Script to automatic download for Setup.exe
Hello
Is there a scripts which automatically downloads the Setup.exe of Office ProPlus.
Thanks
J. M.
6 Replies
Sort By
- Andrew PriceCopper Contributor
- Cian AllnerSilver Contributor
I was going to mention your script, as I remembered it from this post but when I went back to it and checked the link, it was offline. It would be great if you could add it to say TechNet Gallery, I'm sure it would get a lot of interest, though I understand if that's not what you are after.
- Andrew PriceCopper Contributor
I have no plans to share on Technet but made it available on my OneDrive.
https://1drv.ms/f/s!AhKyKXN1ytefuuVbzQ6yHAV0DRHGFQ
Planning on making some future tweaks to the script over the next couple of weeks.
Andrew
- Andrew PriceCopper Contributor
Or you can script the download of the setup.exe using the following
# Download Official Deployment Tool
$DeploymentTool = "$env:USERPROFILE\Downloads\officedeploymenttool.exe"
$SourceDeployment = 'https://download.microsoft.com/download/2/7/A/27AF1BE6-DD20-4CB4-B154-EBAB8A7D4A7E/officedeploymenttool_8529.3600.exe'# Script Execution
$client = new-object -TypeName System.Net.WebClient
$client.DownloadFile($SourceDeployment,$DeploymentTool)
- Cian AllnerSilver Contributor
Not aware of a specific script but do check out Office IT Pro Deployment Script project and see if there is anything of interest.
Just generally, the Office 2016 Deployment Tool (ODT), can be downloaded from here and easily configured with the new Office Customization Tool for Click-to-Run app, plus additional deployment guidance here.