Powershell Script
# add the required .NET assembly:
Add-Type -AssemblyName System.Windows.Forms
# show the MsgBox:
$result = [System.Windows.Forms.MessageBox]::Show('Please Click "Yes" to close Google Chrome, click No to dont close ', 'Info', 'YesNo', 'Warning')
# check the result:
if ($result -eq 'Yes')
{
# Call the SSMS app with silent/no restart switch with exit code
#.\SSMS-Setup-ENU.exe /install /quiet /norestart actuall isntallation from CMD
(Stop-Process -Name "chrome" )
Write-Warning 'Chrome Closed'
}
else
{
Write-Warning 'Chrome Still Open'
}
Application Deployment Type – Program
Powershell.exe -ExecutionPolicy ByPass -File Your-Scriptfilename.PS1
Package – Program CMD Line
"%Windir%\sysnative\WindowsPowerShell\v1.0\powershell.exe" -ExecutionPolicy Bypass -Command .\Your-Scriptfilename.ps1
No comments:
Post a Comment