COMANDOS CMD
Enviado por jlopez_501 • 26 de Marzo de 2019 • Resumen • 738 Palabras (3 Páginas) • 116 Visitas
-----------------------------------------------------------------------------------------------------------------
----------------------------------------COMANDOS WINDOWS SERVER 2016---------------------------------------------
-----------------------------------------------------------------------------------------------------------------
-----------------------------------------------COMANDOS CMD------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------
hostname (Visualizar el nombre del equipo)
ipconfig /flushdns -----Borra la cache local del servidor DNS
WINDOWS SCRIPT HOST
Sconfig
RENOMBRAR EL SERVIDOR:
Workgroup: netdom renamecomputer %computername% /newname:SRV-CORE-CMD
Dominio: netdom renamecomputer %computername% /newname:NewName /user:domain\username /passwordd: P@ssw0rd
CONFIGURAR ADAPTADOR DE RED:
netsh interface ipv4 show addresses
netsh interface ipv4 set address ethernet static 192.168.0.11 255.255.255.0 192.168.0.1 (Asigna direccion ipv4 estatica,Mascara de Red y el Gateway)
netsh interface show config
netsh interface ipv4 add dnsservers ethernet 192.168.0.4 (Asigna DNS Primario)
UNIR EL EQUIPO AL DOMINIO ----El * en el passwordd significa que no deje ver la contraseña
netdom join %computername% /domain:lan.tparking.com /userd:Administrador /passwordd:*
INICIAR POWERSHELL:
PowerShell
Start PowerShell
Nslookup (Revisar la resolución de DNS)
Ipconfig /registerdns (Registrar el DNS)
Discos Duros Diferenciales, se debe correr la utilidad sysprep:
Sysprep /generalize /shutdown /oobe /mode:vm
Oobe: Out of the box experience (experiencia fuera de cuadro)
----------------------------------------------------------------------------------------------------------
--------------------------------------------COMANDOS POWERSHELL-------------------------------------------
----------------------------------------------------------------------------------------------------------
VISUALIZAR CARACTERISTICAS
Get-WindowsFeature
INSTALAR CARACTERISTICAS
Install-WindowsFeature –Name DHCP, Windows-Server_Backup –IncludeManagementTools –Restart
DESINSTALAR CARACTERISTICAS
Uninstall-WindowsFeature – Name Telnet-Client –Restart
RENOMBRAR EL SERVIDOR:
Rename-Computer -NewName SRV-CORE-POWER -Restart
CONFIGURAR ADAPTADOR DE RED:
Get-NetAdapter
Get-NetIPConfiguration
New-NetIpAddress -InterfaceIndex 2 -IPAddres 192.168.0.14 -PrefixLength 24 -DefaultGateway 192.168.0.1
Set-DnsClientServerAddress -InterfaceIndex 2 -ServerAddress ("192.168.0.4","192.168.1.X") ---Configurar mas de un DNS.
Set-DnsClientServerAddress -InterfaceIndex 2 -ServerAddress 192.168.0.4 ------Configurar un solo DNS
ESTABLECER LA RESOLUCION DE PANTALLA:
Set-DisplayResolution 1280 720
VER LAS ZONAS HORARIAS
tzutil /l
CONFIGURAR LA ZONA HORARIA
Set-TimeZone “romance standard time”
CONFIGURAR FECHA Y HORA:
Set-Date -Date “MM/DD/AAAA HH:MM AM/PM”
Si queremos ver los valores de las configuraciones anteriores, cambiamos el Set por Get.
Si queremos que un servidor Core siempre inicie con PowerShell digitamos esta línea:
Set-ItemProperty -Path ‘HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon’ -Name Shell -Value ‘PowerShell.exe -NoExit’
UNIR EL EQUIPO AL DOMINIO
Add-Computer -DomainName lan.tparking.com
REINICIAR EQUIPO:
Restart-Computer
--------------------------------------------SERVER MANAGER Y MMC-------------------------------------------
-----------------------------------------------------------------------------------------------------------
DOMINIO RDP: cscript C:\Windows\System32\Scregedit.wsf /ar 0
WORKGROUP:
Get-Item WSMan:\localhost\Client\TrustedHosts
Set-Item WSMan:\localhost\Client\TrustedHosts "192.168.0.13"
Para agregar más de un equipo, puedes utilizar la opción -Concatenate, por ejemplo:
set-item WSMan:\localhost\Client\TrustedHosts -Value “192.168.0.22” -Concatenate
set-item WSMan:\localhost\Client\TrustedHosts
...