-
-
Notifications
You must be signed in to change notification settings - Fork 5
Get FSCPSSystemUpdatePackage
Downloads a system update package for D365FSC.
Get-FSCPSSystemUpdatePackage [[-UpdateType] <UpdateType>] [[-D365FSCVersion] <String>] [[-OutputPath] <String>]
[[-StorageAccountConfig] <String>] [-Force] [-ProgressAction <ActionPreference>] [<CommonParameters>]
The `Get-FSCPSSystemUpdatePackage` function downloads a system update package for Dynamics 365 Finance and Supply Chain (D365FSC) based on the specified update type and version. The package is downloaded from Azure Storage using the specified storage account configuration and saved to the specified output path.
Get-FSCPSSystemUpdatePackage -UpdateType SystemUpdate -D365FSCVersion "10.0.40" -OutputPath "C:\Packages\"
Downloads the system update package for version 10.0.40 and saves it to "C:\Packages".
Specifies the type of update package to download. Valid values are "SystemUpdate" and "Preview".
Type: UpdateType
Parameter Sets: (All)
Aliases:
Accepted values: SystemUpdate, Preview, FinalQualityUpdate, ProactiveQualityUpdate
Required: False
Position: 1
Default value: SystemUpdate
Accept pipeline input: False
Accept wildcard characters: FalseSpecifies the version of the D365FSC package to download.
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: FalseSpecifies the path where the downloaded package will be saved.
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: FalseSpecifies the storage account configuration to use. Default is "PackageStorage".
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 4
Default value: PackageStorage
Accept pipeline input: False
Accept wildcard characters: FalseForces the operation to proceed without prompting for confirmation.
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False{{ Fill ProgressAction Description }}
Type: ActionPreference
Parameter Sets: (All)
Aliases: proga
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: FalseThis cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
Uses the `Get-FSCPSAzureStorageFile` function to download the package from Azure Storage.
Author: Oleksandr Nikolaiev (@onikolaiev)