Use the Windows Command Line with the Power of a Linux SysAdmin
In this video demonstration we investigate the power of the command line in Windows and show that, just as Linux can have a GUI, Windows has always had a powerful command line interface that is often overlooked. As a quick introduction we look at using the net command to create users and groups and then build these into for loops to create many users and groups.
- net user
- net localgroup
- for %U in (u1 u2 u3) do net user %U password /add

