-
Notifications
You must be signed in to change notification settings - Fork 0
Get UdeConfig
Gets UDE configuration information.
Get-UdeConfig [[-Name] <String>] [-Active] [-AsExcelOutput] [-ProgressAction <ActionPreference>]
[<CommonParameters>]
Retrieves configuration settings for the User Development Environment (UDE).
Is based on the details that the developer can see from within Visual Studio when working with UDE.
Get-UdeConfig
This will retrieve all available UDE configurations.
Get-UdeConfig -Name "ContosoUdeConfig"
This will retrieve the UDE configuration with the name "ContosoUdeConfig".
Get-UdeConfig -Active
This will retrieve the currently active UDE configuration.
The name of the UDE configuration.
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 1
Default value: *
Accept pipeline input: False
Accept wildcard characters: FalseInstructs the function to only return the active UDE configuration.
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: FalseInstruct the cmdlet to output all details directly to an Excel file.
Will include all properties, including those not shown by default in the console output.
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.
Author: Mötz Jensen (@Splaxi)