如果Powersehll ISE正在运行PowerShell脚本,我想跳过Start-Transcript,Stop-Transcript行。

这可能吗?我该如何实现呢?

最佳答案

你可以做:

if ($host.name -eq 'ConsoleHost') # or -notmatch 'ISE'
{
  .. do something ..
}
else
{
  .. do something else..
}

关于.net - 有没有办法检查脚本是否由PowerShell ISE运行?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13195406/

10-11 07:11