使用SCCM 2007和&amp ;;进行软件安装。电源外壳

时间:2014-08-22 10:46:31

标签: powershell messagebox sccm sccm-2007

我正在尝试使用SCCM 2007宣传应用程序,并使用PowerShell脚本抛出几个消息框以通知用户安装进度。

部署工作正常并安装应用程序,但在运行广告时不会显示任何消息框。我认为这是因为脚本没有以登录用户身份运行。

不应该在本地运行脚本会抛出消息框而不会出现问题。有什么办法可以修改我的脚本以确保消息出现吗?

这是脚本:

[System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
[System.Windows.Forms.MessageBox]::Show("Software Installation in progress. Please wait...")

$installer = Start-Process -FilePath .\VirtualBox-4.3.14-95030-Win.exe -ArgumentList --silent -Wait -Verb RunAs

[System.Windows.Forms.MessageBox]::Show("Installation Complete. You can now launch the application.")

1 个答案:

答案 0 :(得分:0)

你能确保你的程序设置为允许用户交互吗?

enter image description here