There was an error while loading. Please reload this page.
1 parent 2b2694f commit 6513770Copy full SHA for 6513770
new-domain.ps1
@@ -23,14 +23,18 @@ Add-WindowsFeature AD-Domain-Services
23
24
Import-Module ADDSDeployment
25
26
+#This will jsut show you what it looks like when executed, it will not actually run the command
27
write-host "Install-ADDSForest" @domain
28
-BrokenArrow1!!
29
+# Just unremark the below line to make it all work.
30
+#Install-ADDSForest @domain
31
32
+#Really should not keep a password here
33
+# [password]
34
35
+##After words
36
Install-WindowsFeature rsat-remoteaccess rsat-adds
37
-
38
Import-module servermanager ; Get-WindowsFeature | where-object {$_.Installed -eq $True} | format-list DisplayName
39
40
0 commit comments