Prompt pay planner software needing to be pushed via SCCM
I have run into a bit of a knowledge issue on my end. I've installed packages before, but none that needed intervention from the users side. We are testing a piece of software from the aforementioned company and the user will need to add the validation code and a prompt to install a piece of sql code. So far I have created the package, however, I cannot figure out how to have it add the validation code and say yes to the sql prompt. Should this be set up as a task sequence or a package distribution.
Thanks in advance for any insight...
Answers (2)
Is that validation code to be entered to trigger installation or during the installation.
Is that SQL code part of your main application?
Comments:
-
You can use VBScript
Code = MsgBox ("Enter the validation code")
If Code="YourCode" Then
Execute your SQL part here
End If - jagadeish 12 years ago