Forum Discussion

J. M.'s avatar
J. M.
Copper Contributor
Feb 01, 2018

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

  • Andrew Price's avatar
    Andrew Price
    Copper Contributor

    Hi,

     

    I have developed a script for my personal use which is menu driven and has a number of good features. I can possibly share offline 

     

    One of the good features is that you can download the Office Deltas using preconfigured xml files I have stored on a FTP site straight to your client machine. 

    • Cian Allner's avatar
      Cian Allner
      Silver 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 Price's avatar
        Andrew Price
        Copper 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 Price's avatar
      Andrew Price
      Copper 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)

Resources