A Microsoft app for iOS and Android devices that enables authentication with two-factor verification, phone sign-in, and code generation
To enable a device in Microsoft Edge after it has been disabled, you will need to follow the steps outlined for managing devices. However, the specific steps for enabling a device in Microsoft Edge are not detailed in the provided context. Generally, enabling a device would involve accessing the device management settings in the Microsoft Entra admin center or using PowerShell commands if applicable.
If you are looking to enable a device using PowerShell, you can use the Set-EntraDevice cmdlet and set the -AccountEnabled property to true. Here’s a brief example:
Connect-Entra -Scopes 'Device.ReadWrite.All'
Set-EntraDevice -ObjectId 'your-device-object-id' -AccountEnabled $true
Make sure you have the necessary permissions as an Intune Administrator or Cloud Device Administrator to perform these actions.
References: