powershell获取计算机名称从另一台计算机运行时脚本所在的位置

时间:2015-01-29 09:01:11

标签: powershell computer-name

我有可以从另一台计算机执行的脚本。

如何获取位置脚本的comptername?只是命名,而不是完整路径(因为脚本可以在任何地方分发)谢谢

1 个答案:

答案 0 :(得分:1)

我自己解决了。 :-)希望帮助某人。

$scriptPath = Split-Path -Parent $MyInvocation.MyCommand.Definition
[string[]]$sth = $scriptPath.Split('\',[System.StringSplitOptions]::RemoveEmptyEntries)
$servername = $sth[0]