I am interested in reading/setting the file location in word

I found this the following script here: scripting guy

Code:
   
Const wdUserTemplatesPath = 2
Const wdWorkgroupTemplatesPath = 3

Set objWord = CreateObject("Word.Application")
Set objOptions = objWord.Options

objOptions.DefaultFilePath(wdUserTemplatesPath) = "C:\Templates"
objOptions.DefaultFilePath(wdWorkgroupTemplatesPath) = "C:\Workgroup\Templates"

objWord.Quit



-- this is what i came up with for reading the parameters- but it doesn't return anything. i know i'm missing something .... any ideas?
Code:
  
$objWord = CreateObject("word.Application")
$objOptions = $objWord.Options
$objPath = $objOptions.DefaultFilePath
For Each $obj in $objPath
? "$obj"
Next