我正在尝试使用Write-EventLog
cmdlet中的message属性发送变量,如下所示:
$time = Get-Date -Format "yyyy-MM-dd_HHmm"
Write-EventLog -ComputerName "Server01" -LogName Application -Source "BackupTeamCenter" -EventID 1 -EntryType Information -Message $time
我收到此错误:
无法验证参数“消息”上的参数。参数为null或为空。提供一个不为null或为空的参数,然后重试该命令。
预先感谢