Set D365ActiveAzureStorageConfig - FH-Inway/d365fo.tools GitHub Wiki
Set the active Azure Storage Account configuration
Set-D365ActiveAzureStorageConfig [[-Name] <String>] [[-ConfigStorageLocation] <String>] [-Temporary]
[<CommonParameters>]
Updates the current active Azure Storage Account configuration with a new one
Set-D365ActiveAzureStorageConfig -Name "UAT-Exports"
This will import the "UAT-Exports" set from the Azure Storage Account configurations. It will update the active Azure Storage Account configuration.
Set-D365ActiveAzureStorageConfig -Name "UAT-Exports" -ConfigStorageLocation "System"
This will import the "UAT-Exports" set from the Azure Storage Account configurations. It will update the active Azure Storage Account configuration. The data will be stored in the system wide configuration storage, which makes it accessible from all users.
Set-D365ActiveAzureStorageConfig -Name "UAT-Exports" -Temporary
This will import the "UAT-Exports" set from the Azure Storage Account configurations. It will update the active Azure Storage Account configuration. The update will only last for the rest of this PowerShell console session.
The name the Azure Storage Account configuration you want to load into the active Azure Storage Account configuration
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Parameter used to instruct where to store the configuration objects
The default value is "User" and this will store all configuration for the active user
Valid options are: "User" "System"
"System" will store the configuration so all users can access the configuration objects
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 2
Default value: User
Accept pipeline input: False
Accept wildcard characters: False
Instruct the cmdlet to only temporarily override the persisted settings in the configuration storage
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
Author: Mötz Jensen (@Splaxi)
You will have to run the Initialize-D365Config cmdlet first, before this will be capable of working.
You will have to run the Add-D365AzureStorageConfig cmdlet at least once, before this will be capable of working.