Syed Jahanzaib – Personal Blog to Share Knowledge !

December 4, 2009

OFFICE 2003 Unattended Batch File :

Filed under: Microsoft Related — Syed Jahanzaib / Pinochio~:) @ 1:14 PM

Using Office Automatic Configuration Script, you can create unattended setup file, When you will create UNATTENDED file, use the following syntax to run setup using custom unattended file.

To run setup from Network.
msiexec /i \\192.168.0.1\softwares\office2003\PRO11.msi TRANSFORMS=zaib.mst /passive

To run setup using local drive.
PRO11.msi TRANSFORMS=zaib.mst /passive

Howto add permanent ROUTE ?

Filed under: Linux Related — Syed Jahanzaib / Pinochio~:) @ 12:38 PM

WIN*
Following is the command to add permanent route to connect to another network using your local route / gateway.

route -p ADD 192.168.0.0 MASK 255.255.255.0 192.168.0.100 METRIC 3 IF

Where 192.168.0.0 is your target network , and 192.168.0.100 is your local router / gateway.

*niX:
route add default gw 192.168.2.100