Mark Roe’s Weblog

Email: titn003@yahoo.co.uk

Step-by-Step Installing Hyper-V on Server Core

  1. Enable CPU virtualisation assistance and DEP in the BIOS.
  2. Install Windows Server 2008 Enterprise x64 (Core Installation).
  3. Determine the NIC ID: netsh interface ipv4 show interfaces.
  4. Set the IP address for NIC, let say for NIC #2: netsh interface ipv4 set address name=”2″ source=static address=192.168.1.3 mask=255.255.255.0 gateway=192.168.1.1.
  5. Set the DNS: netsh interface ipv4 add dnsserver name=”2″ address=192.168.1.2 index=1.
  6. Rename server: netdom renamecomputer %computername% /NewName:HyperSvr1.
  7. Reboot for that to take effect: shutdown /r /t 0.
  8. Join it to domain: netdom join %computername% /domain:admininfo.local /userd:administrator /passwordd:*.
  9. Reboot for that to take effect: shutdown /r /t 0.
  10. Copy CoreConfigurator onto the Core server and configured any users, groups, enabled RDP, firewall settings, etc…
  11. Download and copy the Hyper-V update onto the server.
  12. Install the Hyper-V update: wusa.exe Windows6.0-KB950050-x64.msu.
  13. Install the Hyper-V role: start /w ocsetup.exe Microsoft-Hyper-V.
  14. Reboot.
  15. Download and install Remote Management for Windows Vista.

August 20, 2008 Posted by titn003 | Uncategorized | | No Comments Yet

Migrating AD from W2K3 to W2K8

The safest and simplest way to migrate is to start by adding a Windows 2008 Domain controller to your existing domain

First you need to Adprep your 2003 Domain by running
adprep /forestprep    and
adprep /domainprep   and
adprep /gpprep

do this by placing the from 2008 DVD in the Windows 2003 DC  - ADPREP is in the SOURCES folder on the DVD.

Once done you can run the setup program from the 2008 DVD and do an upgrade, or you can do a clean install on a new box and join the 2008 machine to the domain – the latter is my preferred option.

If you take the latter route you need to assign the 2008 new computer an IP address and subnet mask on the existing network. Make sure that the preferred DNS server on new machine points to the existing DNS Server on the Domain (normally the existing domain controller)

Join the new 2008 machine to the existing domain as a member server

From the command line promote the new machine to a domain controller with the DCPROMO command from the command line Select “Additional Domain Controller in an existing Domain”

Once Active Directory is installed then to make the new machine a global catalog server, go to Administrative Tools, Active Directory Sites and Services, Expand, Sites, Default first site and Servers. Right click on the new server and select properties and tick the”Global Catalog” checkbox. (Global catalog is essential for logon as it needs to be queried to establish Universal Group Membership)

If necessary install DNS on the new server. Assuming that you were using Active Directory Integrated DNS on the first Domain Controller, DNS will automatically replicate to the new domain controller along with Active Directory.

If you want to transfer the FSMO roles to the 2008 machine (probably a good idea) then the process is as outlined at http://www.petri.co.il/transferring_fsmo_roles.htm

Netometer has a nice video – http://www.netometer.com/video/tutorials/windows-dc-2008-add-upgrade/index.php

August 20, 2008 Posted by titn003 | Uncategorized | | No Comments Yet