Mainos / Advertisement:
Powershellscript
Versio hetkellä 30. tammikuuta 2015 kello 13.59 – tehnyt Johannes (keskustelu | muokkaukset)
Powershellillä voi tehä kaikkee kivaa
Import-Module NetAdapter $netadapter = Get-Netadapter -Name Ethernet $netadapter | Set-NetIPInterface -DHCP Disabled $netadapter | New-NetIPAddress -AddressFamily IPv4 -IPAddress 192.168.7.100 -PrefixLength 24 -Type Unicast -DefaultGateway 192.168.7.1 Set-DnsClientServerAddress -InterfaceAlias Ethernet -ServerAddresses 192.168.7.100 Rename-Computer Wcore -Restart
Konffaa verkon ja muuttaa nimen
Get-WindowsFeature AD-Domain-Services Install-WindowsFeature -Name AD-Domain-Services
Set-ExecutionPolicy remotesigned -force Import-Module ADDSDeployment Install-ADDSForest -CreateDnsDelegation:$false -DatabasePath C:\Windows\NTDS -DomainMode Win2012 -DomainName core.local -DomainNetbiosName CORE -ForestMode Win2012 -InstallDns:$true -LogPath C:\Windows\NTDS -NoRebootOnCompletion:$false -SysvolPath C:\Windows\SYSVOL -Force:$true
käyttäjiä
New-ADUser -Name uuser -HomeDirectory "\\Wcore\home\%username%" -HomeDrive "K:" -Enabled $true -PasswordNotRequired $true -AccountPassword (Read-Host -AsSecureString "AccountPassword")
Mainos / Advertisement: