Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions ADMF/ADMF.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
RootModule = 'ADMF.psm1'

# Version number of this module.
ModuleVersion = '1.13.110'
ModuleVersion = '1.14.112'

# ID used to uniquely identify this module
GUID = '43f2a890-942f-4dd7-bad0-b774b44ea849'
Expand All @@ -26,15 +26,15 @@
# Modules that must be imported into the global environment prior to importing
# this module
RequiredModules = @(
@{ ModuleName = 'PSFramework'; ModuleVersion = '1.12.346' }
@{ ModuleName = 'PSFramework'; ModuleVersion = '1.13.416' }
@{ ModuleName = 'ADSec'; ModuleVersion = '1.0.1' }
@{ ModuleName = 'string'; ModuleVersion = '1.1.5' }
@{ ModuleName = 'string'; ModuleVersion = '1.2.13' }
@{ ModuleName = 'ResolveString'; ModuleVersion = '1.0.0' }
@{ ModuleName = 'Principal'; ModuleVersion = '1.0.0' }
@{ ModuleName = 'ADMF.Core'; ModuleVersion = '1.1.9' }
@{ ModuleName = 'DCManagement'; ModuleVersion = '1.2.25' }
@{ ModuleName = 'DomainManagement'; ModuleVersion = '1.9.228' }
@{ ModuleName = 'ForestManagement'; ModuleVersion = '1.5.81' }
@{ ModuleName = 'ADMF.Core'; ModuleVersion = '1.2.12' }
@{ ModuleName = 'DCManagement'; ModuleVersion = '1.2.26' }
@{ ModuleName = 'DomainManagement'; ModuleVersion = '1.9.234' }
@{ ModuleName = 'ForestManagement'; ModuleVersion = '1.5.82' }
)

# Assemblies that must be loaded prior to importing this module
Expand Down
5 changes: 5 additions & 0 deletions ADMF/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.14.112 (2025-10-31)

- New: Remoting - all PS Remoting connections can now be configured with session options or to use SSH
- Fix: New-AdmfContext - eror when creating without Components

## 1.13.110 (2025-10-02)

- Upd: Invoke-AdmfForest - reordered sequence to prioritize formal schema updates over custom extensions.
Expand Down
4 changes: 2 additions & 2 deletions ADMF/functions/New-AdmfContext.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
if ($DefaultAccessRules) { $Components += 'DefaultAccessRules' }
if ($ExchangeAccessRules -eq 'Default') { $Components += 'ExchangeDefaults' }
if ($ExchangeAccessRules -eq 'SplitPermission') { $Components += 'ExchangeSPDefaults' }
$Components = $Components | Remove-PSFNull -Enumerate | Sort-Object -Unique
$actualComponents = $Components | Remove-PSFNull -Enumerate | Sort-Object -Unique
}
process
{
Expand All @@ -183,7 +183,7 @@
Copy-Item -Path "$script:ModuleRoot\internal\data\context\*" -Destination "$($contextVersionFolder.FullName)\" -Recurse

#region Process Components
foreach ($component in $Components) {
foreach ($component in $actualComponents) {
Copy-Item -Path "$script:ModuleRoot\internal\components\$component\*" -Destination "$($contextVersionFolder.FullName)" -Recurse -Force
}
#endregion Process Components
Expand Down