I am looking for a Powershell, Azure CLI, or other type of script or program which will allow me to backup and restore all user attributes including the password hash.
This azure cli command gives me much of what I want, but doesn't include the password hashes:
az ad user list --verbose
The answer to this question from 3 years ago indicates that you can use the PowerShell get-msoluser command, but this command only seems to return UserPrincipalName, DisplayName, and isLicensed. It does not return the password hash.
This product from Quest indicates that there is some way to get these password hashes.
Does anyone know of a way to get all of the user properties, including the password hash using a script or program?