You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,16 @@
1
+
2.4.2
2
+
* Correct false positive error when completing an IIS inventory job.
3
+
* Revert to specifying the version of PowerShell to use when establishing a local PowerShell Runspace.
4
+
* Fixed typo in error message.
5
+
1
6
2.4.1
2
7
* Modified the CertUtil logic to use the -addstore argument when no password is sent with the certificate information.
3
8
* Added additional error trapping and trace logs
4
9
5
10
2.4.0
6
11
* Changed the way certificates are added to cert stores. CertUtil is now used to import the PFX certificate into the associated store. The CSP is now considered when maintaining certificates, empty CSP values will result in using the machines default CSP.
7
12
* Added the Crypto Service Provider and SAN Entry Parameters to be used on Inventory queries, Adding and ReEnrollments for the WinCert, WinSQL and IISU extensions.
8
-
* Changed how Client Machine Names are handled when a 'localhost' connection is desiered. The new naming convention is: {machineName}|localmachine. This will eliminate the issue of unqiue naming conflicts.
13
+
* Changed how Client Machine Names are handled when a 'localhost' connection is desired. The new naming convention is: {machineName}|localmachine. This will eliminate the issue of unique naming conflicts.
9
14
* Updated the manifest.json to now include WinSQL ReEnrollment.
10
15
* Updated the integration-manifest.json file for new fields in cert store types.
11
16
@@ -49,7 +54,7 @@
49
54
2.0.0
50
55
* Add support for reenrollment jobs (On Device Key Generation) with the ability to specify a cryptographic provider. Specification of cryptographic provider allows HSM (Hardware Security Module) use.
51
56
* Local PAM Support added (requires Universal Orchestrator Framework version 10.1)
52
-
* Certificate store type changed from IISBin to IISU. See readme for migration notes.
57
+
* Certificate store type changed from IISBin to IISU. See README for migration notes.
varfailureMessage=$"Managemenmt job {config.OperationType} failed for Site '{config.CertificateStoreDetails.StorePath}' on server '{config.CertificateStoreDetails.ClientMachine}' with error: '{LogHandler.FlattenException(ex)}'";
104
+
varfailureMessage=$"Management job {config.OperationType} failed for Site '{config.CertificateStoreDetails.StorePath}' on server '{config.CertificateStoreDetails.ClientMachine}' with error: '{LogHandler.FlattenException(ex)}'";
ps2.AddScript("Set-ExecutionPolicy RemoteSigned -Scope Process -Force");
55
58
ps2.AddScript("Import-Module WebAdministration");
56
-
//var result = ps.Invoke();
57
59
}
58
60
59
61
varsearchScript="Foreach($Site in get-website) { Foreach ($Bind in $Site.bindings.collection) {[pscustomobject]@{name=$Site.name;Protocol=$Bind.Protocol;Bindings=$Bind.BindingInformation;thumbprint=$Bind.certificateHash;sniFlg=$Bind.sslFlags}}}";
60
62
ps2.AddScript(searchScript);
61
-
variisBindings=ps2.Invoke();// Responsible for getting all bound certificates for each website
63
+
64
+
_logger.LogTrace($"Attempting to initiate the following script:\n{searchScript}");
varfailureMessage=$"Managemenmt job {config.OperationType} failed for Site '{config.CertificateStoreDetails.StorePath}' on server '{config.CertificateStoreDetails.ClientMachine}' with error: '{LogHandler.FlattenException(ex)}'";
99
+
varfailureMessage=$"Management job {config.OperationType} failed for Site '{config.CertificateStoreDetails.StorePath}' on server '{config.CertificateStoreDetails.ClientMachine}' with error: '{LogHandler.FlattenException(ex)}'";
0 commit comments