How to create an administrator account on Azure VM?
On Azure environment, username and password of the authorized account is needed in order to login or connect via Remote Desktop.
If the administrator password or the password to RDP has been forgotten, then logging in to the VM will be an issue.
How to resolve this kind of issue?
PowerShell is a friend for this kind of dilemma.
Code snippet below will create a user account, and set the created account as a member of the administrator group.
# Create a user account
$password = ConvertTo-SecureString
"Dynamic_Admin_User_2022" -AsPlainText -Force
New-LocalUser -Name "$username" -Password $password
-FullName "$username" -Description "User Description"
# Add the user to "Administrators" groups
Add-LocalGroupMember -Group "Administrators" -Member
azure_admin_22
User account that will be created is: azure_admin_22 with the password of "Dynamic_Admin_User_2022"
Change the username and password as desired, when running the script above in your environment.
Of course, the other way is to reset the existing credentials on the VM via PowerShell.
Run with care, the above code. Make sure you have the proper admin rights or you are allowed to do so or else the Sys Admin or the person managing your Cloud Resources will not be happy.
Image below, shows where to run the PowerShell script on Azure environment.
First select the Virtual Machine, where the PowerShell script will be executed and follow the steps on the image below.
Cheers! Take care. Till next Time.
Stay safe! and Keep things up!
Do ASAP, Always Say A Prayer...
Practice O.T.G. = Obedience To God
Make time for Prayer and Meditation.
================================
Free Android Apps:
Click links below to find out more:
Free Android Apps:
Click links below to find out more:
Excel Keyboard guide:
https://play.google.com/store/apps/details?id=chrisjoms.myexcelapplicationguide
Heaven's Dew Fall Prayer app for Android :
https://play.google.com/store/apps/details?id=soulrefresh.beautiful.prayer
Catholic Rosary Guide for Android:
Pray the Rosary every day, countless blessings will be showered upon your life if you recite the Rosary faithfully.
https://play.google.com/store/apps/details?id=com.myrosaryapp
Divine Mercy Chaplet Guide (A Powerful prayer) BFF = Be Filled Faith:
https://play.google.com/store/apps/details?id=com.dmercyapp
Comments
Post a Comment