Get-EntraUserRegisteredDevice

ユーザーによって登録されたデバイスを取得します。

構文

Default (既定)

Get-EntraUserRegisteredDevice

    -UserId <String>
    [-All]
    [-Top <Int32>]
    [-Property <String[]>]
    [<CommonParameters>]

説明

Get-EntraUserRegisteredDevice コマンドレットは、Microsoft Entra IDのユーザーによって登録されたデバイスを取得します。

例 1: 登録済みデバイスを取得する

Connect-Entra -Scopes 'User.Read.All'
Get-EntraUserRegisteredDevice -UserId 'SawyerM@contoso.com' | Select-Object Id -ExpandProperty AdditionalProperties
@odata.type                   : #microsoft.graph.device
accountEnabled                : True
approximateLastSignInDateTime : 1/6/2025 9:01:45 AM
createdDateTime               : 11/13/2024 5:11:46 AM
deviceCategory                : Digital IT Owned Device
deviceId                      : 00aa00aa-bb11-cc22-dd33-44ee44ee44ee
deviceOwnership               : Company
deviceVersion                 : 2
displayName                   : Digital-IT-DevBox
enrollmentType                : AzureDomainJoined
isCompliant                   : False
isManaged                     : True
isRooted                      : False
managementType                : MDM
manufacturer                  : Microsoft Corporation
mdmAppId                      : XXXXX-0000-0000-c000-000000000000
model                         : Surface Pro X
operatingSystem               : Windows
operatingSystemVersion        : 10.0.22631.4460
physicalIds                   : {[USER-GID]:xxxxxxxx}
profileType                   : RegisteredDevice
registrationDateTime          : 11/13/2024 5:11:44 AM
systemLabels                  : {}
trustType                     : AzureAd
extensionAttributes           :
alternativeSecurityIds        : {@{type=2; key=WAA1}}
Id                            : 11bb11bb-cc22-dd33-ee44-55ff55ff55ff

このコマンドは、指定されたユーザーに登録されているデバイスを取得します。

例 2: 登録されているすべてのデバイスを取得する

Connect-Entra -Scopes 'User.Read.All'
Get-EntraUserRegisteredDevice -UserId 'SawyerM@contoso.com' -All | Select-Object Id -ExpandProperty AdditionalProperties
@odata.type                   : #microsoft.graph.device
accountEnabled                : True
approximateLastSignInDateTime : 1/6/2025 9:01:45 AM
createdDateTime               : 11/13/2024 5:11:46 AM
deviceCategory                : Digital IT Owned Device
deviceId                      : 00aa00aa-bb11-cc22-dd33-44ee44ee44ee
deviceOwnership               : Company
deviceVersion                 : 2
displayName                   : Digital-IT-DevBox
enrollmentType                : AzureDomainJoined
isCompliant                   : False
isManaged                     : True
isRooted                      : False
managementType                : MDM
manufacturer                  : Microsoft Corporation
mdmAppId                      : XXXXX-0000-0000-c000-000000000000
model                         : Surface Pro X
operatingSystem               : Windows
operatingSystemVersion        : 10.0.22631.4460
physicalIds                   : {[USER-GID]:xxxxxxxx}
profileType                   : RegisteredDevice
registrationDateTime          : 11/13/2024 5:11:44 AM
systemLabels                  : {}
trustType                     : AzureAd
extensionAttributes           :
alternativeSecurityIds        : {@{type=2; key=WAA1}}
Id                            : 11bb11bb-cc22-dd33-ee44-55ff55ff55ff

このコマンドは、指定されたユーザーに登録されているすべてのデバイスを取得します。

例 3: 登録済みデバイスを 1 つ取得する

Connect-Entra -Scopes 'User.Read.All'
Get-EntraUserRegisteredDevice -UserId 'SawyerM@contoso.com' -Top 1 | Select-Object Id -ExpandProperty AdditionalProperties
@odata.type                   : #microsoft.graph.device
accountEnabled                : True
approximateLastSignInDateTime : 1/6/2025 9:01:45 AM
createdDateTime               : 11/13/2024 5:11:46 AM
deviceCategory                : Digital IT Owned Device
deviceId                      : 00aa00aa-bb11-cc22-dd33-44ee44ee44ee
deviceOwnership               : Company
deviceVersion                 : 2
displayName                   : Digital-IT-DevBox
enrollmentType                : AzureDomainJoined
isCompliant                   : False
isManaged                     : True
isRooted                      : False
managementType                : MDM
manufacturer                  : Microsoft Corporation
mdmAppId                      : XXXXX-0000-0000-c000-000000000000
model                         : Surface Pro X
operatingSystem               : Windows
operatingSystemVersion        : 10.0.22631.4460
physicalIds                   : {[USER-GID]:xxxxxxxx}
profileType                   : RegisteredDevice
registrationDateTime          : 11/13/2024 5:11:44 AM
systemLabels                  : {}
trustType                     : AzureAd
extensionAttributes           :
alternativeSecurityIds        : {@{type=2; key=WAA1}}
Id                            : 11bb11bb-cc22-dd33-ee44-55ff55ff55ff

このコマンドは、指定されたユーザーに登録されている上位 1 つのデバイスを取得します。 -Limitのエイリアスとして-Topを使用できます。

パラメーター

-All

すべてのページを一覧表示します。

パラメーターのプロパティ

型:System.Management.Automation.SwitchParameter
規定値:False
ワイルドカードのサポート:False
DontShow:False

パラメーター セット

(All)
配置:Named
必須:False
パイプラインからの値:False
プロパティ名別のパイプラインからの値:False
残りの引数からの値:False

-Property

返されるプロパティを指定します。

パラメーターのプロパティ

型:

System.String[]

規定値:None
ワイルドカードのサポート:False
DontShow:False
Aliases:Select

パラメーター セット

(All)
配置:Named
必須:False
パイプラインからの値:False
プロパティ名別のパイプラインからの値:False
残りの引数からの値:False

-Top

返すレコードの最大数を指定します。

パラメーターのプロパティ

型:System.Int32
規定値:None
ワイルドカードのサポート:False
DontShow:False
Aliases:極限

パラメーター セット

(All)
配置:Named
必須:False
パイプラインからの値:True
プロパティ名別のパイプラインからの値:True
残りの引数からの値:False

-UserId

Microsoft Entra IDのユーザーの ID (ユーザー プリンシパル名または UserId として) を指定します。

パラメーターのプロパティ

型:System.String
規定値:None
ワイルドカードのサポート:False
DontShow:False
Aliases:オブジェクト識別子, UPN, アイデンティティ, ユーザープリンシパルネーム

パラメーター セット

(All)
配置:Named
必須:True
パイプラインからの値:True
プロパティ名別のパイプラインからの値:True
残りの引数からの値:False

CommonParameters

このコマンドレットでは、一般的なパラメーター -Debug、-ErrorAction、-ErrorVariable、-InformationAction、-InformationVariable、-OutBuffer、-OutVariable、-PipelineVariable、-ProgressAction、-Verbose、-WarningAction、-WarningVariable の各パラメーターがサポートされています。 詳細については、about_CommonParametersを参照してください。