< Back

Get-GlpiToolsSoftwareLicenses

Mon Jan 13, 2020 10:14 pm

NAME Get-GlpiToolsSoftwareLicenses



SYNOPSIS

Function is getting Software License informations from GLPI





SYNTAX

Get-GlpiToolsSoftwareLicenses [-All] [<CommonParameters>]



Get-GlpiToolsSoftwareLicenses -SoftwareLicenseId <String[]> [-Raw] [<CommonParameters>]



Get-GlpiToolsSoftwareLicenses -SoftwareLicenseName <String> [<CommonParameters>]





DESCRIPTION

Function is based on SoftwareLicenseId which you can find in GLPI website

Returns object with property's of Software License





PARAMETERS

-All [<SwitchParameter>]

This parameter will return all Software License from GLPI



Required? false

Position? named

Default value False

Accept pipeline input? false

Accept wildcard characters? false



-SoftwareLicenseId <String[]>

This parameter can take pipline input, either, you can use this function with -SoftwareLicenseId keyword.

Provide to this param SoftwareLicenseId from GLPI Software License Bookmark



Required? true

Position? named

Default value

Accept pipeline input? true (ByValue)

Accept wildcard characters? false



-Raw [<SwitchParameter>]

Parameter which you can use with SoftwareLicenseId Parameter.

SoftwareLicenseId has converted parameters from default, parameter Raw allows not convert this parameters.



Required? false

Position? named

Default value False

Accept pipeline input? false

Accept wildcard characters? false



-SoftwareLicenseName <String>

This parameter can take pipline input, either, you can use this function with -SoftwareLicenseId keyword.

Provide to this param Software License Name from GLPI Software License Bookmark



Required? true

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

Software License ID which you can find in GLPI, or use this Function to convert ID returned from other Functions





OUTPUTS

Function returns PSCustomObject with property's of Software License from GLPI





NOTES





PSP 11/2019



-------------------------- EXAMPLE 1 --------------------------



PS C:\\>Get-GlpiToolsSoftwareLicenses -All



Example will return all Software License from Glpi









-------------------------- EXAMPLE 2 --------------------------



PS C:\\>326 | Get-GlpiToolsSoftwareLicenses



Function gets SoftwareLicenseId from GLPI from Pipline, and return Software License object









-------------------------- EXAMPLE 3 --------------------------



PS C:\\>326, 321 | Get-GlpiToolsSoftwareLicenses



Function gets SoftwareLicenseId from GLPI from Pipline (u can pass many ID's like that), and return Software

License object









-------------------------- EXAMPLE 4 --------------------------



PS C:\\>Get-GlpiToolsSoftwareLicenses -SoftwareLicenseId 326



Function gets SoftwareLicenseId from GLPI which is provided through -SoftwareLicenseId after Function type, and

return Software License object









-------------------------- EXAMPLE 5 --------------------------



PS C:\\>Get-GlpiToolsSoftwareLicenses -SoftwareLicenseId 326, 321



Function gets Software License Id from GLPI which is provided through -SoftwareLicenseId keyword after Function

type (u can provide many ID's like that), and return Software License object









-------------------------- EXAMPLE 6 --------------------------



PS C:\\>Get-GlpiToolsSoftwareLicenses -SoftwareLicenseName Fusion



Example will return glpi Software License, but what is the most important, Software License will be shown exactly

as you see in glpi dropdown Software License.

If you want to add parameter, you have to modify "default items to show". This is the "key/tool" icon near search.











RELATED LINKS