AzureAD commands use the `-ObjectId` parameter. Microsoft Graph PowerShell commands use the specific parameter names like `-UserId`, `-GroupId`... Add parameter aliases when it's appropriate, so that users can run: ```powershell Get-EntraUser -ObjectId ... Get-EntraUser -UserId ... Get-EntraApplication -ObjectId ... Get--EntraApplication -ApplicationId ... ```