Showing posts with label Windows 2008 Core. Show all posts
Showing posts with label Windows 2008 Core. Show all posts

Tuesday, 8 April 2008

Windows 2008 Core Configurator Tool !

I came across this very cool tool to help configure a Windows 2008 Core server without needing to lookup all the CLI commands :-)

http://blogs.microsoft.co.il/files/folders/guyt/entry68860.aspx

Wayne Hollomby

Thursday, 13 March 2008

Adding a Windows 2008 Core Server to a Domain


To join a 2008 core server to a domain run the following command:





netdom join W2K8DC04 /domain:home.local /userd:yourusernamehere /passwordd:yourpasswordhere

Note: the account must have the correct priviledges to add a machine to the domain, also passwordd isn't a typo - and because this is the command prompt your password isn't hashed *******so make sure no one is looking over your shoulder ;-)

Update: you can just enter a single * and it will then prompt for a password that is hashed.

Once the server has rebooted you can verify this by running:

netdom verify w2k8dc04













Oliver Moazzezi

MVP - Exchange Server



Tuesday, 11 March 2008

Playing with Windows Server 2008 Core


I have been playing around Windows 2008. Specifically with the Core version of the product, in regards to designing a solution to fully support Entourage clients in a Hosted Exchange enviroment.

There were a few hurdles to first overcome however..


First is assigning a static IP to your Core installation.

I first had to run the following command to list the network adapters (NICs) installed on the server:

netsh interface ipv4 show interfaces














I then had to specify which adapter I wanted to change the IP for, using the Idx variable.

The command to change the IP to static was:

netsh interface ipv4 set address name="2" source=static address=192.168.20.107 mask=255.255.255.0 gateway=192.168.20.1


(obviously disregard my network settings)














Once this was done and I logged back onto the server (although I noted my server wasn't pinging - icmp responses - more on that later) and a simply ipconfig showed the changes had been made:














I then had to manually assign DNS servers, the command for this was:


netsh interface ipv4 add dnsserver name="2" address=192.168.20.100 index=1


for primary and then:

netsh interface ipv4 add dnsserver name="2" address=192.168.20.101 index=2

For secondary .

Note: specifying the Idx '2' again and the index=1 or 2 or more, specifying it's another DNS server.

I was then in a position to rename the machine, you are assigned a random computer name during the installation.

This was performed using:

netdom renamecomputer W47C1k34FRG1 /NewName:W2K8DC03














Once the machine had rebooted (shutdown /r) using the command hostname showed the name had changed succesfully.














More to come later on joining the machine to the domain and making it a Domain Controller, as well as my ICMP issue.



Oliver Moazzezi

MVP - Exchange Server