我正在尝试使用PowerShell,并将版权字符输出到Microsoft Word文档中。例如,下面列出的代码就是我尝试使用的代码,它无法正常工作。
$SummaryPara.Range.Text = "© "
$SummaryPara.Range.Text = "Get-Date -Format yyyy"
$SummaryPara.Range.Text = " - Name of Org Here "
$SummaryPara.Range.InsertParagraphAfter()
我是否需要以某种方式使用 Alt + 0169 序列?
我不确定我做错了什么,因为以下代码似乎有效:
$selection.TypeParagraph()
$selection.TypeText("© ")
$selection.TypeText((Get-Date -Format yyyy))
$selection.TypeText(" - Name of Org Here ")
$selection.TypeParagraph()
如何才能使版权角色和其他类似特殊角色都能正常使用?
答案 0 :(得分:4)
这里有一些问题。我将列出这些并解决每个问题:
您可以通过将Unicode表示形式转换为char
来获取所需的任何字符。在这种情况下
[char]0x00A9
您将新值分配给$SummaryPara.Range.Text
三次。所以,你每次都要覆盖以前的值,而不是连接('+'运算符),我认为这是你想要做的。
您正在尝试使用cmdlet Get-Date,但由于您引用了它,因此最终会得到文字字符串“Get-Date -Format yyyy”,而不是cmdlet的结果
总而言之,我想你想要这样的事情:
$word = New-Object -ComObject Word.Application
$doc = $word.Documents.Add()
$SummaryPara = $doc.Content.Paragraphs.Add()
$SummaryPara.Range.Text = [char]0x00A9 + ($date = Get-Date -Format yyyy) + " - Name of Org Here "
$word.Visible = $true