Forum Discussion
hkusulja
May 24, 2019MVP
Best practice for Win10 local admin user when computer offline
I have question about your best practices for organizations. Scenario: You have only Azure AD joined - Windows 10 computers, with Intune MDM management. Only one user is using Windows 10 PC devi...
Moe_Kinani
May 23, 2020Bronze Contributor
Have you tried Intune Powershell to update localuser name or password?
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.localaccounts/set-localuser?view=powershell-5.1
Moe
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.localaccounts/set-localuser?view=powershell-5.1
Moe
Kevin Truong
May 26, 2020Copper Contributor
This is the powershell i did
$NewPassword = ConvertTo-SecureString "PasswordHere" -AsPlainText -Force
Set-LocalUser -Name AdminUser -Password $NewPassword -Description "Backup User 2020-05-26"
- Moe_KinaniMay 29, 2020Bronze ContributorHi Kevin,
Have you tried to run it as System not User creds and still getting error?
Moe