This repository has been archived by the owner on Mar 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Application_Example.xml
45 lines (45 loc) · 1.72 KB
/
Application_Example.xml
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
<Applications>
<Application>
<!-- APPLICATION -->
<Name>Microsoft_Bob 2019</Name>
<Publisher>Microsoft</Publisher>
<SoftwareVersion>2019</SoftwareVersion>
<Licensed>No</Licensed>
<ManualInstallation>No</ManualInstallation>
<AppV>No</AppV>
<!-- DEPLOYMENT TYPE(S) -->
<DeploymentType>
<Name>Test 4</Name>
<ContentLocation>\\<FQDN>\Source$\Apps\Microsoft\Bob\2019\</ContentLocation>
<InstallationProgram>Setup.exe</InstallationProgram>
<UninstallProgram>Uninstall.exe</UninstallProgram>
<InstallationBehaviorType>InstallForSystem</InstallationBehaviorType>
<ScriptContent>CHANGE ME</ScriptContent>
<ScriptType>VBS</ScriptType>
</DeploymentType>
</Application>
<Application>
<!-- APPLICATION -->
<Name>Microsoft_Bob 2020</Name>
<Publisher>Microsoft</Publisher>
<SoftwareVersion>2020</SoftwareVersion>
<Licensed>No</Licensed>
<ManualInstallation>No</ManualInstallation>
<AppV>No</AppV>
<!-- DEPLOYMENT TYPE(S) -->
<DeploymentType>
<MSIInstallationFileLocation>\\<FQDN>\Source$\Apps\Microsoft\Bob\2020\MicrosoftBob.msi</MSIInstallationFileLocation>
<InstallationBehaviorType>InstallForSystem</InstallationBehaviorType>
</DeploymentType>
<DeploymentType>
<Name>Microsoft Bob 2020 - VBS Script</Name>
<ContentLocation>\\<FQDN>\Source$\Apps\Microsoft\Bob\2020\</ContentLocation>
<InstallationProgram>MicrosoftBob.exe /silent</InstallationProgram>
<UninstallProgram>Uninstall.exe</UninstallProgram>
<InstallationBehaviorType>InstallForSystem</InstallationBehaviorType>
<ScriptContent>One line scripts only please</ScriptContent>
<!-- Allowed Values: Powershell, VBScript, JScript -->
<ScriptType>VBScript</ScriptType>
</DeploymentType>
</Application>
</Applications>