Microsoft Graph:Get-MgUser 仅显示 100 个条目。我怎样才能得到所有用户?
Microsoft Graph: Get-MgUser shows only 100 entries. How can I get all Users?
我正在使用 cmdlet
读取我的 Azure-AD 的所有用户
Get-MgUser
输出正好显示 100 个对象。我预计会有 200 多个条目。我怎样才能得到丢失的对象?
我使用此命令获取每个用户的 ID。
如 the docs 所示,您可以使用开关 -All
到 Get-MgUser cmdlet,这将列出所有页面,或者使用 -PageSize
参数设置结果的页面大小。
显然,默认页面大小设置为 100,因此您可以使用 PageSize
Get-MgUser -PageSize 300 # or [int32]::MaxValue
当然更简单的方法是使用 -All 开关:
Get-MgUser -All
接收所有对象
我正在使用 cmdlet
读取我的 Azure-AD 的所有用户Get-MgUser
输出正好显示 100 个对象。我预计会有 200 多个条目。我怎样才能得到丢失的对象?
我使用此命令获取每个用户的 ID。
如 the docs 所示,您可以使用开关 -All
到 Get-MgUser cmdlet,这将列出所有页面,或者使用 -PageSize
参数设置结果的页面大小。
显然,默认页面大小设置为 100,因此您可以使用 PageSize
Get-MgUser -PageSize 300 # or [int32]::MaxValue
当然更简单的方法是使用 -All 开关:
Get-MgUser -All
接收所有对象