Browse by Tags

All Tags » Office 2010 » Windows 8 (RSS)

PowerShell 3 and Word

  This is a common scenario $word = New-Object -ComObject "Word.application" $word . visible = $true $doc = $word . Documents . Add ( ) $doc . Activate ( ) $word . Selection . Font . Name = "Cambria" $word . Selection . Font ...