Mainos / Advertisement:
Ero sivun ”Powershellscript” versioiden välillä
Siirry navigaatioon
Siirry hakuun
(Ak: Uusi sivu: Powershellillä voi tehä kaikkee kivaa Import-Module NetAdapter $netadapter = Get-Netadapter -Name Ethernet $netadapter | Set-NetIPInterface -DHCP Disabled $netadapter | New-...) |
|||
Rivi 18: | Rivi 18: | ||
Import-Module ADDSDeployment | 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 | 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") |
Versio 30. tammikuuta 2015 kello 13.59
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: