Skip to content

New-InstallerUserInterface

SYNOPSIS

Customizes the interface of the installer.

SYNTAX

New-InstallerUserInterface [-Eula <String>] [-TopBanner <String>] [-WelcomeAndCompletionBackground <String>]
 [-ExclamationIcon <String>] [-InformationIcon <String>] [-NewIcon <String>] [-UpIcon <String>]
 [-ExitDialogText <String>] [<CommonParameters>]

DESCRIPTION

Customizes the interface of the installer.

EXAMPLES

Example 1

PS C:\> $UserInterface = New-InstallerUserInterface -Eula (Join-Path $PSScriptRoot "InstallerAssets\eula.rtf")

Includes a EULA with the installer. The user will be required to accept the EULA.

PARAMETERS

-Eula

The path to an end user license to include with the installer.

Type: System.String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-ExclamationIcon

Exclamation icon on the WaitForCostingDlg. Recommended size is 32x32.

Type: System.String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-ExitDialogText

Text to be displayed after completing installation.

Type: System.String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-InformationIcon

Exclamation icon on the WaitForCostingDlg. Recommended size is 32x32.

Type: System.String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-NewIcon

Button glyph on the BrowseDlg. Recommended size 16x16.

Type: System.String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-TopBanner

Top banner to display while progressing through the installer. Recommended size is 493 � 58.

Type: System.String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-UpIcon

Button glyph on the BrowseDlg. Recommended size is 16x16.

Type: System.String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-WelcomeAndCompletionBackground

Background bitmap used on the welcome and completion dialogs. Recommended size is 493 � 312.

Type: System.String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

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

OUTPUTS

System.Object

NOTES

Back to top