-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathInstall-AcrobatPro.wsf
308 lines (241 loc) · 11.8 KB
/
Install-AcrobatPro.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
<job id="Install-AcrobatPro">
<script language="VBScript" src="..\..\scripts\ZTIUtility.vbs"/>
<script language="VBScript">
' //----------------------------------------------------------------------------
' //
' // Solution: Richard's Deployment Script
' // File: Install-AdobeReader.wsf
' //
' // Purpose: This will install Adobe Actobat DC Pro
' //
' // Author: Richard Tracy
' //
' // Usage: cscript Install-AcrobatPro.wsf [/arch:x64|x86] [/applysettings:<lockdownfile.reg>] [/applylockdown:<lockdownfile.reg> [/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 sNoDotVersion,sTrimVersion
Dim sPatch, sTransform, sInstallerPatchPath, sInstallerTransform
Dim sInstallName, sInstallerPath
Dim sLogFolder,sLogName,sLogPath
Dim sShortName,sRegCmd
Dim xmlDoc, objNode
'// 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
'// Variables:
'// Change if needed
sVersion = "19.010.20098"
sFile = "AcroPro.msi"
sShortName = "Acrobat2015"
' Adobe update file name has no dots and the first 2 digits are removed
sNoDotVersion = Replace(sVersion,".","")
sTrimVersion = Right(sNoDotVersion, Len(sNoDotVersion) - 2)
sPatch = "AcrobatDCUpd" & sTrimVersion & ".msp"
sTransform = "AcroPro.mst"
sInstallName = " Adobe Acrobat DC Pro"
sInstallerPath = oUtility.ScriptDir & "\Source\" & sFile
sInstallerPatchPath = oUtility.ScriptDir & "\Source\" & sVersion & "\AcroRdrDCUpd" & sTrimVersion & ".msp"
sInstallerTransform = oUtility.ScriptDir & "\Source\" & sTransform
'// 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
'// 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
iRetVal = oUtility.RunWithHeartbeat("msiexec /i """ & sInstallerPath & """ TRANSFORMS=""" & sInstallerTransform & """ REBOOT=REALLYSUPPRESS EULA_ACCEPT=YES /qn /norestart /l*v """ & sLogPath & """")
if (iRetVal = 0) or (iRetVal = 3010) then
ZTIProcess = Success
oUtility.RunWithHeartbeat("msiexec /p """ & sInstallerPatchPath & """ /qn /norestart")
DeleteFile "C:\Users\Public\Desktop","Adobe Acrobat DC.lnk"
'// EXPORT DEFAULT ACCOCIATION XML
'// -------------------------------------------
Dim sDefaultXMLPath,sDefaultXSLPath
sDefaultXMLPath = oEnv("TEMP") & "\Default_Assoc_" & sShortName & ".XML"
sDefaultXSLPath = (oUtility.ScriptDir & "\Configs\indent.xsl")
'Copy file assocaition xml to temp
oFSO.CopyFile (oUtility.ScriptDir & "\Configs\File_Assoc_" & sShortName & ".XML"), (oEnv("TEMP") & "\File_Assoc_" & sShortName & ".XML"), True
'Export current default association
oUtility.RunWithConsoleLogging("Dism.exe /online /Export-DefaultAppAssociations:""" & sDefaultXMLPath & """")
'// LOAD DEFAULT ACCOCIATION XML
'// -------------------------------------------
' Create an xml Document object and load your file
Set xmlDoc = CreateObject("Microsoft.XMLDOM")
'Set xmlDoc = CreateObject("Msxml2.DOMDocument")
xmlDoc.Async = "False"
'load default accosications that was exported
xmlDoc.Load sDefaultXMLPath
Set objNode = xmlDoc.selectNodes("//DefaultAssociations/Association")
Dim x
for each x in objNode
if x.Attributes.getNamedItem("Identifier").Text = ".pdf" then
oLogging.CreateEntry "Found Identifier = "".pdf""", LogTypeInfo
x.setAttribute "ProgId", "AcroExch.Document.DC"
x.setAttribute "ApplicationName", sInstallName
End If
Next
'create new asscocations
Dim newNode,newLineNode
Set objNode = xmlDoc.selectNodes("//DefaultAssociations")
NewNodewithThreeAttributes xmlDoc, "Association", "Identifier",".pdfxml","ProgId","AcroExch.pdfxml","ApplicationName", sInstallName
NewNodewithThreeAttributes xmlDoc, "Association", "Identifier", ".acrobatsecuritysettings", "ProgId", "AcroExch.acrobatsecuritysettings", "ApplicationName", sInstallName
NewNodewithThreeAttributes xmlDoc, "Association", "Identifier", ".fdf", "ProgId", "AcroExch.FDFDoc", "ApplicationName", sInstallName
NewNodewithThreeAttributes xmlDoc, "Association", "Identifier", ".xfdf", "ProgId", "AcroExch.XFDFDoc", "ApplicationName", sInstallName
NewNodewithThreeAttributes xmlDoc, "Association", "Identifier", ".xdp", "ProgId", "AcroExch.XDPDoc", "ApplicationName", sInstallName
NewNodewithThreeAttributes xmlDoc, "Association", "Identifier", ".pdx", "ProgId", "PDXFileType", "ApplicationName", sInstallName
NewNodewithThreeAttributes xmlDoc, "Association", "Identifier", ".api", "ProgId", "AcroExch.Plugin", "ApplicationName", sInstallName
NewNodewithThreeAttributes xmlDoc, "Association", "Identifier", ".secstore", "ProgId", "AcroExch.SecStore", "ApplicationName", sInstallName
' Save the changes
xmlDoc.Save sDefaultXMLPath
' Clean up
If Not objNode Is Nothing Then
Set objNode = Nothing
End If
Set xmlDoc = Nothing
'// FORMAT DEFAULT ACCOCIATION XML
'// -------------------------------------------
'Load XSL
Dim strOutputFile,objInputFile, objOutputFile, strXML
'build name for formatted accociation file
strOutputFile = oEnv("TEMP") & "\Default_Assoc_" & sShortName & "_Formatted.XML"
Dim objXML,objXSL
Set objXML = CreateObject("Msxml2.DOMDocument")
Set objXSL = CreateObject("Msxml2.DOMDocument")
' Put whitespace between tags. (Required for XSL transformation.)
Set objInputFile = oFSO.OpenTextFile(sDefaultXMLPath,1,False,-2)
Set objOutputFile = oFSO.CreateTextFile(strOutputFile,True,False)
strXML = objInputFile.ReadAll
strXML = Replace(strXML,"><",">" & vbCrLf & "<")
objOutputFile.Write strXML
objInputFile.Close
objOutputFile.Close
' Create an XSL stylesheet for transformation.
Dim strStylesheet : strStylesheet = _
"<xsl:stylesheet version=""1.0"" xmlns:xsl=""http://www.w3.org/1999/XSL/Transform"">" & _
"<xsl:output method=""xml"" indent=""yes""/>" & _
"<xsl:template match=""/"">" & _
"<xsl:copy-of select="".""/>" & _
"</xsl:template>" & _
"</xsl:stylesheet>"
objXSL.loadXML strStylesheet
objXML.load strOutputFile
objXML.transformNode objXSL
objXML.save strOutputFile
'// IMPORT DEFAULT ACCOCIATION XML
'// -------------------------------------------
oUtility.RunWithConsoleLogging("dism.exe /online /Import-DefaultAppAssociations:""" & strOutputFile & """ /LogPath:""" & sLogFolder & "\AcrobatPro_SetAssoc_DISM.log""")
'// APPLY LOCKDOWN
'// -------------------------------------------
'sRegCmd = "cmd.exe /c " & oEnv("SystemRoot") & "\regedit.exe"
'sRegCmd = sRegCmd & " /s """ & oUtility.ScriptDir & "\Configs\settings_" & sShortName & "_" & sArch & ".reg"""
'oShell.Run(sRegCmd, 0, true)
'oUtility.RunWithConsoleLogging sRegCmd
'sRegCmd = sRegCmd & " /s """ & oUtility.ScriptDir & "\Configs\lockdown_" & sShortName & ".reg"""
'oUtility.RunWithConsoleLogging sRegCmd
oShell.RegWrite "HKCU\SOFTWARE\Adobe\Adobe Acrobat\DC\AdobeViewer\EULA", 1, "REG_DWORD"
'oShell.RegWrite "HKCU\SOFTWARE\Adobe\Adobe Acrobat\DC\Security\cDigSig\cEUTLDownload\bLoadSettingsFromURL", 0, "REG_DWORD"
'oShell.RegWrite "HKCU\SOFTWARE\Adobe\Adobe Acrobat\DC\Security\cDigSig\cAdobeDownload\bLoadSettingsFromURL", 0, "REG_DWORD"
'oShell.RegWrite "HKCU\SOFTWARE\Adobe\Adobe Acrobat\DC\AVGeneral\bFIPSMode", 1, "REG_DWORD"
iRetVal = oUtility.RunWithHeartbeat("reg load ""HKU\Temp"" """ & oEnv("SystemDrive") & "\Users\Default\NTUSER.DAT""")
'On Error Resume Next
Const HKU_USERS = &H80000003
Dim objRegistry,strKeyPath
Set objRegistry = GetObject("winmgmts:\\.\root\default:StdRegProv")
strKeyPath = "Temp\SOFTWARE\Adobe\Adobe Acrobat\DC\AdobeViewer"
objRegistry.CreateKey HKU_USERS, strKeyPath
oShell.RegWrite "HKEY_USERS\Temp\SOFTWARE\Adobe\Adobe Acrobat\DC\AdobeViewer\EULA", 1, "REG_DWORD"
'oShell.RegWrite "HKEY_USERS\Temp\SOFTWARE\Adobe\Adobe Acrobat\DC\Security\cDigSig\cEUTLDownload\bLoadSettingsFromURL", 0, "REG_DWORD"
'oShell.RegWrite "HKEY_USERS\Temp\SOFTWARE\Adobe\Adobe Acrobat\DC\Security\cDigSig\cAdobeDownload\bLoadSettingsFromURL", 0, "REG_DWORD"
'oShell.RegWrite "HKEY_USERS\Temp\SOFTWARE\Adobe\Adobe Acrobat\DC\AVGeneral\bFIPSMode", 1, "REG_DWORD"
oShell.Run "reg unload HKU\Temp", 0, true
oLogging.CreateEntry "Finished " & sInstallName & " installation", LogTypeInfo
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
Sub NewNodewithThreeAttributes(objDom, nodeName, attribName1, attribValue1, attribName2, attribValue2, attribName3, attribValue3)
Dim newNode,newLineNode
'build new node
Set newNode = objDom.CreateElement(nodeName)
'add 3 sttributes
AddNodeAttribute objDom, newNode, attribName1, attribValue1
AddNodeAttribute objDom, newNode, attribName2, attribValue2
AddNodeAttribute objDom, newNode, attribName3, attribValue3
'add new line
Set newLineNode = objDom.createTextNode(vbCrLf)
'newNode.appendChild(newLineNode)
End Sub
Sub AddNodeAttribute(objDom, objNode, strName, strValue)
Dim objAttrib
Set objAttrib = objDOM.createAttribute(strName)
objAttrib.Text =strValue
objNode.Attributes.setNamedItem objAttrib
objDOM.documentElement.appendChild objNode
End Sub
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 DeleteFile(sPath, sName)
On error resume next
Dim strFullPath
strFullPath = sPath & "\" & sName
If oFSO.fileexists(strFullPath) Then
oLogging.CreateEntry "File Found: " & strFullPath, LogTypeInfo
oFSO.DeleteFile strFullPath,0
oLogging.CreateEntry "File Deleted: " & strFullPath, LogTypeInfo
Else
oLogging.CreateEntry "File Not Found: " & strFullPath & ", skipping", LogTypeInfo
End If
End Function
</script>
</job>