-
Notifications
You must be signed in to change notification settings - Fork 2
/
silent-install.qs
47 lines (39 loc) · 1.37 KB
/
silent-install.qs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
function Controller()
{
installer.installationFinished.connect(function() {
gui.clickButton(buttons.FinishButton);
})
}
Controller.prototype.IntroductionPageCallback = function()
{
gui.clickButton(buttons.NextButton); // automatically click the Next button
}
Controller.prototype.TargetDirectoryPageCallback = function()
{
gui.clickButton(buttons.NextButton); // automatically click the Next button
}
Controller.prototype.ComponentSelectionPageCallback = function()
{
gui.clickButton(buttons.NextButton); // automatically click the Next button
}
Controller.prototype.LicenseAgreementPageCallback = function()
{
gui.currentPageWidget().AcceptLicenseRadioButton.setChecked(true);
gui.clickButton(buttons.NextButton); // automatically click the Next button
}
Controller.prototype.StartMenuDirectoryPageCallback = function()
{
gui.clickButton(buttons.NextButton); // automatically click the Next button
}
Controller.prototype.ReadyForInstallationPageCallback = function()
{
gui.clickButton(buttons.NextButton); // automatically click the Next button
}
Controller.prototype.PerformInstallationPageCallback = function()
{
gui.clickButton(buttons.NextButton); // automatically click the Next button
}
Controller.prototype.InstallationFinishedPageCallback = function()
{
gui.clickButton(buttons.NextButton); // automatically click the Next button
}