Add User and Set Password to Never Expire (especially for Scanning User)

Net user Scanning Scanning12 /add

Make PW never expire (Powershell most reliable to work, all will still break with big windows updates)

  • Command Line Admin option 1 (deprecating): WMIC USERACCOUNT where Name=’Scanning’ set PasswordExpires=False
  • Command Line Admin option 2 (sometimes an option): net user “Scanning” /expires:never
  • Powershell Admin (most reliable): Set-LocalUser -Name “Scanning” -PasswordNeverExpires $true