├── .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 |
35 |
36 |
37 |
38 |
39 |
40 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
103 |
104 |
105 |
106 |
107 |
110 |
111 |
112 |
113 |
114 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 | Management Point
141 | Distribution Point
142 | Application Catalog
143 | State Migration Point
144 | Enrollment Point
145 | Enrollment Proxy Point
146 | Certificate Registration Point
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
157 |
158 |
159 |
160 |
161 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
212 |
213 |
214 |
215 | Browse SMSSETUP\BIN\X64 located on the installation media and select EXTADSCH.EXE. Click stage to copy the selected file to Schema Master domain controller:
216 |
217 |
218 |
219 |
220 |
221 |
222 |
223 |
224 |
225 |
226 |
227 |
228 |
229 |
230 |
231 |
232 |
233 |
234 |
235 |
236 |
237 |
238 |
239 |
240 |
241 |
242 |
243 |
244 |
245 |
246 |
247 |
248 |
249 |
250 |
251 |
252 |
253 |
256 |
257 |
258 |
259 |
260 |
263 |
264 |
265 |
266 |
267 |
268 |
269 |
270 |
271 |
272 |
273 |
274 |
275 |
276 |
277 |
278 |
279 |
280 |
281 |
282 |
283 |
284 |
285 |
286 |
287 |
288 |
289 |
290 |
291 |
292 |
293 |
294 |
295 |
296 |
297 |
298 |
299 |
300 |
301 |
302 |
303 |
304 |
305 |
306 |
307 |
308 |
309 |
310 | Setup Installer
311 | Setup Add-on
312 | Setup Legacy
313 |
314 |
315 |
316 |
317 |
318 |
319 |
320 |
321 |
322 |
323 |
324 |
325 |
326 |
327 |
328 |
329 |
330 |
331 |
332 |
333 |
334 |
335 |
336 |
337 |
338 |
339 |
340 |
341 |
342 |
343 |
344 |
345 |
346 |
347 |
348 |
349 |
350 |
351 |
352 |
353 |
354 |
355 |
356 |
357 |
358 |
359 | 1
360 | 2
361 | 4
362 | 8
363 |
364 |
365 |
366 |
367 |
368 |
369 |
370 |
371 |
372 |
373 |
374 |
375 |
376 |
377 |
378 |
379 |
380 |
381 |
382 |
383 |
384 |
385 |
386 |
387 |
388 |
389 |
390 |
391 |
392 |
393 |
394 |
395 |
396 |
397 |
398 |
399 |
400 |
401 |
402 |
403 |
404 |
405 |
408 |
409 |
410 |
411 |
412 |
413 |
414 |
415 |
416 |
417 |
418 |
419 |
420 |
421 |
424 |
425 |
426 |
427 |
428 |
429 |
430 |
431 |
432 |
433 | SQL Server
434 | Windows Internal Database
435 |
436 |
437 |
438 |
439 |
440 |
441 |
442 |
443 |
444 |
445 |
446 |
447 |
448 |
449 | SQL Server
450 | Windows Internal Database
451 |
452 |
453 |
454 |
455 |
456 |
457 |
458 |
459 |
460 |
461 |
462 |
463 |
464 |
465 |
466 |
467 |
468 |
469 |
470 |
471 |
472 |
473 |
474 |
475 |
476 |
477 |
478 |
479 |
480 |
481 |
482 |
483 |
484 |
485 |
486 |
487 |
488 |
489 |
490 |
491 |
492 |
493 |
494 |
495 |
496 |
497 |
498 |
499 |
500 |
501 |
502 |
503 |
504 |
505 |
506 |
507 |
508 |
509 |
510 |
511 |
512 |
513 |
--------------------------------------------------------------------------------
/ConfigMgrPrerequisitesTool/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Resources;
3 | using System.Runtime.CompilerServices;
4 | using System.Runtime.InteropServices;
5 | using System.Windows;
6 |
7 | // General Information about an assembly is controlled through the following
8 | // set of attributes. Change these attribute values to modify the information
9 | // associated with an assembly.
10 | [assembly: AssemblyTitle("ConfigMgr Prerequisites Tool")]
11 | [assembly: AssemblyDescription("")]
12 | [assembly: AssemblyConfiguration("")]
13 | [assembly: AssemblyCompany("MSEndpointMgr.com")]
14 | [assembly: AssemblyProduct("ConfigMgr Prerequisites Tool")]
15 | [assembly: AssemblyCopyright("Copyright © 2022")]
16 | [assembly: AssemblyTrademark("")]
17 | [assembly: AssemblyCulture("")]
18 |
19 | // Setting ComVisible to false makes the types in this assembly not visible
20 | // to COM components. If you need to access a type in this assembly from
21 | // COM, set the ComVisible attribute to true on that type.
22 | [assembly: ComVisible(false)]
23 |
24 | //In order to begin building localizable applications, set
25 | //CultureYouAreCodingWith in your .csproj file
26 | //inside a . For example, if you are using US english
27 | //in your source files, set the to en-US. Then uncomment
28 | //the NeutralResourceLanguage attribute below. Update the "en-US" in
29 | //the line below to match the UICulture setting in the project file.
30 |
31 | //[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
32 |
33 |
34 | [assembly: ThemeInfo(
35 | ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
36 | //(used if a resource is not found in the page,
37 | // or application resource dictionaries)
38 | ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
39 | //(used if a resource is not found in the page,
40 | // app, or any theme specific resource dictionaries)
41 | )]
42 |
43 |
44 | // Version information for an assembly consists of the following four values:
45 | //
46 | // Major Version
47 | // Minor Version
48 | // Build Number
49 | // Revision
50 | //
51 | // You can specify all the values or you can default the Build and Revision Numbers
52 | // by using the '*' as shown below:
53 | // [assembly: AssemblyVersion("1.0.*")]
54 | [assembly: AssemblyVersion("3.0.6.0")]
55 | [assembly: AssemblyFileVersion("3.0.6.0")]
56 |
--------------------------------------------------------------------------------
/ConfigMgrPrerequisitesTool/Properties/Resources.Designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | // Runtime Version:4.0.30319.42000
5 | //
6 | // Changes to this file may cause incorrect behavior and will be lost if
7 | // the code is regenerated.
8 | //
9 | //------------------------------------------------------------------------------
10 |
11 | namespace ConfigMgrPrerequisitesTool.Properties
12 | {
13 |
14 |
15 | ///
16 | /// A strongly-typed resource class, for looking up localized strings, etc.
17 | ///
18 | // This class was auto-generated by the StronglyTypedResourceBuilder
19 | // class via a tool like ResGen or Visual Studio.
20 | // To add or remove a member, edit your .ResX file then rerun ResGen
21 | // with the /str option, or rebuild your VS project.
22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
25 | internal class Resources
26 | {
27 |
28 | private static global::System.Resources.ResourceManager resourceMan;
29 |
30 | private static global::System.Globalization.CultureInfo resourceCulture;
31 |
32 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
33 | internal Resources()
34 | {
35 | }
36 |
37 | ///
38 | /// Returns the cached ResourceManager instance used by this class.
39 | ///
40 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
41 | internal static global::System.Resources.ResourceManager ResourceManager
42 | {
43 | get
44 | {
45 | if ((resourceMan == null))
46 | {
47 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ConfigMgrPrerequisitesTool.Properties.Resources", typeof(Resources).Assembly);
48 | resourceMan = temp;
49 | }
50 | return resourceMan;
51 | }
52 | }
53 |
54 | ///
55 | /// Overrides the current thread's CurrentUICulture property for all
56 | /// resource lookups using this strongly typed resource class.
57 | ///
58 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
59 | internal static global::System.Globalization.CultureInfo Culture
60 | {
61 | get
62 | {
63 | return resourceCulture;
64 | }
65 | set
66 | {
67 | resourceCulture = value;
68 | }
69 | }
70 | }
71 | }
72 |
--------------------------------------------------------------------------------
/ConfigMgrPrerequisitesTool/Properties/Resources.resx:
--------------------------------------------------------------------------------
1 |
2 |
3 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 | text/microsoft-resx
107 |
108 |
109 | 2.0
110 |
111 |
112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
113 |
114 |
115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
116 |
117 |
--------------------------------------------------------------------------------
/ConfigMgrPrerequisitesTool/Properties/Settings.Designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | // Runtime Version:4.0.30319.42000
5 | //
6 | // Changes to this file may cause incorrect behavior and will be lost if
7 | // the code is regenerated.
8 | //
9 | //------------------------------------------------------------------------------
10 |
11 | namespace ConfigMgrPrerequisitesTool.Properties
12 | {
13 |
14 |
15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
18 | {
19 |
20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
21 |
22 | public static Settings Default
23 | {
24 | get
25 | {
26 | return defaultInstance;
27 | }
28 | }
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/ConfigMgrPrerequisitesTool/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/ConfigMgrPrerequisitesTool/Resources/Logo.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MSEndpointMgr/ConfigMgrPrerequisitesTool/030b86bb532f3dbbdebf245b439d14462401c16a/ConfigMgrPrerequisitesTool/Resources/Logo.ico
--------------------------------------------------------------------------------
/ConfigMgrPrerequisitesTool/Resources/SCConfigMgr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MSEndpointMgr/ConfigMgrPrerequisitesTool/030b86bb532f3dbbdebf245b439d14462401c16a/ConfigMgrPrerequisitesTool/Resources/SCConfigMgr.png
--------------------------------------------------------------------------------
/ConfigMgrPrerequisitesTool/Resources/SCLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MSEndpointMgr/ConfigMgrPrerequisitesTool/030b86bb532f3dbbdebf245b439d14462401c16a/ConfigMgrPrerequisitesTool/Resources/SCLogo.png
--------------------------------------------------------------------------------
/ConfigMgrPrerequisitesTool/ScriptEngine.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.Management.Automation;
7 | using System.Collections.ObjectModel;
8 | using System.Management.Automation.Runspaces;
9 | using System.Runtime.Serialization;
10 | using System.Management.Automation.Remoting;
11 | using System.Reflection;
12 | using System.IO;
13 | using System.Windows.Forms;
14 |
15 | namespace ConfigMgrPrerequisitesTool
16 | {
17 | class ScriptEngine
18 | {
19 | ///
20 | /// This method invokes Install-WindowsFeature PowerShell cmdlet to install a specific feature.
21 | ///
22 | async public Task