例如:
除-EA开关外,所有这些开关均记录在http://technet.microsoft.com/en-us/library/dd347693.aspx上。
该开关有什么作用?在哪里可以找到有关它的文档(及其参数)?
最佳答案
-ea
是-ErrorAction
的参数别名。参见http://ss64.com/ps/common.html。它在Send-MailMessage
documentation的通用参数中列出。
这显示了ErrorAction的选项:
[enum]::getValues([System.Management.Automation.ActionPreference]) | % {"$_ = (" + [int]$_ + ")"}
您可以使用字符串或数字作为参数值。
SilentlyContinue = (0)
Stop = (1)
Continue = (2)
Inquire = (3)
Send-MailMessage -EA Inquire
或Send-MailMessage -EA 3
均有效。关于powershell - -EA开关在Send-MailMessage上代表什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10358615/