Windows server 2008 Core – How to add Hyper-V virtualization role via command line

Posted by aidas | Posted in Command line, Windows 2008 | Posted on 02-05-2009

0

In this post you`ll see how to add Hyper-V virtualization role to your Windows server 2008 Core server. For that open command line and type:

start /w ocsetup Microsoft-HYPER-V

To check available roles use Oclist command .

Windows server 2003/2008 and Windows XP/Vista – How to synchronize files and directories in easy way

Posted by Thomas | Posted in Tools, Windows 2003, Windows 2008, Windows Vista, Windows XP | Posted on 02-05-2009

0

If you want to have great tool for synchronizing files and folders over few locations for free grab “Allway Sync” tool from here .

It will work on Windows server 2003/2008 and Windows XP/Vista machines. I never tried but website states that it works on Windows 98/ME/2000 too.

How to #Tools by Thomas

Windows server 2008 Core – How to enable remote administration in firewall using command line

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

Windows server 2008 Core – How to set DNS suffix via command line

Posted by aidas | Posted in Command line, Registry, Windows 2008 | Posted on 02-05-2009

0

This post will show you how to use command line in Windows server 2008 Core and set your server DNS suffix by operating on registry.

To set your DNS suffix to mydomain.com open command line and type:

reg add HKLM\System\currentcontrolset\services\tcpip\parameters /v “NV Domain” /d “mydomain.com” /f

Windows server 2008 Core – How to rename server via command line

Posted by aidas | Posted in Command line, Windows 2008 | Posted on 02-05-2009

0

In this post you`ll see quick way how to rename Windows server 2008 Core via command line. Basic syntax for renaming is :

netdom renamecomputer <currentname> /newname:<newname> /force /reboot

For example if current name of your server is WIN-7781GFN and you want to ename it to FS open command line and type:

netdom renamecomputer WIN-7781GFN /newname:FS /force /reboot