How to get all entitlements for all the IDN sources

Assuming you need to output this to a file or something like that, you can use the PowerShell SDK to export them to a file

invoke-paginate -function "get-betaentitlements" -increment 250 -limit 35000 -initialoffset 0 | Export-Csv -notypeinformation "C:\Temp\entitlements.csv"
5 Likes