-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathInstall-Java.wsf
203 lines (149 loc) · 6.17 KB
/
Install-Java.wsf
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<job id="Install-Java">
<script language="VBScript" src="..\..\scripts\ZTIUtility.vbs"/>
<script language="VBScript">
' //----------------------------------------------------------------------------
' //
' // Solution: Richard's Deployment Script
' // File: Install-Java.wsf
' //
' // Purpose: This will install Java
' //
' // Author: Richard Tracy
' //
' // Usage: cscript Install-Java.wsf [/arch:x64|x86] [/debug:true]
' //
' //----------------------------------------------------------------------------
'//----------------------------------------------------------------------------
'// Global constant and variable declarations
'//----------------------------------------------------------------------------
Option Explicit
Dim iRetVal
'//----------------------------------------------------------------------------
'// Main routine
'//----------------------------------------------------------------------------
'On Error Resume Next
iRetVal = ZTIProcess
ProcessResults iRetVal
On Error Goto 0
'//---------------------------------------------------------------------------
'// Function: ZTIProcess()
'//---------------------------------------------------------------------------
Function ZTIProcess()
Dim sVersion,sArch,sFile
Dim sType
Dim sInstallName, sInstallerPath
Dim arySplitVer,sMajVer,sMinVer
Dim sLogFolder,sLogName,sLogPath
Dim sInstallerConfig
Dim sPrefix
'// Apply Architecture arguments:
'If no argument provided check for MDT/SCCM variable
'If no variable or argument is provided, defualt to x86
If oUtility.Arguments.Exists("arch") Then
sArch = LCase(oUtility.Arguments("arch"))
ElseIf oEnvironment.Exists("Architecture") Then
sArch = LCase(oEnvironment.Item("Architecture"))
Else
sArch = "x86"
End If
' check if MDT variable exists
If oUtility.Arguments.Exists("prefix") Then
sPrefix = LCase(oUtility.Arguments("prefix"))
ElseIf oEnvironment.Exists("Prefix") Then
sPrefix = oEnvironment.Item("Prefix")
End if
'// Variables:
'// Change if needed
sVersion = "1.8.0.211"
sType = "jre"
arySplitVer = Split(sVersion, ".")
sMajVer=arySplitVer(1)
sMinVer=arySplitVer(3)
If sArch = "x64" then
sFile = sType & "-" & sMajVer & "u" & sMinVer & "-windows-x64.exe"
Else
sFile = sType & "-" & sMajVer & "u" & sMinVer & "-windows-i586.exe"
End If
sInstallName = "Java (" & UCase(sType) & ")"
sInstallerPath = oUtility.ScriptDir & "\source\" & sVersion & "\" & sFile
'// Build log path (incase not used in task sequence)
If oEnvironment.Exists("_SMSTSLogPath") Then
sLogFolder = oEnvironment.Item("_SMSTSLogPath") & "\AppLogs"
Else
sLogFolder = oEnv("TEMP") & "\AppLogs"
End If
oUtility.VerifyPathExists sLogFolder
sLogName = Replace(sInstallName & "_" & sVersion & "_" & sArch & ".log"," ","")
sLogPath = sLogFolder & "\" & sLogName
sInstallerConfig = oUtility.ScriptDir & "\Configs\java.installsettings.cfg"
'// Start the process
oLogging.CreateEntry "Starting " & sInstallName & " (" & sVersion & ") " & sArch & " installation", LogTypeInfo
If not oFSO.FileExists(sInstallerPath) then
oLogging.CreateEntry sInstallerPath & " was not found, unable to install " & sInstallName & " (" & sVersion & ")", LogTypeError
ZTIProcess = Failure
Exit Function
End if
'// Disable Zone Checks
oEnv("SEE_MASK_NOZONECHECKS") = 1
If not oFSO.FileExists(sInstallerConfig) then
iRetVal = oUtility.RunWithHeartbeat("""" & sInstallerPath & """ /s REMOVEOUTOFDATEJRES=1 /L """ & sLogPath & """")
Else
oFSO.CopyFile sInstallerConfig, oEnv("TEMP") & "\", True
iRetVal = oUtility.RunWithHeartbeat("""" & sInstallerPath & """ INSTALLCFG=""" & oEnv("TEMP") & "\java.installsettings.cfg"" /L """ & sLogPath & """")
End if
if (iRetVal = 0) or (iRetVal = 3010) then
ZTIProcess = Success
oLogging.CreateEntry "Finished " & sInstallName & " installation", LogTypeInfo
'DeleteFolder "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Java"
oUtility.VerifyPathExists "C:\WINDOWS\Sun\Java\Deployment"
'Copy deployment.config
oLogging.CreateEntry "Copying " & oUtility.ScriptDir & "\Configs\deployment.config to C:\WINDOWS\Sun\Java\Deployment", LogTypeVerbose
oFSO.CopyFile oUtility.ScriptDir & "\Configs\deployment.config", "C:\WINDOWS\Sun\Java\Deployment\", True
'Copy deployment.properties
If not oFSO.FileExists(oUtility.ScriptDir & "\Configs\deployment_"& sPrefix & ".properties") then
oFSO.CopyFile oUtility.ScriptDir & "\Configs\deployment.properties", "C:\WINDOWS\Sun\Java\Deployment\", True
Else
oFSO.CopyFile oUtility.ScriptDir & "\Configs\deployment_"& sPrefix & ".properties", "C:\WINDOWS\Sun\Java\Deployment\", True
End If
'Copy exception.sites
If not oFSO.FileExists(oUtility.ScriptDir & "\Configs\exception_"& sPrefix & ".sites") then
oFSO.CopyFile oUtility.ScriptDir & "\Configs\exception.sites", "C:\WINDOWS\Sun\Java\Deployment\", True
Else
oFSO.CopyFile oUtility.ScriptDir & "\Configs\exception_"& sPrefix & ".sites", "C:\WINDOWS\Sun\Java\Deployment\", True
End If
Else
ZTIProcess = Failure
oLogging.CreateEntry sInstallName & " installation failed with exit code = " & iRetVal, LogTypeError
End If
'// Enable Zone Checks
oEnv.Remove("SEE_MASK_NOZONECHECKS")
End Function
Function CopyFile(sName,sDestPath)
If oFSO.FileExists(oUtility.ScriptDir & "\" & sName) Then
If Not oFSO.FolderExists(sDestPath) Then
oLogging.CreateEntry "Created Directory: " & sDestPath, LogTypeInfo
oFSO.CreateFolder sDestPath
End If
oLogging.CreateEntry "Preparing to copy " & oUtility.ScriptDir & "\" & sName, LogTypeInfo
oFSO.CopyFile oUtility.ScriptDir & "\" & sName, sDestPath, True
oLogging.CreateEntry "The file " & sName & " was copied to " & sDestPath, LogTypeInfo
CopyFile=0
Else
oLogging.CreateEntry "Failed to find : " & oUtility.ScriptDir & "\" & sName, LogTypeERROR
CopyFile=2
End If
End Function
Function DeleteFolder(sPath)
On error resume next
Dim strPath
strPath = sPath
If oFSO.FolderExists(strPath) Then
oLogging.CreateEntry "Folder Found: " & strPath, LogTypeInfo
oFSO.DeleteFolder strPath,0
oLogging.CreateEntry "Folder Deleted: " & strPath, LogTypeInfo
Else
oLogging.CreateEntry "Folder Not Found: " & strPath & ", skipping", LogTypeInfo
End If
End Function
</script>
</job>