This post will show how to reset IP protocol stack configurations for your interface and send output to a reset.txt log file. To perform reset open command line on your Windows server 2008 and type:
netsh int ipv4 reset reset.txt
Posted by aidas | Posted in Command line, Windows 2008 | Posted on 05-05-2009
0
This post will show how to use command line in Windows server 2008 to install and remove role. In our case we will install and then remove Web server role with all IIS components onboard.
To install role type:
servermanagercmd -install Web-Server
To remove Web Server role type:
servermanagercmd -remove Web-Server
More roles can be found here .
Posted by aidas | Posted in Command line, Windows 2008 | Posted on 05-05-2009
0
This post will show you how to list installed Windows server 2008 Core roles using command line. To list roles open command line and type:
oclist | find “Installed”
You have Windows server 2008 and want to install Read Only Domain Controller role on it? First you need to prepare your domain before you can do this operation. For that open command line on your Windows server 2008 and type:
adprep /rodcprep
How to #CMD by Thomas
This post will show you how to join computer “TestPC” to domain “testdomain.com” using command line. To do that open command line on Windows server 2003 and type:
netdom /domain:testdomain.com /user:testuser /password:yourpassword member TestPC /add
This post will show how to get services list whose StartMode is set to disabled via power shell. Open power shell in Windows server 2003 or 2008 and type:
gwmi win32_service | where {$_.StartMode -eq “Disabled”}
Posted by aidas | Posted in Command line, Windows 2008 | Posted on 03-05-2009
0
This post will show you how to enable automatic updates on your Windows server 2008 Core. To do it type:
cscript scregedit.wsf /AU 4
Posted by aidas | Posted in Windows 2008 | Posted on 03-05-2009
0
How to change time zone in Windows server 2008 Core? It is pretty simple. You just need to start GUI with this command:
control timedate.cpl
Posted by aidas | Posted in Command line, Windows 2008 | Posted on 03-05-2009
0
This post will show you how to reboot Windows server 2008 Core after some changes were made. To reboot type in command line:
shutdown /r
Posted by aidas | Posted in Command line, Windows 2008 | Posted on 03-05-2009
0
This how to will show command which enables remote desktop administration on your Windows server 2008 Core server. Note that you`ll be presented with no GUI after remote desktop connection to Core server. Only minimal command line interface will be available for you. To enable it type:
cscript %windir%\system32\SCRegEdit.wsf /ar 0
In this post you`ll see how to join your Windows server 2008 Core to domain named testdomain.com using user ID testuser. To do that type in command line:
netdom join %computername% /domain:testdomain.com /userd: testdomain.com\testuser /passwordd:*
Posted by Thomas | Posted in Command line, Windows 2008 | Posted on 02-05-2009
0
To enable remote administration on Windows server 2008 Core firewall open command line and type:
netsh firewall set service type=remoteadmin mode=enable
How to #Windows server 2008 Core by Thomas