- first document version
Install-Module -Name Get-O365SKUsInfos
Import-Module Get-O365SKUsInfos
Import-Module c:\mypath\Use-UptoBox\Get-O365SKUsInfos.psd1
- you can use
System.Net.WebProxy
object to set your proxy environment globally in your current powershell session. - for instance use the following lines of code to define a proxy url http://myproxy.tld:8080
$proxyobj = New-Object System.Net.WebProxy "http://myproxy.tld:8080"
[System.Net.WebRequest]::DefaultWebProxy = $proxyobj
- SKU property giving the commercial name of the SKU
- SKU or Service Plan property giving the technical name of a Service Plan or SKU
- SKU or Service Plan property giving the GUID of a Service Plan or SKU
- SKU property giving the Services Plan included in a SKU (as PSCustom Objects)
- Service Plan property giving the commercial name of the Service Plan
Get-O365SKUCatalog
- can be usefull if you want to save the result and import it back later for instance or just optimize your internet outgoing flows
Get-O365SKUCatalog -AsGlobalVariable
- global variable used :
$global:O365SKUsInfos
- can be useful if you want to export data in to a CSV file for instance
Get-O365SKUCatalog -ServicePlansInfoAsStrings
Get-O365SKUinfo -GUID 8f0c5670-4e56-4892-b06d-91c085d7004f
Get-O365SKUinfo -ProductName "Microsoft 365 F1"
Get-O365SKUinfo -StringID M365_F1
Get-O365Planinfo -GUID 41781fb2-bc02-4b7c-bd55-b576c07bb09d
Get-O365Planinfo -PlanName "AZURE ACTIVE DIRECTORY PREMIUM P1"
Get-O365Planinfo -StringID AAD_PREMIUM
Get-O365SKUInfoFromPlan -GUID 41781fb2-bc02-4b7c-bd55-b576c07bb09d
Get-O365SKUInfoFromPlan -PlanName "AZURE ACTIVE DIRECTORY PREMIUM P1"
Get-O365SKUInfoFromPlan -StringID AAD_PREMIUM