PowerShell launch script in new instance

前端 未结 4 1006
失恋的感觉
失恋的感觉 2020-12-09 08:34

I have a Master script that has several options. When you select 1 in the menu, action 1 will be executed and afterwards you\'ll get back to the menu. This

4条回答
  •  一个人的身影
    2020-12-09 08:45

    Using cmd to start powershell?

    start-process powershell -ArgumentList '-noexit -command 'Commands for the new PowerShell''
    

提交回复
热议问题