From 02763211d6f4b13c0aa9fc02aaa9210e8c2ba84d Mon Sep 17 00:00:00 2001 From: Timur Date: Mon, 6 Oct 2025 10:25:44 +0000 Subject: [PATCH] Add Microsoft/ADDS Bereitstellung SRV2025 PS Script Windows Server 2025 --- Microsoft/ADDS Bereitstellung SRV2025 | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Microsoft/ADDS Bereitstellung SRV2025 diff --git a/Microsoft/ADDS Bereitstellung SRV2025 b/Microsoft/ADDS Bereitstellung SRV2025 new file mode 100644 index 0000000..1e867a6 --- /dev/null +++ b/Microsoft/ADDS Bereitstellung SRV2025 @@ -0,0 +1,17 @@ +# +# Windows PowerShell-Skript für AD DS-Bereitstellung +# + +Import-Module ADDSDeployment +Install-ADDSForest ` +-CreateDnsDelegation:$false ` +-DatabasePath "C:\WINDOWS\NTDS" ` +-DomainMode "Win2025" ` +-DomainName "beddo.cloud" ` +-DomainNetbiosName "BEDDO" ` +-ForestMode "Win2025" ` +-InstallDns:$true ` +-LogPath "C:\WINDOWS\NTDS" ` +-NoRebootOnCompletion:$false ` +-SysvolPath "C:\WINDOWS\SYSVOL" ` +-Force:$true \ No newline at end of file