gpt4 book ai didi

powershell - 如何在powershell中写入 "start/b/min FeedDemon.exe"

转载 作者:行者123 更新时间:2023-12-02 23:15:35 25 4
gpt4 key购买 nike

如何在 powershell 中编写以下 windows 命令?

start /b /min FeedDemon.exe

当我在命令行上运行它时,它可以很好地最小化窗口并且在启动脚本中运行良好。但是在 powershell 中,我尝试时无法得到相同的结果:

start-process -FilePath FeedDemon.exe -WindowStyle Minimized

我仍在学习 powershell(和一般的 Windows)所以请保持温和。

最佳答案

start/b 参数表示程序应该在不弹出新的控制台窗口的情况下运行。直接翻译成 powershell 是

Start-Process FeedDemon.exe -NoNewWindow -WindowStyle Minimized

如果这不起作用,就用老式的方式从 Powershell 中调用它

cmd.exe /c start /b /min FeedDemon.exe

关于powershell - 如何在powershell中写入 "start/b/min FeedDemon.exe",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12432525/

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