Prepare for release 2.18
This commit is contained in:
parent
26f91ca5df
commit
badacf800d
|
@ -1,8 +1,8 @@
|
|||
Version 2.18
|
||||
- [Module] Added the Get-ADDBKdsRootKey cmdlet.
|
||||
- [Module] Added the Get-ADDBKdsRootKey cmdlet to aid DPAPI-NG decryption, e.g. SID-protected PFX files.
|
||||
- [Module] The Get-ADReplAccount cmdlet now correctly reports the access denied error.
|
||||
- [Module] Fixed a bug in progress reporting of the Get-ADReplAccount cmdlet.
|
||||
- [Framework] Added support for KdsRootKey retrieval.
|
||||
- [Framework] Added support for KDS Root Key retrieval.
|
||||
- [Framework] Replication errors are now reported using more suitable exception types.
|
||||
|
||||
Version 2.17
|
||||
|
|
|
@ -6,8 +6,8 @@ using System.Runtime.InteropServices;
|
|||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("DSInternals Common Library")]
|
||||
[assembly: AssemblyVersion("2.17")]
|
||||
[assembly: AssemblyFileVersion("2.17")]
|
||||
[assembly: AssemblyVersion("2.18")]
|
||||
[assembly: AssemblyFileVersion("2.18")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>DSInternals DataStore is an advanced framework for offline ntds.dit file manipulation. It can be used to extract password hashes from Active Directory backups or to modify the sIDHistory and primaryGroupId attributes.</description>
|
||||
<summary>DSInternals DataStore is an advanced framework for offline ntds.dit file manipulation.</summary>
|
||||
<releaseNotes>Updated dependencies.</releaseNotes>
|
||||
<releaseNotes>Added support for KDS Root Key retrieval.</releaseNotes>
|
||||
<copyright>Copyright (c) 2015-2016 Michael Grafnetter. All rights reserved.</copyright>
|
||||
<tags>ActiveDirectory Security NTDS</tags>
|
||||
<references>
|
||||
|
|
|
@ -6,8 +6,8 @@ using System.Runtime.InteropServices;
|
|||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("DSInternals DataStore Library")]
|
||||
[assembly: AssemblyVersion("2.17")]
|
||||
[assembly: AssemblyFileVersion("2.17")]
|
||||
[assembly: AssemblyVersion("2.18")]
|
||||
[assembly: AssemblyFileVersion("2.18")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
RootModule = 'DSInternals.psm1'
|
||||
|
||||
# Version number of this module.
|
||||
ModuleVersion = '2.17.1'
|
||||
ModuleVersion = '2.18'
|
||||
|
||||
# ID used to uniquely identify this module
|
||||
GUID = '766b3ad8-eb78-48e6-84bd-61b31d96b53e'
|
||||
|
@ -120,7 +120,7 @@ PrivateData = @{
|
|||
|
||||
# ReleaseNotes of this module
|
||||
ReleaseNotes = @"
|
||||
- Added the Get-ADDBKdsRootKey cmdlet.
|
||||
- Added the Get-ADDBKdsRootKey cmdlet to aid DPAPI-NG decryption, e.g. SID-protected PFX files.
|
||||
- The Get-ADReplAccount cmdlet now correctly reports the access denied error.
|
||||
- Fixed a bug in progress reporting of the Get-ADReplAccount cmdlet.
|
||||
"@
|
||||
|
|
|
@ -5,8 +5,8 @@ using System.Runtime.InteropServices;
|
|||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("DSInternals PowerShell Commands")]
|
||||
[assembly: AssemblyVersion("2.17.1")]
|
||||
[assembly: AssemblyFileVersion("2.17.1")]
|
||||
[assembly: AssemblyVersion("2.18")]
|
||||
[assembly: AssemblyFileVersion("2.18")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
|
|
|
@ -14,7 +14,7 @@ using namespace System::Security::Permissions;
|
|||
//
|
||||
[assembly:AssemblyTitleAttribute(L"DSInternals Replication Interop Library")];
|
||||
// Note: Do not forget to change the version in app.rc files.
|
||||
[assembly:AssemblyVersionAttribute("2.17.0")];
|
||||
[assembly:AssemblyVersionAttribute("2.18.0")];
|
||||
[assembly:AssemblyDescriptionAttribute(L"")];
|
||||
[assembly:AssemblyConfigurationAttribute(L"")];
|
||||
[assembly:AssemblyCompanyAttribute(L"")];
|
||||
|
|
Binary file not shown.
|
@ -6,8 +6,8 @@ using System.Runtime.InteropServices;
|
|||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("DSInternals Replication Data Model")]
|
||||
[assembly: AssemblyVersion("2.17")]
|
||||
[assembly: AssemblyFileVersion("2.17")]
|
||||
[assembly: AssemblyVersion("2.18")]
|
||||
[assembly: AssemblyFileVersion("2.18")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>DSInternals Replication implements a client for the Active Directory Replication Service Remote Protocol (DRS-R). It can be used to remotely extract password hashes from domain controllers.</description>
|
||||
<summary>DSInternals Replication implements a client for the Active Directory Replication Service Remote Protocol (DRS-R).</summary>
|
||||
<releaseNotes>Added the ability to retrieve the replication cursor.</releaseNotes>
|
||||
<releaseNotes>Replication errors are now reported using more suitable exception types.</releaseNotes>
|
||||
<copyright>Copyright (c) 2015-2016 Michael Grafnetter. All rights reserved.</copyright>
|
||||
<tags>ActiveDirectory Security RPC DRSR</tags>
|
||||
<references>
|
||||
|
|
|
@ -6,8 +6,8 @@ using System.Runtime.InteropServices;
|
|||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("DSInternals Replication Library")]
|
||||
[assembly: AssemblyVersion("2.17")]
|
||||
[assembly: AssemblyFileVersion("2.17")]
|
||||
[assembly: AssemblyVersion("2.18")]
|
||||
[assembly: AssemblyFileVersion("2.18")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
|
|
|
@ -6,8 +6,8 @@ using System.Runtime.InteropServices;
|
|||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("DSInternals SAM Library")]
|
||||
[assembly: AssemblyVersion("2.17")]
|
||||
[assembly: AssemblyFileVersion("2.17")]
|
||||
[assembly: AssemblyVersion("2.18")]
|
||||
[assembly: AssemblyFileVersion("2.18")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
|
|
Loading…
Reference in New Issue