├── .gitattributes ├── .gitignore ├── ConfigMgrPrerequisitesTool.sln ├── ConfigMgrPrerequisitesTool ├── App.config ├── App.xaml ├── App.xaml.cs ├── ConfigMgrPrerequisitesTool.csproj ├── DirectoryEngine.cs ├── FileSystem.cs ├── FodyWeavers.xml ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Logo.ico │ ├── SCConfigMgr.png │ └── SCLogo.png ├── ScriptEngine.cs ├── Scripts │ ├── CreateCMDatabase.sql │ ├── CreateSystemManagementContainer.ps1 │ ├── GetSQLInstanceCollation.sql │ ├── SetSQLServerMemory.sql │ └── SetSSRSConfiguration.sql ├── SqlEngine.cs ├── VisualTreeHelpers.cs ├── WebEngine.cs ├── WindowsFeature.cs ├── app.manifest └── packages.config ├── LICENSE ├── README.md ├── Resources ├── Code.txt ├── CreateCMDatabase.sql ├── CreateSystemManagementContainer.ps1 ├── GetSQLInstanceCollation.sql ├── Logo.ico ├── Logo.png ├── SCConfigMgr.png ├── SCLogo.png ├── SetSQLServerMemory.sql └── SetSSRSConfiguration.sql └── windows-adk-feed.xml /.gitattributes: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Set default behavior to automatically normalize line endings. 3 | ############################################################################### 4 | * text=auto 5 | 6 | ############################################################################### 7 | # Set default behavior for command prompt diff. 8 | # 9 | # This is need for earlier builds of msysgit that does not have it on by 10 | # default for csharp files. 11 | # Note: This is only used by command line 12 | ############################################################################### 13 | #*.cs diff=csharp 14 | 15 | ############################################################################### 16 | # Set the merge driver for project and solution files 17 | # 18 | # Merging from the command prompt will add diff markers to the files if there 19 | # are conflicts (Merging from VS is not affected by the settings below, in VS 20 | # the diff markers are never inserted). Diff markers may cause the following 21 | # file extensions to fail to load in VS. An alternative would be to treat 22 | # these files as binary and thus will always conflict and require user 23 | # intervention with every merge. To do so, just uncomment the entries below 24 | ############################################################################### 25 | #*.sln merge=binary 26 | #*.csproj merge=binary 27 | #*.vbproj merge=binary 28 | #*.vcxproj merge=binary 29 | #*.vcproj merge=binary 30 | #*.dbproj merge=binary 31 | #*.fsproj merge=binary 32 | #*.lsproj merge=binary 33 | #*.wixproj merge=binary 34 | #*.modelproj merge=binary 35 | #*.sqlproj merge=binary 36 | #*.wwaproj merge=binary 37 | 38 | ############################################################################### 39 | # behavior for image files 40 | # 41 | # image files are treated as binary by default. 42 | ############################################################################### 43 | #*.jpg binary 44 | #*.png binary 45 | #*.gif binary 46 | 47 | ############################################################################### 48 | # diff behavior for common document formats 49 | # 50 | # Convert binary document formats to text before diffing them. This feature 51 | # is only available from the command line. Turn it on by uncommenting the 52 | # entries below. 53 | ############################################################################### 54 | #*.doc diff=astextplain 55 | #*.DOC diff=astextplain 56 | #*.docx diff=astextplain 57 | #*.DOCX diff=astextplain 58 | #*.dot diff=astextplain 59 | #*.DOT diff=astextplain 60 | #*.pdf diff=astextplain 61 | #*.PDF diff=astextplain 62 | #*.rtf diff=astextplain 63 | #*.RTF diff=astextplain 64 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # User-specific files 5 | *.suo 6 | *.user 7 | *.userosscache 8 | *.sln.docstates 9 | 10 | # User-specific files (MonoDevelop/Xamarin Studio) 11 | *.userprefs 12 | 13 | # Build results 14 | [Dd]ebug/ 15 | [Dd]ebugPublic/ 16 | [Rr]elease/ 17 | [Rr]eleases/ 18 | [Xx]64/ 19 | [Xx]86/ 20 | [Bb]uild/ 21 | bld/ 22 | [Bb]in/ 23 | [Oo]bj/ 24 | 25 | # Visual Studio 2015 cache/options directory 26 | .vs/ 27 | # Uncomment if you have tasks that create the project's static files in wwwroot 28 | #wwwroot/ 29 | 30 | # MSTest test Results 31 | [Tt]est[Rr]esult*/ 32 | [Bb]uild[Ll]og.* 33 | 34 | # NUNIT 35 | *.VisualState.xml 36 | TestResult.xml 37 | 38 | # Build Results of an ATL Project 39 | [Dd]ebugPS/ 40 | [Rr]eleasePS/ 41 | dlldata.c 42 | 43 | # DNX 44 | project.lock.json 45 | artifacts/ 46 | 47 | *_i.c 48 | *_p.c 49 | *_i.h 50 | *.ilk 51 | *.meta 52 | *.obj 53 | *.pch 54 | *.pdb 55 | *.pgc 56 | *.pgd 57 | *.rsp 58 | *.sbr 59 | *.tlb 60 | *.tli 61 | *.tlh 62 | *.tmp 63 | *.tmp_proj 64 | *.log 65 | *.vspscc 66 | *.vssscc 67 | .builds 68 | *.pidb 69 | *.svclog 70 | *.scc 71 | 72 | # Chutzpah Test files 73 | _Chutzpah* 74 | 75 | # Visual C++ cache files 76 | ipch/ 77 | *.aps 78 | *.ncb 79 | *.opendb 80 | *.opensdf 81 | *.sdf 82 | *.cachefile 83 | *.VC.db 84 | 85 | # Visual Studio profiler 86 | *.psess 87 | *.vsp 88 | *.vspx 89 | *.sap 90 | 91 | # TFS 2012 Local Workspace 92 | $tf/ 93 | 94 | # Guidance Automation Toolkit 95 | *.gpState 96 | 97 | # ReSharper is a .NET coding add-in 98 | _ReSharper*/ 99 | *.[Rr]e[Ss]harper 100 | *.DotSettings.user 101 | 102 | # JustCode is a .NET coding add-in 103 | .JustCode 104 | 105 | # TeamCity is a build add-in 106 | _TeamCity* 107 | 108 | # DotCover is a Code Coverage Tool 109 | *.dotCover 110 | 111 | # NCrunch 112 | _NCrunch_* 113 | .*crunch*.local.xml 114 | nCrunchTemp_* 115 | 116 | # MightyMoose 117 | *.mm.* 118 | AutoTest.Net/ 119 | 120 | # Web workbench (sass) 121 | .sass-cache/ 122 | 123 | # Installshield output folder 124 | [Ee]xpress/ 125 | 126 | # DocProject is a documentation generator add-in 127 | DocProject/buildhelp/ 128 | DocProject/Help/*.HxT 129 | DocProject/Help/*.HxC 130 | DocProject/Help/*.hhc 131 | DocProject/Help/*.hhk 132 | DocProject/Help/*.hhp 133 | DocProject/Help/Html2 134 | DocProject/Help/html 135 | 136 | # Click-Once directory 137 | publish/ 138 | 139 | # Publish Web Output 140 | *.[Pp]ublish.xml 141 | *.azurePubxml 142 | 143 | # TODO: Un-comment the next line if you do not want to checkin 144 | # your web deploy settings because they may include unencrypted 145 | # passwords 146 | #*.pubxml 147 | *.publishproj 148 | 149 | # NuGet Packages 150 | *.nupkg 151 | # The packages folder can be ignored because of Package Restore 152 | **/packages/* 153 | # except build/, which is used as an MSBuild target. 154 | !**/packages/build/ 155 | # Uncomment if necessary however generally it will be regenerated when needed 156 | #!**/packages/repositories.config 157 | # NuGet v3's project.json files produces more ignoreable files 158 | *.nuget.props 159 | *.nuget.targets 160 | 161 | # Microsoft Azure Build Output 162 | csx/ 163 | *.build.csdef 164 | 165 | # Microsoft Azure Emulator 166 | ecf/ 167 | rcf/ 168 | 169 | # Windows Store app package directory 170 | AppPackages/ 171 | BundleArtifacts/ 172 | 173 | # Visual Studio cache files 174 | # files ending in .cache can be ignored 175 | *.[Cc]ache 176 | # but keep track of directories ending in .cache 177 | !*.[Cc]ache/ 178 | 179 | # Others 180 | ClientBin/ 181 | [Ss]tyle[Cc]op.* 182 | ~$* 183 | *~ 184 | *.dbmdl 185 | *.dbproj.schemaview 186 | *.pfx 187 | *.publishsettings 188 | node_modules/ 189 | orleans.codegen.cs 190 | 191 | # RIA/Silverlight projects 192 | Generated_Code/ 193 | 194 | # Backup & report files from converting an old project file 195 | # to a newer Visual Studio version. Backup files are not needed, 196 | # because we have git ;-) 197 | _UpgradeReport_Files/ 198 | Backup*/ 199 | UpgradeLog*.XML 200 | UpgradeLog*.htm 201 | 202 | # SQL Server files 203 | *.mdf 204 | *.ldf 205 | 206 | # Business Intelligence projects 207 | *.rdl.data 208 | *.bim.layout 209 | *.bim_*.settings 210 | 211 | # Microsoft Fakes 212 | FakesAssemblies/ 213 | 214 | # GhostDoc plugin setting file 215 | *.GhostDoc.xml 216 | 217 | # Node.js Tools for Visual Studio 218 | .ntvs_analysis.dat 219 | 220 | # Visual Studio 6 build log 221 | *.plg 222 | 223 | # Visual Studio 6 workspace options file 224 | *.opt 225 | 226 | # Visual Studio LightSwitch build output 227 | **/*.HTMLClient/GeneratedArtifacts 228 | **/*.DesktopClient/GeneratedArtifacts 229 | **/*.DesktopClient/ModelManifest.xml 230 | **/*.Server/GeneratedArtifacts 231 | **/*.Server/ModelManifest.xml 232 | _Pvt_Extensions 233 | 234 | # LightSwitch generated files 235 | GeneratedArtifacts/ 236 | ModelManifest.xml 237 | 238 | # Paket dependency manager 239 | .paket/paket.exe 240 | 241 | # FAKE - F# Make 242 | .fake/ 243 | -------------------------------------------------------------------------------- /ConfigMgrPrerequisitesTool.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.25420.1 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConfigMgrPrerequisitesTool", "ConfigMgrPrerequisitesTool\ConfigMgrPrerequisitesTool.csproj", "{C0F0FEDE-B4F0-45C6-8BA7-1FCADF3B83EC}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {C0F0FEDE-B4F0-45C6-8BA7-1FCADF3B83EC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {C0F0FEDE-B4F0-45C6-8BA7-1FCADF3B83EC}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {C0F0FEDE-B4F0-45C6-8BA7-1FCADF3B83EC}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {C0F0FEDE-B4F0-45C6-8BA7-1FCADF3B83EC}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /ConfigMgrPrerequisitesTool/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ConfigMgrPrerequisitesTool/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /ConfigMgrPrerequisitesTool/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace ConfigMgrPrerequisitesTool 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /ConfigMgrPrerequisitesTool/ConfigMgrPrerequisitesTool.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {C0F0FEDE-B4F0-45C6-8BA7-1FCADF3B83EC} 8 | WinExe 9 | Properties 10 | ConfigMgrPrerequisitesTool 11 | ConfigMgrPrerequisitesTool 12 | v4.5.2 13 | 512 14 | {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 15 | 4 16 | true 17 | 18 | 19 | 20 | 21 | x64 22 | true 23 | full 24 | false 25 | bin\Debug\ 26 | DEBUG;TRACE 27 | prompt 28 | 4 29 | 30 | 31 | x64 32 | pdbonly 33 | true 34 | bin\Release\ 35 | TRACE 36 | prompt 37 | 4 38 | false 39 | 40 | 41 | true 42 | bin\x64\Debug\ 43 | DEBUG;TRACE 44 | full 45 | x64 46 | prompt 47 | MinimumRecommendedRules.ruleset 48 | true 49 | 50 | 51 | bin\x64\Release\ 52 | TRACE 53 | true 54 | pdbonly 55 | x64 56 | prompt 57 | MinimumRecommendedRules.ruleset 58 | true 59 | 60 | 61 | app.manifest 62 | 63 | 64 | Resources\Logo.ico 65 | 66 | 67 | 68 | ..\packages\HtmlAgilityPack.1.4.9.5\lib\Net45\HtmlAgilityPack.dll 69 | True 70 | 71 | 72 | ..\packages\MahApps.Metro.1.5.0\lib\net45\MahApps.Metro.dll 73 | True 74 | 75 | 76 | ..\packages\MahApps.Metro.IconPacks.1.9.0\lib\net45\MahApps.Metro.IconPacks.dll 77 | True 78 | 79 | 80 | 81 | 82 | 83 | 84 | ..\packages\Microsoft.PowerShell.3.ReferenceAssemblies.1.0.0\lib\net4\System.Management.Automation.dll 85 | True 86 | 87 | 88 | 89 | ..\packages\MahApps.Metro.1.5.0\lib\net45\System.Windows.Interactivity.dll 90 | True 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 4.0 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | MSBuild:Compile 108 | Designer 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | MSBuild:Compile 118 | Designer 119 | 120 | 121 | App.xaml 122 | Code 123 | 124 | 125 | MainWindow.xaml 126 | Code 127 | 128 | 129 | 130 | 131 | 132 | Code 133 | 134 | 135 | True 136 | True 137 | Resources.resx 138 | 139 | 140 | True 141 | Settings.settings 142 | True 143 | 144 | 145 | ResXFileCodeGenerator 146 | Resources.Designer.cs 147 | 148 | 149 | Designer 150 | 151 | 152 | 153 | SettingsSingleFileGenerator 154 | Settings.Designer.cs 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 191 | 192 | 193 | 194 | 201 | -------------------------------------------------------------------------------- /ConfigMgrPrerequisitesTool/DirectoryEngine.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.DirectoryServices.ActiveDirectory; 7 | using System.DirectoryServices; 8 | using System.Security.Principal; 9 | using System.ComponentModel; 10 | using System.Security.AccessControl; 11 | 12 | namespace ConfigMgrPrerequisitesTool 13 | { 14 | class DirectoryEngine : INotifyPropertyChanged 15 | { 16 | public string DisplayName { get; set; } 17 | public string SamAccountName { get; set; } 18 | public string DistinguishedName { get; set; } 19 | private bool _ObjectSelected; 20 | 21 | public event PropertyChangedEventHandler PropertyChanged; 22 | 23 | /// 24 | /// This method triggers the PropertyChanged event and is used when properties 25 | /// in a data grid has been programmatically changed. 26 | /// 27 | public void OnPropertyChanged(String propertyName) 28 | { 29 | if (PropertyChanged != null) 30 | { 31 | PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); 32 | } 33 | } 34 | 35 | public bool ObjectSelected 36 | { 37 | get { return _ObjectSelected; } 38 | set 39 | { 40 | if (_ObjectSelected != value) 41 | { 42 | _ObjectSelected = value; 43 | OnPropertyChanged("ObjectSelected"); 44 | } 45 | } 46 | } 47 | 48 | public bool IsDomainUser() 49 | { 50 | bool returnValue = false; 51 | 52 | //' Check if domain SID for current user exist (Returns TRUE for a machine that is on a workgroup) 53 | if (WindowsIdentity.GetCurrent().User.AccountDomainSid != null) 54 | { 55 | SecurityIdentifier domainUsers = new SecurityIdentifier(WellKnownSidType.AccountDomainUsersSid, WindowsIdentity.GetCurrent().User.AccountDomainSid); 56 | WindowsPrincipal currentUser = new WindowsPrincipal(WindowsIdentity.GetCurrent()); 57 | 58 | if (currentUser.IsInRole(domainUsers)) 59 | { 60 | returnValue = true; 61 | } 62 | } 63 | 64 | return returnValue; 65 | } 66 | 67 | public string GetSchemaMasterRoleOwner() 68 | { 69 | string schemaMaster = string.Empty; 70 | 71 | //' Get current forest and determine schema master role owner 72 | Forest forest = Forest.GetCurrentForest(); 73 | DomainController domainController = forest.SchemaRoleOwner; 74 | schemaMaster = domainController.Name; 75 | 76 | return schemaMaster; 77 | } 78 | 79 | public bool ValidateSchemaMasterRoleOwner(string serverName) 80 | { 81 | bool validationStatus = false; 82 | 83 | //' Get current forest and determine schema master role owner 84 | Forest forest = Forest.GetCurrentForest(); 85 | DomainController schemaMaster = forest.SchemaRoleOwner; 86 | 87 | if (serverName == schemaMaster.Name) 88 | { 89 | validationStatus = true; 90 | } 91 | 92 | return validationStatus; 93 | } 94 | 95 | public List InvokeADSearcher(string groupFilter) 96 | { 97 | //' Construct list for all DirectoryEngine objects to be returned 98 | List directoryEntries = new List(); 99 | 100 | //' Construct active directory searcher and define loaded properties 101 | string searchFilter = String.Format(@"(&(ObjectCategory=group)(samAccountName=*{0}*))", groupFilter); 102 | DirectorySearcher searcher = new DirectorySearcher(searchFilter); 103 | searcher.Asynchronous = true; 104 | searcher.PropertiesToLoad.Add("samaccountname"); 105 | searcher.PropertiesToLoad.Add("cn"); 106 | searcher.PropertiesToLoad.Add("distinguishedName"); 107 | 108 | //' Invoke active directory searcher 109 | SearchResultCollection results = searcher.FindAll(); 110 | 111 | if (results != null && results.Count >= 1) 112 | { 113 | foreach (SearchResult result in results) 114 | { 115 | directoryEntries.Add(new DirectoryEngine { 116 | DisplayName = result.Properties["cn"][0].ToString(), 117 | SamAccountName = result.Properties["samaccountname"][0].ToString(), 118 | DistinguishedName = result.Properties["distinguishedName"][0].ToString(), 119 | ObjectSelected = false 120 | }); 121 | } 122 | } 123 | 124 | return directoryEntries; 125 | } 126 | 127 | private bool IsACLRuleAdded(AuthorizationRuleCollection rules, string sid) 128 | { 129 | bool returnValue = false; 130 | 131 | foreach (AuthorizationRule rule in rules) 132 | { 133 | if (rule.IdentityReference.Value == sid) 134 | { 135 | returnValue = true; 136 | } 137 | } 138 | 139 | return returnValue; 140 | } 141 | 142 | public bool AddOrganizationalUnitACL(string groupSID) 143 | { 144 | bool returnValue = false; 145 | 146 | //' Construct active directory searcher for system management container and define loaded properties 147 | string searchFilter = @"(&(ObjectCategory=container)(name=System Management))"; 148 | DirectorySearcher searcher = new DirectorySearcher(searchFilter); 149 | searcher.PropertiesToLoad.Add("cn"); 150 | searcher.PropertiesToLoad.Add("distinguishedName"); 151 | searcher.PropertiesToLoad.Add("objectSid"); 152 | 153 | //' Invoke active directory searcher 154 | SearchResult results = searcher.FindOne(); 155 | 156 | if (results != null) 157 | { 158 | //' Retrieve directory entry for system management container 159 | DirectoryEntry container = results.GetDirectoryEntry(); 160 | 161 | // Check if groupSID exists 162 | AuthorizationRuleCollection existingRules = container.ObjectSecurity.GetAccessRules(true, true, typeof(SecurityIdentifier)); 163 | bool groupExists = IsACLRuleAdded(existingRules, groupSID); 164 | 165 | if (groupExists == false) 166 | { 167 | //' Construct new access rule and add it to the system management container 168 | ActiveDirectoryAccessRule accessRule = new ActiveDirectoryAccessRule(new SecurityIdentifier(groupSID), ActiveDirectoryRights.GenericAll, System.Security.AccessControl.AccessControlType.Allow, ActiveDirectorySecurityInheritance.All, Guid.Empty); 169 | container.ObjectSecurity.AddAccessRule(accessRule); 170 | 171 | //' Write only the DACL information back and don't change the ownership 172 | container.Options.SecurityMasks = SecurityMasks.Dacl; 173 | 174 | //' Commit changes with new access rule 175 | container.CommitChanges(); 176 | 177 | returnValue = true; 178 | } 179 | } 180 | 181 | return returnValue; 182 | } 183 | 184 | public string GetADObjectSID(string distinguishedName) 185 | { 186 | string returnValue = string.Empty; 187 | 188 | DirectoryEntry group = new DirectoryEntry(String.Format("LDAP://{0}", distinguishedName)); 189 | SecurityIdentifier groupSid = new SecurityIdentifier(group.Properties["objectSid"][0] as byte[], 0); 190 | returnValue = groupSid.Value; 191 | 192 | return returnValue; 193 | } 194 | 195 | public string GetPDCRoleOwner() 196 | { 197 | string pdcEmulator = string.Empty; 198 | 199 | //' Get current domain and determine PDC Emulator rolw owner 200 | Domain domain = Domain.GetCurrentDomain(); 201 | DomainController domainController = domain.PdcRoleOwner; 202 | pdcEmulator = domainController.Name; 203 | 204 | return pdcEmulator; 205 | } 206 | 207 | public bool ValidatePDCRoleOwner(string serverName) 208 | { 209 | bool validationStatus = false; 210 | 211 | //' Get current forest and determine PDC Emulator role owner 212 | Domain domain = Domain.GetCurrentDomain(); 213 | DomainController domainController = domain.PdcRoleOwner; 214 | 215 | if (serverName == domainController.Name) 216 | { 217 | validationStatus = true; 218 | } 219 | 220 | return validationStatus; 221 | } 222 | 223 | public bool CheckSystemManagementContainer() 224 | { 225 | bool checkStatus = false; 226 | 227 | DirectoryEntry rootDSE = new DirectoryEntry("LDAP://RootDSE"); 228 | string defaultNamingContext = rootDSE.Properties["defaultNamingContext"].Value.ToString(); 229 | 230 | DirectoryEntry defaultEntry = new DirectoryEntry("LDAP://" + defaultNamingContext); 231 | DirectorySearcher containerSearcher = new DirectorySearcher(defaultEntry, @"(&(ObjectCategory=container)(name=System Management))", null, SearchScope.Subtree); 232 | 233 | SearchResult systemManagementContainer = containerSearcher.FindOne(); 234 | 235 | if (systemManagementContainer != null) 236 | { 237 | //' test to see if correct object or something 238 | 239 | checkStatus = true; 240 | } 241 | 242 | return checkStatus; 243 | } 244 | } 245 | } 246 | -------------------------------------------------------------------------------- /ConfigMgrPrerequisitesTool/FileSystem.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.IO; 7 | using System.ComponentModel; 8 | using System.Windows.Forms; 9 | using System.Threading; 10 | 11 | namespace ConfigMgrPrerequisitesTool 12 | { 13 | class FileSystem : INotifyPropertyChanged 14 | { 15 | public string VolumeLabel { get; set; } 16 | public string DriveName { get; set; } 17 | public string DriveFreeSpace { get; set; } 18 | private bool _DriveSelected; 19 | 20 | public event PropertyChangedEventHandler PropertyChanged; 21 | 22 | /// 23 | /// This method triggers the PropertyChanged event and is used when properties 24 | /// in a data grid has been programmatically changed. 25 | /// 26 | public void OnPropertyChanged(String propertyName) 27 | { 28 | if (PropertyChanged != null) 29 | { 30 | PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); 31 | } 32 | } 33 | 34 | public bool DriveSelected 35 | { 36 | get { return _DriveSelected; } 37 | set 38 | { 39 | if (_DriveSelected != value) 40 | { 41 | _DriveSelected = value; 42 | OnPropertyChanged("DriveSelected"); 43 | } 44 | } 45 | } 46 | 47 | private string ConvertFromBytes(double bytes) 48 | { 49 | string[] suffix = new string[] { "B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB" }; 50 | int index = 0; 51 | do { 52 | bytes /= 1024; index++; 53 | } 54 | while (bytes >= 1024); 55 | 56 | return String.Format("{0:0.00} {1}", bytes, suffix[index]); 57 | } 58 | 59 | public bool IsFolderEmpty(string path) 60 | { 61 | return !Directory.EnumerateFileSystemEntries(path).Any(); 62 | } 63 | 64 | public string GetParentFolder(string path) 65 | { 66 | return System.IO.Directory.GetParent(path).FullName; 67 | } 68 | 69 | public List GetVolumeInfo() 70 | { 71 | //' Construct new list for all volumes 72 | List volumeInfo = new List(); 73 | 74 | //' Get all volumes 75 | DriveInfo[] volumes = DriveInfo.GetDrives(); 76 | 77 | foreach (DriveInfo volume in volumes) 78 | { 79 | if (volume.IsReady && volume.DriveType == DriveType.Fixed && volume.DriveFormat == "NTFS") 80 | { 81 | volumeInfo.Add(new FileSystem { DriveSelected = false, VolumeLabel = volume.VolumeLabel, DriveName = volume.Name, DriveFreeSpace = ConvertFromBytes(volume.AvailableFreeSpace) }); 82 | } 83 | } 84 | 85 | return volumeInfo; 86 | } 87 | 88 | async public Task WriteFileAsync(string path, string text) 89 | { 90 | string fileName = @"NO_SMS_ON_DRIVE.SMS"; 91 | string filePath = Path.Combine(path, fileName); 92 | 93 | byte[] encodedText = Encoding.Unicode.GetBytes(text); 94 | 95 | using (FileStream sourceStream = new FileStream(filePath, FileMode.Create, FileAccess.Write, FileShare.None, bufferSize: 4096, useAsync: true)) 96 | { 97 | await sourceStream.WriteAsync(encodedText, 0, encodedText.Length); 98 | }; 99 | } 100 | 101 | async public Task CopyFileAsync(string sourceFile, string destinationFile, CancellationToken cancellationToken) 102 | { 103 | var fileOptions = FileOptions.Asynchronous | FileOptions.SequentialScan; 104 | var bufferSize = 4096; 105 | 106 | using (var sourceStream = new FileStream(sourceFile, FileMode.Open, FileAccess.Read, FileShare.Read, bufferSize, fileOptions)) 107 | using (var destinationStream = new FileStream(destinationFile, FileMode.CreateNew, FileAccess.Write, FileShare.None, bufferSize, fileOptions)) 108 | 109 | await sourceStream.CopyToAsync(destinationStream, bufferSize, cancellationToken).ConfigureAwait(continueOnCapturedContext: false); 110 | } 111 | } 112 | } -------------------------------------------------------------------------------- /ConfigMgrPrerequisitesTool/FodyWeavers.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /ConfigMgrPrerequisitesTool/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | Primary Site 31 | Central Administration Site 32 | Secondary Site 33 | 34 |