A cloud-based identity and access management service for securing user authentication and resource access
Hello Salam ELIAS,
This usually means the sign-in succeeds, but no subscriptions are returned in that session. Since it works on your laptop, it’s likely something local to that desktop.
Try clearing the CLI session and signing in again:
az account clear
az logout
Then delete the .azure folder from your user profile and run az login.
Also check the tenant you’re signing into:
az account tenant list
If needed, sign in with the correct tenant:
az login --tenant <tenant-id>
You can verify what’s available with:
az account list --output table
If nothing is listed, it’s usually due to the wrong tenant being used or the account not having access to a subscription in that context.