gpt4 book ai didi

powershell - 在新窗口中运行Powershell

转载 作者:行者123 更新时间:2023-12-03 16:33:12 26 4
gpt4 key购买 nike

我想使用参数运行新的Powershell窗口。我正在尝试运行以下命令:

powershell -Command "get-date"

但一切都发生在同一个控制台中。有没有简单的方法可以做到这一点?

最佳答案

使用start命令。在CMD提示符下,尝试:
start powershell -noexit -command "get-date"
对于“开始/运行”(或Win + r)提示,请尝试:
cmd /c start powershell -noexit -command "get-date"-noexit会告诉Powershell不要退出。如果省略此参数,则将执行该命令,并且您可能只看到Powershell窗口的一瞥。对于交互式使用,这是必须的。对于脚本,则不需要。

编辑:
start是CMD的内部命令。在Powershell中,它是Start-Process的别名。这些不是一回事。

至于为什么窗口是黑色的,这是因为Powershell.exe的快捷方式配置为将背景设置为蓝色。

关于powershell - 在新窗口中运行Powershell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18143501/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com