Q: Can I work on Microsoft Word documents if the software isn't installed on my machine?
A: Conventional wisdom suggests that you need to have Word installed on your computer if you expect your computer to use it. However, this wisdom isn't necessarily true.
Most modern programs use COM to expose software functionality. COM is useful for automation because an application can interact with the program's features by means of COM objects. For example, you can use COM objects to embed a Microsoft Excel spreadsheet in a Word document. A script can also interact with COM objects as long as they're designed for scripts. (The COM object must implement the IDispatch interface.)
For a script to interact with COM objects from an application (such as Word), the application must be installed on the machine. However, there's a version of COM called Distributed COM (DCOM) that enables a script to interact with COM objects from applications on remote machines. For example, on a Web server, you might run a script that uses DCOM to create Excel graphs with an Excel application that's installed on another computer in your network. Therefore, you don't need to have software installed on your machine to use it. . . .

