Commands › Microsoft Teams

New-CsSdgBulkSignInRequest

Microsoft Teams MicrosoftTeams New-*

Sign in a batch of up to 100 devices.

Quick start script

# New-CsSdgBulkSignInRequest — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-MicrosoftTeams -CertificateThumbprint $thumb -ApplicationId $appId -TenantId $tenantId

# 2. Capture the current state first — you cannot roll back what you never recorded
$before = Get-CsSdgBulkSignInRequest
$before | Format-List

# 3. Make the change
New-CsSdgBulkSignInRequest -DeviceDetailsFilePath <String> -Region <String>

# 4. Verify and diff
$after = Get-CsSdgBulkSignInRequest
Compare-Object ($before | Out-String) ($after | Out-String)

Syntax

New-CsSdgBulkSignInRequest -DeviceDetailsFilePath <String> -Region <String> [<CommonParameters>]

Parameters (2)

ParameterTypeRequiredWhat it controls
-DeviceDetailsFilePath String yes This is the path of the device details CSV file. The CSV file contains two columns - username and hardware ID, where username is of the format FirstFloorLobbyPhone1@contoso.com and hardware ID is the device MAC...
-Region String yes This is the SIP Gateway region. Possible values include NOAM, EMEA, APAC.

Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.