-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathInstall-DODCerts.wsf
94 lines (61 loc) · 2.38 KB
/
Install-DODCerts.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
<job id="Install-DODCerts">
<script language="VBScript" src="..\..\scripts\ZTIUtility.vbs"/>
<script language="VBScript">
' //----------------------------------------------------------------------------
' //
' // Solution: Richard's Deployment Script
' // File: Install-DODCerts.wsf
' //
' // Purpose: This will use certutil to install certs
' //
' // Author: Richard Tracy
' //
' // Usage: cscript Install-DODCerts.wsf [/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 sInstallName
Dim sCertDirPath
Dim objFolder, objFile
'// Variables
sInstallName = "DOD root certs"
oLogging.CreateEntry "Starting to add certs to certificate store", LogTypeInfo
sCertDirPath = oUtility.ScriptDir & "\Certs"
'// Disable Zone Checks
oEnv("SEE_MASK_NOZONECHECKS") = 1
'Install DOD Root Certs
Set objFolder = oFSO.GetFolder(sCertDirPath & "\DOD\Root\")
for each objFile in objFolder.Files
if UCase(oFSO.GetExtensionName(objFile.name)) = "CER" Then
oLogging.CreateEntry "importing to root certificate store: """ & sCertDirPath & "\DOD\Root\" & objFile.Name & "", LogTypeInfo
iRetVal = oUtility.RunWithHeartbeat("certutil.exe -f -addstore -enterprise -user root """ & sCertDirPath & "\DOD\Root\" & objFile.Name & """")
end if
WScript.Sleep 1000
Next
if (iRetVal = 0) or (iRetVal = 1) then
oLogging.CreateEntry "Successfully adding Certificate to intermediate store", LogTypeInfo
Else
oLogging.CreateEntry "Import failed. Return code from command = " & iRetVal, LogTypeError
End If
'always end success
ZTIProcess = Success
'// Enable Zone Checks
oEnv.Remove("SEE_MASK_NOZONECHECKS")
End Function
</script>
</job>