For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get-DSLicense

Synopsis

Get all licenses, except the server one

Syntax

__AllParameterSets

Get-DSLicense [-AsLegacyResponse] [<CommonParameters>]

Description

Get all licenses, except the server one. To obtain the users who have been assigned to a specific license, use the cmdlet Get-DSUserLicense.

Examples

Example 1

PS C:\> $licenses = Get-DSLicence

Obtain all licenses, except the server one

Example 2

PS C:\> $licResponse = Get-DSLicence -AsLegacyResponse;
        $licResponse.Data | Where -Property Status -eq Expired | Unregister-DSLicense

Remove all expired licenses

Example 3

Assign the license starting with XXXXX to the user 'Name of the user to assign'

Parameters

-AsLegacyResponse

In versions prior to 2024.2, many DS cmdlets returned a ServerResponse object. Enabling this backward compatibility switch allows scripts developed for earlier versions to function correctly.

CommonParameters

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

Notes

For more information, type "Get-Help Get-DSLicense -detailed". For technical information, type "Get-Help Get-DSLicense -full".

Last updated

Was this helpful?