Computer Management bat files - Part 4: User Management Script
In today's article we are going to take all of our work and combine it into one large management script. If you haven't read it you may want to start at article one Computer management bat files - Part 1: Users , Computer management bat files - Part 2: Groups , and Computer Management bat files - Part 3: Menu script Completed Script All the above scripts added into one with a menu system: @echo off :UserMenu CLS echo ============Users Menu============ echo. echo ============Users============ Net User echo. echo ============Groups============ Net Localgroup echo. echo Choose An option: echo 1. View a User echo 2. Add a User echo 3. Disable a User echo 4. Enable a User echo 5. Change User Password echo 6. Add User to group echo 7. List Users of a group echo 8. Remove User from group echo Q. Back To Main Menu SET INPUT= SET /P INPUT=Please select a number: IF /I '%INPUT%'=='8' goto REMGroup IF /I '%IN...