Change password from the command line

net user <username> <password>
Or if you want to hide the password and enter it at a prompt
net user <username> *

Allowing non-admin Windows users to change IP addresses

If you want to allow non-admin users in Windows to change the IP address settings on their PCs, you can add them to the built-in “Network Configuration Operators” group. This can be done from the command line as

net localgroup "Network Configuration Operators" /add <username>

Install Office 2003 without a CD key ..sort of

Office 2003 wont install unless you supply a valid license key, unlike Office 2007 which lets you enter the key once you’re done installing. This is very inconvenient when you’re trying to create a base image of a system to deploy on multiple PCs. You can’t have the same Office license key for all the PCs.

In order to get somewhat similar functionality as Office 2007, i.e., install without key to be filled in later, use the following method. You will still need a valid serial key for the first install, but it will be cleared after its completed.

setup.exe /QB PIDKEY=YOURSERIALHERE
regedit /S clear-key.reg

The first line installs office silently with the specified key, and second line clears the registration information. The clear-key.reg file contains the following registry key

Windows Registry Editor Version 5.00
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\11.0\Registration]

Now when you run Office, it’ll ask you for a license key.

Allowing non-admins to manage services in Windows

This Microsoft KB article lists 3 ways to grant non-admin users the rights to manage services on a windows machine.

Method 1: Grant rights using Group Policy
Method 2: Grant rights using Security templates
Method 3: Grant rights using Subinacl.exe

The easiest and fastest method? Method 3 using subinacl.
SUBINACL /SERVICE \\MachineName\ServiceName /GRANT=[DomainName\]UserName[=Access]

[Source: How to grant users rights to manage services in Windows 2000]

Manage Exchange mailboxes from the command-line

ExchMbx is a command-line utility that lets you create user mailboxes, mail enable an AD object, move mailboxes and delete mailboxes among other tasks that can be done using the GUI.

Ex1:
ExchMbx -b cn=joe,dc=joe,dc=net -cr srv1:sg1:db2
Create mailbox for joe in Server srv1, storage group sg1, database db2.

Ex2:
ExchMbx -b cn=joe,dc=joe,dc=net -move srv1:sg1:db2
Ditto ex1 but move.

Ex3:
ExchMbx -b cn=joe,cn=users,dc=joe,dc=net -clear
Clear Exchange attrs for joe, will delete mailbox or
clean email addresses of mailenabled objects.

Ex4:
ExchMbx -b cn=gr1,cn=users,dc=joe,dc=net -me
Mail Enable group gr1

Ex5:
ExchMbx -b cn=con1,cn=users,dc=joe,dc=net -me joe@joeware.net
Mail Enable contact con1 with email address joe@joeware.net

ExchMbx can be obtained from joeware.net along with many other useful tools.

[examples sourced from the ExchMbx Usage page]