-
-
Notifications
You must be signed in to change notification settings - Fork 5
How To Download System Update Package
This tutorial will show you how to download D365FSC system update packages (service updates, previews, quality updates) using fscps.tools.
- PowerShell 5.1
- fscps.tools module installed
- Azure Storage Account configured with the update packages (see Work with Azure Storage Account)
Please visit the Install as a Administrator or the Install as a non-Administrator tutorials to learn how to install the tools.
Import-Module -Name fscps.tools
The Get-FSCPSSystemUpdatePackage cmdlet supports the following update types:
| UpdateType | Description |
|---|---|
| SystemUpdate | The GA (General Availability) service update package |
| Preview | The preview version of a service update |
| FinalQualityUpdate | The final quality update for a version |
| ProactiveQualityUpdate | A proactive quality update |
Get-FSCPSSystemUpdatePackage `
-UpdateType SystemUpdate `
-D365FSCVersion "10.0.40" `
-OutputPath "C:\Packages\"
This will download the service update package for version 10.0.40 and save it to C:\Packages\.
Get-FSCPSSystemUpdatePackage `
-UpdateType Preview `
-D365FSCVersion "10.0.41" `
-OutputPath "C:\Packages\"
Get-FSCPSSystemUpdatePackage `
-UpdateType FinalQualityUpdate `
-D365FSCVersion "10.0.40" `
-OutputPath "C:\Packages\"
If the package already exists locally, use -Force to re-download:
Get-FSCPSSystemUpdatePackage `
-UpdateType SystemUpdate `
-D365FSCVersion "10.0.40" `
-OutputPath "C:\Packages\" `
-Force
By default the cmdlet uses the PackageStorage storage account configuration. You can specify a different one:
Get-FSCPSSystemUpdatePackage `
-UpdateType SystemUpdate `
-D365FSCVersion "10.0.40" `
-OutputPath "C:\Packages\" `
-StorageAccountConfig "MyCustomStorage"
In this tutorial we showed you how to use Get-FSCPSSystemUpdatePackage to download different types of D365FSC update packages. Make sure your Azure Storage Account is configured with the correct packages before using this cmdlet (see Work with Azure Storage Account).
- Install as a non-Administrator
- Install as a Administrator
- Import fscps.tools module
- List available commands from fscps.tools module
- Get help content for a command
- Get D365FSC versions data
- Compile ISV model
- Invoke Choco
- Download FSC NuGets
- Download System Update Package
- Sign Files (DigiCert / Azure KeyVault)
- Work with Model Versions
- Work with ADO Test Cases