Skip to content

Latest commit

 

History

History
100 lines (72 loc) · 2.26 KB

New-AdfsOrganization.md

File metadata and controls

100 lines (72 loc) · 2.26 KB
external help file Module Name ms.date online version schema title
Microsoft.IdentityServer.Management.dll-Help.xml
ADFS
10/30/2017
2.0.0
New-AdfsOrganization

New-AdfsOrganization

SYNOPSIS

Creates a new organization information object.

SYNTAX

New-AdfsOrganization -DisplayName <String> -OrganizationUrl <Uri> [-Name <String>] [<CommonParameters>]

DESCRIPTION

The New-AdfsOrganization cmdlet creates a new information object for an organization in Active Directory Federation Services (AD FS) 2.0 .

EXAMPLES

Example 1: Create a new organization

PS C:\>New-AdfsOrganization -DisplayName "Fabrikam" -OrganizationUrl http://fabrikam.com

This command adds a new organization named Fabrikam in the AD FS.

PARAMETERS

-DisplayName

Specifies the display name of the organization.

Type: String
Parameter Sets: (All)
Aliases: 

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

-Name

Specifies the name of the organization.

Type: String
Parameter Sets: (All)
Aliases: 

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

-OrganizationUrl

Specifies the URL of the organization.

Type: Uri
Parameter Sets: (All)
Aliases: 

Required: True
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 (http://go.microsoft.com/fwlink/?LinkID=113216).

INPUTS

None

OUTPUTS

Microsoft.IdentityServer.PowerShell.Resources.Organization

This cmdlet generates a class structure that represents the organization object for the AD FS.

NOTES

  • You can publish this information by using the Set-AdfsProperties cmdlet.

RELATED LINKS

Get-AdfsProperties

Set-AdfsProperties