我有这个脚本(下面),我需要格式化输出,以便它附加一个单词+日期。你能帮忙吗?
Get-WmiObject -Class Win32_PerfFormattedData_W3SVC_WebService -ComputerName SERVERNAME | Where {$_.Name -eq "WEBURL"} | % {$_. CurrentConnections}
我希望输出与此类似,并附加以便不会覆盖数据。
(脚本输出)+"连接用户" +日期/时间
注意我使用的是Export-Csv c:\scripts\log.txt -encoding "unicode" -force
,但是没有达到预期效果。
答案 0 :(得分:0)
试试这个:
Get-WmiObject -Class Win32_PerfFormattedData_W3SVC_WebService -ComputerName SERVERNAME |
Where {$_.Name -eq "WEBURL"} |
Foreach {"$($_.CurrentConnections) connected users $(Get-Date)"}