winforms 如何将powershell输出嵌入到winform中?[closed]

dvtswwa3  于 2022-11-25  发布在  Shell
关注(0)|答案(1)|浏览(189)

**已关闭。**此问题不符合Stack Overflow guidelines。当前不接受答案。

我们不允许问题寻求书籍、工具、软件库等的建议。您可以编辑问题,以便使用事实和引文来回答。
2天前关闭。
Improve this question
大家早上好,
因此,我构建了一个winform,它有许多按钮,每个按钮代表一个函数,其中一些函数需要用户输入。
我如何:

  • 将输出窗口嵌入winform
  • 允许用户输入运行代码所需的详细信息

我还没有尝试过任何东西,因为我不知道该把函数放到powershell中,使其工作。
感谢RGE

r6l8ljro

r6l8ljro1#

#Load Assembly           
       [void][System.Reflection.Assembly]::LoadWithPartialName('Microsoft.VisualBasic') 
    
       #input Admins name    
        $input = [Microsoft.VisualBasic.Interaction]::InputBox('Enter the Name of the user', 'User') 
        $user = $input

相关问题