コンソールに$psiseオブジェクトをロードすることは可能ですか?ISEでいくつかのファイルを開きたいのですが、
>ise filename
>ise filename2
最初のものを開くだけです。ISE内では、$ psiseオブジェクトを使用してファイルを開くため、この問題は発生しません。
function qwe($file){
if(-not (Test-Path $file)){
New-Item -Name $file -ItemType file
}
$filepath = Resolve-Path $file;
$psISE.CurrentPowerShellTab.Files.Add($filepath)
}