New-AdfsOrganization is accessible with the help of adfs module. To install adfs on your system please refer to this adfs.
Synopsis
Creates a new organization information object.
Description
The New-AdfsOrganization cmdlet creates an information object for an organization in Active Directory Federation Services (AD FS) 2.0.
Parameters
-DisplayName
Specifies the display name of the organization.
Required? true
Position? named
Default value none
Accept pipeline input? false
Accept wildcard characters? false
-Name <String>
Specifies the name of the organization.
Required? false
Position? named
Default value none
Accept pipeline input? false
Accept wildcard characters? false
-OrganizationUrl <Uri>
Specifies the URL of the organization.
Required? true
Position? named
Default value none
Accept pipeline input? false
Accept wildcard characters? false
Syntax
New-AdfsOrganization -DisplayName <String> -OrganizationUrl <Uri> [-Name <String>] [<CommonParameters>]
Notes
You can publish this information by using the Set-AdfsProperties cmdlet.
——————–Example 1——————–
Create a new organization
PS C:>New-AdfsOrganization -DisplayName “TOSSolution” -OrganizationUrl http://TOSSolution.com
This command adds a new organization named TOSSolution in the AD FS.
You can check the Version, CommandType and Source of this cmdlet by giving below command.
Get-Command New-AdfsOrganization
You can also read about
- Get-AdfsProperties
- Set-AdfsProperties