Script to create a Pop Up message
Hi,
Please can anybody help me, i need guidance on creating a script to prompt users to agree to a Software Installation and have the option to defer it for three times in the form of a pop up message after they have logged in. Many thanks
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
jagadeish
11 years ago
Are you looking for something like this
Q1=MsgBox ("Do you agree to install a Software?",4,"Q1")
If Q1=6 Then
Q2=MsgBox ("Do you want to continue?",4,"Q2")
If Q2=6 Then
Q3=MsgBox ("Do you want to continue still?",4,"Q3")
Else
WScript.Quit
End If
Else
WScript.Quit
End If
Comments:
-
be aware that running this installer in System Context (like when deployed through SCCM) will by default block user interaction during installs, unless you specifically state otherwise (in SCCM it's the allow interaction with desktop setting) - pjgeutjens 11 years ago