控制台 Powershell 中的 $psise 对象

发布于 2024-09-12 20:29:29 字数 360 浏览 3 评论 0原文

可以在控制台中加载 $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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

維他命╮ 2024-09-19 20:29:29

$psISE 属性仅在 PowerShell_Ise.exe 环境中可用,所以简短地说:

但是,打开两个文件对我有用 - 它会打开一个包含该文件的新选项卡。

$psISE is property available only in PowerShell_Ise.exe environment, so shortly said: no.

However, opening two files works for me - it opens a new tab with the file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文