Google Apps is a great product, however, if you're in charge of managing a domain that has more than a hundred user's, it can be cumbersome to manage with the default dashboard. On a recent project, I had to setup 500+ email groups and even more nicknames. Even the task of just finding who was listed in a group called "sysadmin" took about 20 clicks and screen refreshes to view.
VERSION BUILD=6070918 RECORDER=FX
'Based on a two column csv file called alias.csv file, this script will create the nicknames in bulk.
TAB T=1
TAB CLOSEALLOTHERS
CMDLINE !DATASOURCE alias.csv
SET !DATASOURCE_COLUMNS 2
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO=http://localhost:8080/AppsProvisioningSample/createNickname.jsp
TAG POS=1 TYPE=A ATTR=TXT:Create<SP>Nickname
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:http://localhost:8080/AppsProvisioningSample/ProcessNicknames ATTR=NAME:username CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:http://localhost:8080/AppsProvisioningSample/ProcessNicknames ATTR=NAME:nickname CONTENT={{!COL1}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:http://localhost:8080/AppsProvisioningSample/ProcessNicknames ATTR=VALUE:Submit