I need a script to find the version of office. I have found scripts like this:
Set objWord = CreateObject("Word.Application")
Wscript.Echo "Version: " & objWord.Version
Wscript.Echo "Build: " & objWord.Build
Wscript.Echo "Product Code: " & objWord.ProductCode()
objWord.Quit
But what i really need is a script to tell me the actual version (i.e. office 2000, etc) ... like when you are in Word and you select HELP and ABOUT - you see "Micorosft Word 2000" and the build and SP numbers ... is this possible?
Thanks,
LJG
Set objWord = CreateObject("Word.Application")
Wscript.Echo "Version: " & objWord.Version
Wscript.Echo "Build: " & objWord.Build
Wscript.Echo "Product Code: " & objWord.ProductCode()
objWord.Quit
But what i really need is a script to tell me the actual version (i.e. office 2000, etc) ... like when you are in Word and you select HELP and ABOUT - you see "Micorosft Word 2000" and the build and SP numbers ... is this possible?
Thanks,
LJG