我正在使用 PowerShell 开展一个项目
我想知道创建 PowerShell GUI 的最佳方法是什么?
答案1
创建 PowerShell GUI 主要有两种可能的方法。
您可以在 PowerShell 脚本中使用 Windows 窗体,然后自己编写 GUI 代码。随机代码示例这里。
或者,您可以使用带有 PowerShell GUI 工具的脚本编辑器,例如 PowerGUI 或我更喜欢的 Visual Studio。Foxdeploy 有一篇关于它的非常好的博客文章:https://foxdeploy.com/2015/04/10/part-i-creating-powershell-guis-in-minutes-using-visual-studio-a-new-hope/
使用 GUI 工具创建 PowerShell GUI 将为您节省大量时间和精力。所以这是可行的方法。