New-R1NamingContextLink

SYNOPSIS

Adds a child link node.

SYNTAX

New-R1NamingContextLink [-dn] <String> [-linkType] <String> [-existingView] <String> [-WhatIf] [-Confirm]
 [<CommonParameters>]

DESCRIPTION

Adds a link node beneath the naming context node identified by its DN, pointing at an existing view.

EXAMPLES

Example 1

New-R1NamingContextLink -dn 'o=vds' -linkType 'STANDARD_LINK' -existingView 'adap'

Adds a standard link to the adap view beneath o=vds.

PARAMETERS

-dn

The DN of the naming context node.

Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-linkType

Whether the link is a standard link or a merge link.

Type: String
Parameter Sets: (All)
Aliases:
Accepted values: STANDARD_LINK, MERGE_LINK

Required: True
Position: 2
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-existingView

The name of the view the link points at.

Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: 3
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi

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

-Confirm

Prompts you for confirmation before running the cmdlet.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf

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.Void

NOTES

The view named by existingView must already exist.

This command has not been exercised against a live deployment, so its behaviour rests on the published API definition alone.

Get-R1NamingContextChild