Category Archives: Azure

User interface to set the computer name during or after the Autopilot process

A common concern when introducing Autopilot are the limitations regarding the workstation name: Out-of-the-box, you only have these options: Use a prefix and a random number in the deployment profile   Use a prefix and the serial number of the device Enter a fixed string in AutoPilot registered devices Rename the device after the setup… Read More: User interface to set the computer name during or after… »

License assignment failed – License cannot be assigned to a user without a usage location specified

If you are getting the error above when assigning licenses, it is because the entry UsageLocation isn’t set for the user. The quick way to fix the issue is obviously to set the entry manually. If you want to apply the change to larger number of users, the code snippet below may help: Connect-AzureAD Write-Host… Read More: License assignment failed – License cannot be assigned to a… »

Powershell script to check if Azure AD Connect is affected by the vulnerability described in CVE-2021-36949

The script below will check if your Azure AD Connect is running a version affected by the vulnerability described in CVE-2021-36949. Affected versions are 1.6.4.0 and 2.0.3.0. #Disclaimer: This script is provided as-is with no warranties of any kindWrite-Host “Checking if your Azure AD Connect version is affected by the vulnerability described in CVE-2021-36949″Try{$params =… Read More: Powershell script to check if Azure AD Connect is affected… »