PowerShellから新しいウィンドウのPowerShellを開く

| 2009年6月16日火曜日
PowerShellから新しいウィンドウのPowerShellを開くには、WScript.Shellを使う。

> $WShell = New-Object -comObject WScript.Shell
> $posh = "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe"
> [void]$WShell.Run($posh , 1)

これを「New-PowerShellWindow.ps1」とかにしてパスの通ったところに置いておけば、キーボードだけでやりたい人には使えるかもしれない。

0 コメント: