我将如何在 powershell 中编写以下 windows 命令?
start /b /min FeedDemon.exe
当我在命令行上运行它时,它可以很好地最小化窗口并且在启动脚本中运行良好。但是在powershell中,当我尝试时,我无法得到相同的结果:
start-process -FilePath FeedDemon.exe -WindowStyle Minimized
我仍在学习 powershell(和一般的 Windows),所以请保持温和。
我将如何在 powershell 中编写以下 windows 命令?
start /b /min FeedDemon.exe
当我在命令行上运行它时,它可以很好地最小化窗口并且在启动脚本中运行良好。但是在powershell中,当我尝试时,我无法得到相同的结果:
start-process -FilePath FeedDemon.exe -WindowStyle Minimized
我仍在学习 powershell(和一般的 Windows),所以请保持温和。