控制台 Powershell 中的 $psise 对象
可以在控制台中加载 $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)
}
is possible to load the $psise object in the console?
I want to open several files in ISE but doing
>ise filename
>ise filename2
just open the first one. Inside ISE i don't have that problem because i use the $psise object to open the file
function qwe($file){
if(-not (Test-Path $file)){
New-Item -Name $file -ItemType file
}
$filepath = Resolve-Path $file;
$psISE.CurrentPowerShellTab.Files.Add($filepath)
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
$psISE
属性仅在PowerShell_Ise.exe
环境中可用,所以简短地说:否。但是,打开两个文件对我有用 - 它会打开一个包含该文件的新选项卡。
$psISE
is property available only inPowerShell_Ise.exe
environment, so shortly said: no.However, opening two files works for me - it opens a new tab with the file.