Computing Staff
  • 0

Batch File To Unlock Local Account

  • 0

Is there any other way to unlock a local account other than using: net user ACCOUNTNAME /active:yes.

Share

1 Answer

  1. Useful commands for Windows administrators
    http://www.robvanderwoude.com/ntadm…
    “These commands could all be used in batch files, though some may need some “parsing” with FOR /F to retrieve only the required substrings from the displayed information”

    How to Change User Password at Command Prompt
    http://www.kellys-korner-xp.com/win…
    Alternatively, you can type the following command: net user <user_name> <new_password>. When you do so, the password changes without prompting you again. This command also enables you to change passwords in a batch file.
    Non-administrators receive a “System error 5 has occurred. Access is denied” error message when they attempt to change the password.

    BatchRun
    http://www.softpedia.com/get/System…
    http://www.softpedia.com/progScreen…
    http://www.outertech.com/en/batch-file
    http://www.outertech.com/en/create-…
    Portable Batchrun
    http://www.softpedia.com/get/PORTAB…

    AutoIt
    http://www.softpedia.com/get/System…
    http://www.softpedia.com/progScreen…
    http://www.hiddensoft.com/autoit3/
    http://www.autoitscript.com/forum/i…
    Portable AutoIt
    http://www.softpedia.com/get/PORTAB…

    • 0