Looking for relevant Networking Whitepapers? Visit the SearchNetworking.com Research Library.
Kknowledge | Oct 8 2007 10:50PM GMT
There are a number of ways to do this. If you utilized logon scripts, you can easily modify this using vbscript or with a tool like Kixtart.
I have an article on modular scripts with kixtart from a few years ago - here at informit.com…
<a href="http://www.informit.com/articles/article.aspx?p=102209&seqNum=3&rl=1" rel="nofollow">http://www.informit.com/articles/article.aspx?p=102209&seqNum=3&rl=1</a>
More people tend to go with VB Script but kix is really much more accessible to most network administrators - with hundreds of functions and commands for doing things like what you are asking…
For instance, the following is some kixtart script that would alter where word would save documents by default - something else you can move to the network.
; Set registry settings for MS Office
$strregpath = “HKEY_CURRENT_USERSoftwareMicrosoftOffice11.0″
; Set Word
$strkey = “WordOptions”
$strentry = “DOC-PATH”
$strvalue = $strword
WriteValue($strregpath + $strkey, $strentry, $strvalue, “REG_SZ”)
===============================================
WriteValue alters the registry key based on the variables provided. This assumed Office 2003.
I hope this helps.
informit com articles | May 30 2008 8:51AM GMT
[…] More people tend to go with VB Script but kix is really much more …http://itknowledgeexchange.techtarget.com/itanswers/writing-scripts/InformIT.comOnline resource center that delivers premium IT content, access to industry experts, […]