Skip to content

Commit

Permalink
6.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTaylorLee committed Nov 8, 2024
1 parent 3805fad commit 627b1eb
Show file tree
Hide file tree
Showing 30 changed files with 192 additions and 81 deletions.
3 changes: 2 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,5 @@
- 6.24.0 Update all admintoolbox modules
- 6.25.0 Update all admintoolbox modules
- 6.26.0 Update all admintoolbox modules for update pnp.powershell login method
- 6.27.0 Update all admintoolbox modules
- 6.27.0 Update all admintoolbox modules
- 6.28.0 Update all admintoolbox modules
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Taylor Lee
#
# Generated on: 9/24/2024
# Generated on: 11/5/2024
#

@{
Expand All @@ -12,13 +12,13 @@
RootModule = 'AdminToolbox.ActiveDirectoryManifest.psm1'

# Version number of this module.
ModuleVersion = '1.11.0.5'
ModuleVersion = '1.11.1.1'

# Supported PSEditions
CompatiblePSEditions = 'Desktop', 'Core'

# ID used to uniquely identify this module
GUID = 'c339f1d3-2e9d-4455-947e-6676644bc47b'
GUID = '6a080c52-231b-4cfe-ab41-1cfcc4791ce5'

# Author of this module
Author = 'Taylor Lee'
Expand Down
10 changes: 9 additions & 1 deletion PS7-x64/Modules/AdminToolbox.ActiveDirectory/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,4 +209,12 @@
* **1.11.0.2** CI Maintenance Release
* **1.11.0.3** CI Maintenance Release
* **1.11.0.4** CI Maintenance Release
* **1.11.0.5** CI Maintenance Release
* **1.11.0.5** CI Maintenance Release
* **1.11.0.6** CI Maintenance Release
* **1.11.0.7** CI Maintenance Release
* **1.11.0.8** CI Maintenance Release
* **1.11.0.9** CI Maintenance Release
* **1.11.0.10** CI Maintenance Release
* **1.11.1.0** Update get-adinfo with a proper pscustomobject usage and include global catalog servers.
* **1.11.1.1** CI Maintenance Release
* **1.11.1.2** CI Maintenance Release
34 changes: 24 additions & 10 deletions PS7-x64/Modules/AdminToolbox.ActiveDirectory/Public/Get-ADInfo.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,28 @@ function Get-ADInfo {
param (
)

Import-Module ActiveDirectory

Get-ADDomain |
Select-Object Name, Forest, ChildDomains, DistinguishedName, DNSRoot, DomainMode, ReplicaDirectoryServers, InfrastructureMaster, RIDMaster, PDCEmulator |
Format-List

Get-ADForest |
Select-Object DomainNamingMaster, SchemaMaster |
Format-List

Import-Module ActiveDirectory -WarningAction SilentlyContinue

$addomain = Get-ADDomain |
Select-Object Name, Forest, ChildDomains, DistinguishedName, DNSRoot, DomainMode, ReplicaDirectoryServers, InfrastructureMaster, RIDMaster, PDCEmulator

$adforest = Get-ADForest |
Select-Object DomainNamingMaster, SchemaMaster

$globalcatalog = (Get-ADDomainController -Filter { IsGlobalCatalog -eq $true } | Select-Object hostname).hostname -join ', '
[pscustomobject]@{
Name = $addomain.Name
Forest = $addomain.Forest
ChildDomains = (Get-ADDomain).ChildDomains -join ", "
DistinguishedName = $addomain.DistinguishedName
DomainMode = $addomain.DomainMode
DNSRoot = $addomain.DNSRoot
GlobalCatalogServers = $globalcatalog
DomainNamingMaster = $adforest.DomainNamingMaster
InfrastructureMaster = $addomain.InfrastructureMaster
ReplicaDirectoryServers = (Get-ADDomain).ReplicaDirectoryServers -join ", "
RIDMaster = $addomain.RIDMaster
PDCEmulator = $addomain.PDCEmulator
SchemaMaster = $adforest.SchemaMaster
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Taylor Lee
#
# Generated on: 9/24/2024
# Generated on: 11/5/2024
#

@{
Expand All @@ -12,13 +12,13 @@
RootModule = 'AdminToolbox.EndpointManagementManifest.psm1'

# Version number of this module.
ModuleVersion = '4.11.0.5'
ModuleVersion = '4.11.0.11'

# Supported PSEditions
CompatiblePSEditions = 'Desktop', 'Core'

# ID used to uniquely identify this module
GUID = '776231f2-6ddd-43ac-ad59-5cd3e41bf48a'
GUID = 'e717b967-29e2-4b2b-95d0-68be0b8fe84a'

# Author of this module
Author = 'Taylor Lee'
Expand Down
9 changes: 8 additions & 1 deletion PS7-x64/Modules/AdminToolbox.EndpointManagement/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,4 +232,11 @@
* **4.11.0.2** CI Maintenance Release
* **4.11.0.3** CI Maintenance Release
* **4.11.0.4** CI Maintenance Release
* **4.11.0.5** CI Maintenance Release
* **4.11.0.5** CI Maintenance Release
* **4.11.0.6** CI Maintenance Release
* **4.11.0.7** CI Maintenance Release
* **4.11.0.8** CI Maintenance Release
* **4.11.0.9** CI Maintenance Release
* **4.11.0.10** CI Maintenance Release
* **4.11.0.11** CI Maintenance Release
* **4.11.0.12** CI Maintenance Release
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Taylor Lee
#
# Generated on: 9/24/2024
# Generated on: 11/5/2024
#

@{
Expand All @@ -12,13 +12,13 @@
RootModule = 'AdminToolbox.ExchangeManifest.psm1'

# Version number of this module.
ModuleVersion = '1.10.0.5'
ModuleVersion = '1.10.0.11'

# Supported PSEditions
CompatiblePSEditions = 'Desktop', 'Core'

# ID used to uniquely identify this module
GUID = '1d67ce95-2be9-48c0-8d0e-8487fb92316b'
GUID = 'ed080edc-301e-4d6f-b0b5-78db24ca31df'

# Author of this module
Author = 'Taylor Lee'
Expand Down
9 changes: 8 additions & 1 deletion PS7-x64/Modules/AdminToolbox.Exchange/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,4 +204,11 @@
* **1.10.0.2** CI Maintenance Release
* **1.10.0.3** CI Maintenance Release
* **1.10.0.4** CI Maintenance Release
* **1.10.0.5** CI Maintenance Release
* **1.10.0.5** CI Maintenance Release
* **1.10.0.6** CI Maintenance Release
* **1.10.0.7** CI Maintenance Release
* **1.10.0.8** CI Maintenance Release
* **1.10.0.9** CI Maintenance Release
* **1.10.0.10** CI Maintenance Release
* **1.10.0.11** CI Maintenance Release
* **1.10.0.12** CI Maintenance Release
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Taylor Lee
#
# Generated on: 9/24/2024
# Generated on: 11/5/2024
#

@{
Expand All @@ -12,13 +12,13 @@
RootModule = 'AdminToolbox.FFToolsManifest.psm1'

# Version number of this module.
ModuleVersion = '4.17.0.5'
ModuleVersion = '4.17.0.11'

# Supported PSEditions
CompatiblePSEditions = 'Desktop', 'Core'

# ID used to uniquely identify this module
GUID = '28a38cb9-9366-4411-bc9e-81275d96f893'
GUID = '4e913b16-3c9a-40c3-899e-4fa490e9b0ea'

# Author of this module
Author = 'Taylor Lee'
Expand Down
9 changes: 8 additions & 1 deletion PS7-x64/Modules/AdminToolbox.FFTools/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,4 +239,11 @@
* **4.17.0.2** CI Maintenance Release
* **4.17.0.3** CI Maintenance Release
* **4.17.0.4** CI Maintenance Release
* **4.17.0.5** CI Maintenance Release
* **4.17.0.5** CI Maintenance Release
* **4.17.0.6** CI Maintenance Release
* **4.17.0.7** CI Maintenance Release
* **4.17.0.8** CI Maintenance Release
* **4.17.0.9** CI Maintenance Release
* **4.17.0.10** CI Maintenance Release
* **4.17.0.11** CI Maintenance Release
* **4.17.0.12** CI Maintenance Release
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Taylor Lee
#
# Generated on: 9/24/2024
# Generated on: 11/5/2024
#

@{
Expand All @@ -12,13 +12,13 @@
RootModule = 'AdminToolbox.FileManagementManifest.psm1'

# Version number of this module.
ModuleVersion = '1.17.0.5'
ModuleVersion = '1.17.0.11'

# Supported PSEditions
CompatiblePSEditions = 'Desktop', 'Core'

# ID used to uniquely identify this module
GUID = 'eef566f0-eed0-42ec-9a76-67261d09df54'
GUID = 'bf8c9ed9-6db0-4600-9afa-0732fc34f68a'

# Author of this module
Author = 'Taylor Lee'
Expand Down
9 changes: 8 additions & 1 deletion PS7-x64/Modules/AdminToolbox.FileManagement/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,4 +206,11 @@
* **1.17.0.2** CI Maintenance Release
* **1.17.0.3** CI Maintenance Release
* **1.17.0.4** CI Maintenance Release
* **1.17.0.5** CI Maintenance Release
* **1.17.0.5** CI Maintenance Release
* **1.17.0.6** CI Maintenance Release
* **1.17.0.7** CI Maintenance Release
* **1.17.0.8** CI Maintenance Release
* **1.17.0.9** CI Maintenance Release
* **1.17.0.10** CI Maintenance Release
* **1.17.0.11** CI Maintenance Release
* **1.17.0.12** CI Maintenance Release
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Taylor Lee
#
# Generated on: 9/24/2024
# Generated on: 11/5/2024
#

@{
Expand All @@ -12,13 +12,13 @@
RootModule = 'AdminToolbox.FortiWizardManifest.psm1'

# Version number of this module.
ModuleVersion = '2.20.0.5'
ModuleVersion = '2.20.0.11'

# Supported PSEditions
CompatiblePSEditions = 'Desktop', 'Core'

# ID used to uniquely identify this module
GUID = '3eea406b-bd75-4dd9-bc21-a56915b147e7'
GUID = '9c4d3f75-b3a6-4d84-aa08-825955ea54a6'

# Author of this module
Author = 'Taylor Lee'
Expand Down Expand Up @@ -51,7 +51,7 @@ PowerShellVersion = '5.1'
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(@{ModuleName = 'AdminToolbox.Networking'; ModuleVersion = '2.21.0.5'; },
RequiredModules = @(@{ModuleName = 'AdminToolbox.Networking'; ModuleVersion = '2.21.0.11'; },
@{ModuleName = 'ImportExcel'; ModuleVersion = '7.0.1'; },
@{ModuleName = 'posh-ssh'; ModuleVersion = '2.3.0'; })

Expand Down
10 changes: 9 additions & 1 deletion PS7-x64/Modules/AdminToolbox.FortiWizard/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,4 +221,12 @@
* **2.20.0.2** CI Maintenance Release
* **2.20.0.3** CI Maintenance Release
* **2.20.0.4** CI Maintenance Release
* **2.20.0.5** CI Maintenance Release
* **2.20.0.5** CI Maintenance Release
* **2.20.0.6** CI Maintenance Release
* **2.20.0.7** CI Maintenance Release
* **2.20.0.8** CI Maintenance Release
* **2.20.0.9** CI Maintenance Release
* **2.20.0.10** CI Maintenance Release
* **2.20.0.11** CI Maintenance Release
* **2.20.1.0** Fix New-P2PTunnelNat firewall policy output when only a single local cidr is provided.
* **2.20.1.1** CI Maintenance Release
Original file line number Diff line number Diff line change
Expand Up @@ -433,14 +433,17 @@ Function New-P2PTunnelNAT {

[int]$max = $LocalAddressCIDRs.Count
$FirewallPolicy = for ($i = 0; $i -lt $max; $i++) {
[string[]]$sa = $script:LocalAddressObjects.name
[string[]]$ipp = $IPPoolObjects.IPPoolName
[string[]]$vipn = $VIPObjects.VIPName
$params = @{
TunnelName = $TunnelName + " $i"
TunnelName = $TunnelName
SourceInterfaceName = $LANInterface
SourceAddress = $script:LocalAddressObjects.name[$i]
SourceAddress = $sa[$i]
DestinationAddress = $RemoteGroupName
service = $svcgroupname
IPPoolName = $IPPoolObjects.IPPoolName[$i]
Vipname = $VIPObjects.VIPName[$i]
IPPoolName = $ipp[$i]
Vipname = $vipn[$i]
}
New-FirewallPolicyTunnelNAT @params
}
Expand Down
6 changes: 3 additions & 3 deletions PS7-x64/Modules/AdminToolbox.Fun/AdminToolbox.Fun.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Taylor Lee
#
# Generated on: 9/24/2024
# Generated on: 11/5/2024
#

@{
Expand All @@ -12,13 +12,13 @@
RootModule = 'AdminToolbox.FunManifest.psm1'

# Version number of this module.
ModuleVersion = '1.7.0.5'
ModuleVersion = '1.7.0.11'

# Supported PSEditions
CompatiblePSEditions = 'Desktop', 'Core'

# ID used to uniquely identify this module
GUID = '8d41a586-fb7d-4cf9-af78-92c36b683190'
GUID = '73a7bf1d-4382-48d6-8b88-da26656a122c'

# Author of this module
Author = 'Taylor Lee'
Expand Down
9 changes: 8 additions & 1 deletion PS7-x64/Modules/AdminToolbox.Fun/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,4 +202,11 @@
* **1.7.0.2** CI Maintenance Release
* **1.7.0.3** CI Maintenance Release
* **1.7.0.4** CI Maintenance Release
* **1.7.0.5** CI Maintenance Release
* **1.7.0.5** CI Maintenance Release
* **1.7.0.6** CI Maintenance Release
* **1.7.0.7** CI Maintenance Release
* **1.7.0.8** CI Maintenance Release
* **1.7.0.9** CI Maintenance Release
* **1.7.0.10** CI Maintenance Release
* **1.7.0.11** CI Maintenance Release
* **1.7.0.12** CI Maintenance Release
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Taylor Lee
#
# Generated on: 9/24/2024
# Generated on: 11/5/2024
#

@{
Expand All @@ -12,13 +12,13 @@
RootModule = 'AdminToolbox.MSGraphManifest.psm1'

# Version number of this module.
ModuleVersion = '1.5.0.2'
ModuleVersion = '1.5.0.8'

# Supported PSEditions
CompatiblePSEditions = 'Desktop', 'Core'

# ID used to uniquely identify this module
GUID = '69cd4f70-5714-471d-9fd5-3c8aa90e4ca0'
GUID = '10ad8190-7579-4a1a-98e3-796e3928897a'

# Author of this module
Author = 'Taylor Lee'
Expand Down
Loading

0 comments on commit 627b1eb

Please sign in to comment.