Skip to content

Commit

Permalink
Merge pull request #36 from NewbeeOne/patch-1
Browse files Browse the repository at this point in the history
Update ADACLScan.ps1
  • Loading branch information
canix1 authored Jan 8, 2021
2 parents ac37037 + a47850e commit 4d1fc04
Showing 1 changed file with 21 additions and 12 deletions.
33 changes: 21 additions & 12 deletions ADACLScan.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,8 @@ $global:ForestFLHashAD = @{
4="Windows Server 2008 R2";
5="Windows Server 2012";
6="Windows Server 2012 R2";
7="Windows Server 2016"
7="Windows Server 2016";
8="Windows Server 2019"
}
#Hash table for Domain Level
$global:DomainFLHashAD = @{
Expand All @@ -387,7 +388,8 @@ $global:DomainFLHashAD = @{
4="Windows Server 2008 R2";
5="Windows Server 2012";
6="Windows Server 2012 R2";
7="Windows Server 2016"
7="Windows Server 2016";
8="Windows Server 2019"
}
$global:SchemaHashAD = @{
13="Windows 2000 Server";
Expand All @@ -398,10 +400,11 @@ $global:SchemaHashAD = @{
56="Windows Server 2012";
69="Windows Server 2012 R2";
72="Windows Server 2016 Technical Preview";
81="Windows Server 2016 Technical Preview 2";
82="Windows Server 2016 Technical Preview 3";
85="Windows Server 2016 Technical Preview 4";
87="Windows Server 2016"
81="Windows Server 2016 Technical Preview 2";
82="Windows Server 2016 Technical Preview 3";
85="Windows Server 2016 Technical Preview 4";
87="Windows Server 2016";
88="Windows Server 2019"
}

# List of Exchange Schema versions
Expand All @@ -425,10 +428,16 @@ $global:SchemaHashExchange = @{
15300="Exchange Server 2013 CU5";
15303="Exchange Server 2013 CU6";
15312="Exchange Server 2013 CU7";
15317="Exchange Server 2016";
15323="Exchange Server 2016 CU1";
15325="Exchange Server 2016 CU2";
15326="Exchange Server 2016 CU3";
15317="Exchange Server 2016";
15323="Exchange Server 2016 CU1";
15325="Exchange Server 2016 CU2";
15326="Exchange Server 2016 CU3-CU5";
15330="Exchange Server 2016 CU6";
15332="Exchange Server 2016 CU7-CU18";
15333="Exchange Server 2016 CU19";
17000="Exchange Server 2019";
17001="Exchange Server 2019 CU2-CU7";
17002="Exchange Server 2019 CU8"
}

# List of Lync Schema versions
Expand All @@ -437,7 +446,7 @@ $global:SchemaHashLync = @{
1007="OCS 2007 R1";
1008="OCS 2007 R2";
1100="Lync Server 2010";
1150="Lync Server 2013"
1150="Lync Server 2013/Skype for Business 2015"
}
Function BuildSchemaDic
{
Expand Down Expand Up @@ -15488,4 +15497,4 @@ else # Else GUI will open
$global:bolCMD = $false
[void]$Window.ShowDialog()
}
}
}

0 comments on commit 4d1fc04

Please sign in to comment.