We use a log off script to copy a centrally locked down normal.dot to everyones workstation. This normal.dot enforces the companies style guide to ensure that all documents have the same look and feel no matter which departments created the document. The obvious issue with this setup is that when users logs off they loose all of their autext entries. What I would like to achieve is to have log off script extract the autotext to a file and the log in script import the autext back into the refreshed normal.dot. I have managed to locate a vb script which can export the autext to a screen message but my script writing skills are not good enough to take this to the next level. On Error Resume Next Set objWord = CreateObject("Word.Application") Set objOptions = objWord.Options Set objDoc = objWord.Documents.Add() Wscript.Echo"Show AutoComplete suggestions: " & _ objWord.DisplayAutoCompleteTips For Each strEntry in objWord.NormalTemplate.AutoTextEntries Wscript.Echo "AutoText entry: " & strEntry.Name Next objWord.Quit Hope someone can help. -- Scott Lawry