LogoLogo
OSDeploy.comTwitterPowerShell GalleryGitHub
  • Overview
  • Release Notes
    • 2019 Archive
  • OSDeploy Home
  • Module
    • Install and Update
    • Functions
      • Get-OSDUpdate
      • Get-DownOSDUpdate
      • New-OSDUpdatePackage
      • Update-ModuleOSDUpdate
    • PowerShell Gallery
    • GitHub
  • Docs
    • Basics
      • Scripting with OSDUpdate
      • New OSDUpdate Office Package
      • Update an OSDUpdate Office Package
      • Update Office Setup Media
      • New OSDUpdate Servicing Stack Package
      • New OSDUpdate Windows Package
      • MDT Integration
      • MDT Deployment
      • ConfigMgr Integration and Deployment
    • Archive
      • Microsoft Office Monthly Updates
      • Microsoft Office 2016 Updates
      • Office Deployment and OSDUpdate
      • Microsoft Office MSP Install Script
Powered by GitBook
On this page
  • PackageName (Required)
  • PackagePath (Required)
  • AppendPackageName
  • New-OSDUpdatePackage

Was this helpful?

  1. Docs
  2. Basics

New OSDUpdate Office Package

You can use OSDUpdate to create a Package directory for updating Microsoft Office 2010, 2013, and 2016

PackageName (Required)

The following values can be used for the PackageName parameter for an OSDUpdate Office Package

  • Office 2010 32-Bit

  • Office 2010 64-Bit

  • Office 2013 32-Bit

  • Office 2013 64-Bit

  • Office 2016 32-Bit

  • Office 2016 64-Bit

For this exercise I will be using the following

-PackageName "Office 2016 64-Bit"

PackagePath (Required)

You will also need to specify a PackagePath. This will be where the updates are downloaded to. In this example I will use the following

-PackagePath D:\OSDUpdate\Office

AppendPackageName

While not required, adding this parameter will create a subdirectory of my PackagePath with the PackageName Parameter value. This results in my updates being downloaded in the following directory

D:\OSDUpdate\Office\Office 2016 64-Bit

New-OSDUpdatePackage

Putting this all together gives me the following PowerShell command

New-OSDUpdatePackage -PackageName "Office 2016 64-Bit" -PackagePath D:\OSDUpdate\Office -AppendPackageName

And when executed, all the Office CAB files will be downloaded and extracted

Resulting in the following

​

PreviousScripting with OSDUpdateNextUpdate an OSDUpdate Office Package

Last updated 5 years ago

Was this helpful?