Citrix Daas SDK

New-UserProfileConfiguration

Creates a new configuration for Citrix Profile Management, with all settings in their default initial state.

Syntax

New-UserProfileConfiguration
   [<CommonParameters>]
<!--NeedCopy-->

Description

This command returns a byte array (or “blob”), which can be passed to the Get-UserProfileDefinition and Set-UserProfileDefinition commands to inspect and modify a configuration set.

Use this command to bootstrap the configuration process in the case where no configuration policy objects are available in the Broker’s database, or when you wish to create a fresh configuration that is separate from any that already exist.

No settings will be explicitly configured in the new configuration set. The properties of the configuration will be based on documented default values. Use Set-UserProfileDefinition to alter the state of any property within the configuration set.

Examples

EXAMPLE 1

The first command creates a fresh configuration set in its default state, and stores it in a Windows PowerShell variable. The second command interprets the new blob, and would output the individual properties of the default configuration.

$blob = New-UserProfileConfiguration

Get-UserProfileDefinition -ByteArray $blob
<!--NeedCopy-->

EXAMPLE 2

This command creates a fresh configuration set in its default state, and pipes the resulting byte array through to Get-UserProfileDefinition, which will interpret it and output its individual properties.

New-UserProfileConfiguration | Get-UserProfileDefinition
<!--NeedCopy-->

Parameters

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

Inputs

None

You can’t pipe objects to this cmdlet.

Outputs

Byte[]

The new configuration set, which can be piped directly into Get-UserProfileDefinition to receive the named properties.

New-UserProfileConfiguration