Please Note: This article is written for users of the following Microsoft Word versions: 97, 2000, 2002, and 2003. If you are using a later version (Word 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Word, click here: Opening a Text File and Template from the Command Line.
Written by Allen Wyatt (last updated June 26, 2018)
This tip applies to Word 97, 2000, 2002, and 2003
Dan wants to open a text file (txt extension) with Word, from the command line, using a specific template. Only problem is, he is having some problems doing it. Dan can put together the proper command line, according to Word's Help system, but it still doesn't work.
Actually, this makes sense that it doesn't work. Consider for a moment that templates are used with Word documents, not with text files. Text files are just that: text. Even in Word they are still text. Yes, you can attach a template to a text file opened in Word, but at that point the "attachment" is not complete unless you still save the document in Word format. So, when you use a command line such as the following, it won't work:
"c:\Program Files\Microsoft Office\Office\Winword.exe" "d:\text.txt" /t"MyTemplate.dot"
It is the /t switch that is supposed to tell Word which template to use with the file it opens. The reason is that Word ignores any template specification is because it knows that template files don't go with text files. Instead, Word opens the file with the standard template, Normal.dot. Word also ignores the template switch even if you use /z instead of /t. (The /z switch is the same as /t, except that it opens Word in a slightly different manner than with /t.)
The fact that Normal.dot is used for text files provides one way that you can work around Word's apparent shortcoming in this area. You could, for instance, rename your existing Normal.dot template as something else (such as OldNormal.dot) and then rename the template you want to use as Normal.dot. When you open the text file from the command line, the desired set of styles will be in the new Normal.dot file and attached to the text file.
Another option that is perhaps better is to use a macro to attach the desired template to your text file. Yes, you could create a macro that you manually run after loading the text file, but a better way is to set things up so that it happens automatically. For instance, you might have a macro such as this in your Normal.dot template:
Sub TextTemplate() With ActiveDocument .UpdateStylesOnOpen = False .AttachedTemplate = "d:\test files\MyTemplate.dot" .XMLSchemaReferences.AutomaticValidation = True .XMLSchemaReferences.AllowSaveAsXMLWithoutValidation = False End With End Sub
While you could run this macro manually to attach the MyTemplate.dot template to your document, you could also use the following from the command line:
"c:\Program Files\Microsoft Office\Office\Winword.exe" "d:\text.txt" /m"TextTempate"
In this case, the text file is opened and the TextTemplate macro is run. This works because Normal.dot (where TextTemplate is stored) is attached to the text file, and then the macro attaches the other template automatically.
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (455) applies to Microsoft Word 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Word (Word 2007 and later) here: Opening a Text File and Template from the Command Line.
The First and Last Word on Word! Bestselling For Dummies author Dan Gookin puts his usual fun and friendly candor back to work to show you how to navigate Word 2013. Spend more time working and less time trying to figure it all out! Check out Word 2013 For Dummies today!
Want to control the name and location of your document backup? Here are some ideas that may help.
Discover MoreWord allows you to establish links from one document to another. When you open a document containing these links, you may ...
Discover MoreWhen you organize your hard drive, it is easy to go hog-wild with folders and subfolders. You need to know that how you ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
Got a version of Word that uses the menu interface (Word 97, Word 2000, Word 2002, or Word 2003)? This site is for you! If you use a later version of Word, visit our WordTips site focusing on the ribbon interface.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments