Windows Server Core - CoreConfigurator to the rescue

At first look, developing a GUI utility for configuration of Windows Server Core might sound quite absurd. Alas, the whole point of Server Core is a cut down version of Server OS without the overhead of GUI and having some GUI tool to help you configure it would be like walking backwards.

Yet, if you look back at various blogs and articles, you will see that there is a repeating pattern: there is more-or-less predefined set of tasks that you need to do in order to get the installation of Server Core up and running (activation, IP and firewall configuration, domain join, feature installation, configuration of Remote Desktop and etc...). All the tasks are performed at command line, but there is no single utility/interface and for each task you need to know what command to use and what are the parameters required in order to complete the task.

For the IT veterans this will not be an issue, but being Core enthusiast I was also thinking about those that the steep learning curve of Server Core might scare them away and prevent them from enjoying the benefits Server Core brings with it. At this point the idea of developing a small GUI utility for basic configuration of Server Core was born. Well... that and the fact that my good friend Daniel Petri was sitting on my neck and promising a LOT of beer for writing a tool to do the basic configuration stuff (see his article about the tool here).

So here it goes: Daniel, thanks for pushing me to write the tool! Looks like people liked the idea.

Introducing CoreConfigurator

Features:

  • Product Activation
  • Configuration of display resolution
  • Clock and time zone configuration
  • Remote Desktop configuration
  • Management of local user accounts (creation, deletion, group membership, passwords)
  • Firewall configuration
  • WinRM configuration
  • IP configuration
  • Computer name and domain/workgroup membership
  • Installation of Server Core features/roles

After installing CoreConfigurator (supplied as MSI package), navigate to the folder where it has been installed and execute CoreConfigurator.exe

Tip: you do not actually need to install the application. The 4 files in the program's folder can be copied and used on other Server Core computers without installing the application)

 

The main screen:

main

Activation screen

Here you can view the current activation status, install the Product Key (in case you did not do that during the OS setup) and activate the server:

activation

How it works: all the tasks in the background are achieved by calling slmgr.vbs script (part of the OS) with relevant arguments. Product Key installation is uses the "-ipk" switch and activation is using "-ato" switch.

 

Display Settings

Display Settings screen gives you an easy was of configuring the display resolution and "Show window content while dragging" feature that can improve the user experience quite a lot if the server is virtualized and you are working on it's console (notice that this is a per-user versus per-machine setting).

display_settings

Time Zone

Clicking Time Zone button will bring the standard timedate.cpl control panel applet:

timezone

Remote Desktop

Clicking the RDP button will let you enable/disable Remote Administration connections (you still need to enable the relevant rules in the firewall. You can use the "Remote Administration" rule set in firewall configuration section or manually open the relevant rules using netsh.exe). In addition you can configure here the "Allow connections from previous versions of Windows":

rdp

 

Account Management

In this section you can easily create local user accounts, manage the account passwords and add/remove local accounts to local groups:

Account Management

Creating new user account

 

Firewall

Managing firewall with command line is not always an easy task. The firewall section is here to help you configure the basic rules so that you will be able to at least connect and administer the server from a remote machine.

Warning: the tool will not display the current state of the already configured firewall rules. The fact is that figuring what rules are already configured is a very hard task and I was looking for a simple way to enable/disable some pre-configured rulesets.

Firewall Configuration

 

WinRM

Here you can enable/disable the WinRM. Enabling WinRM is equivalent to running "winrm -quickconfig". Disabling the WinRM will delete the WinRM listener:

WinRM 

 

Networking

The Networking section is very similar to IP settings dialog you have in GUI-capable Windows versions:

IP Settings

 

Computer Name

In this section you can rename the computer and join it to a domain/workgroup:

Computer Name 

 

Features

Here you can install/uninstall various Server Core features.

Warning:  Figuring out what features are already installed turned out to be not an easy task. The new WMI Win32_ServerFeature class has some limitations that result in feature list being refreshed only after reboot. This means that if you install a specific feature and query Win32_ServerFeature, you will not see the new feature untill you reboot.(I have been pinged by MSFT folks about this and it looks I was partially wrong. We are currently having a discussion about this WMI class - if I get any news, I'll update the post. Nice to know that there are people there that care about things like this. Thanks Ashish !) The limitations made me go a slightly different route: I am parsing the output of oclist.exe. The downside is that some IIS features after being installed do not show up as installed in the output of oclist.exe. If you want to make sure the specific IIS feature has been installed, look at the event logs. If you know a better way to query in real-time for the list of the installed features, please contact me.

Server Features 

Download CoreConfigurator now !

Published Saturday, March 22, 2008 1:09 AM by Guy Teverovsky

Comments

Sunday, March 23, 2008 1:19 AM by eran

# re: Windows Server Core - CoreConfigurator to the rescue

looks intersting

Sunday, March 23, 2008 7:42 AM by Erik Rozman

# re: Windows Server Core - CoreConfigurator to the rescue

Very impressive,great work!

Sunday, March 23, 2008 12:17 PM by ScriptFanatic

# re: Windows Server Core - CoreConfigurator to the rescue

Sunday, March 23, 2008 4:25 PM by Danielp

# re: Windows Server Core - CoreConfigurator to the rescue

Tell the world who bugged you to write this tool!!!

Sunday, March 23, 2008 4:35 PM by Guy Teverovsky

# re: Windows Server Core - CoreConfigurator to the rescue

"Tell the world who bugged you to write this tool!!!"

Well... Looks like my memory has been been severely damaged by the lack of beer someone owns me...

Monday, March 24, 2008 12:14 PM by Rolf

# re: Windows Server Core - CoreConfigurator to the rescue

Hello,

great stuff! Thx for sharing this to the world.

One suggestion: What about disk configuration?

Assigning driveletters, partitioning etc?

best regards

Rolf

Monday, March 24, 2008 5:17 PM by Guy Teverovsky

# re: Windows Server Core - CoreConfigurator to the rescue

Rolf,

This was designed to be rather basic tool. Something without extra fat to get you up and running. If you are looking for more advanced options, I think that RSAT tools are the answer as after you are done with CoreConfigurator, the box is ready to be managed remotely.

Wednesday, March 26, 2008 3:17 PM by Jorge 's Quest For Knowledge!

# A new gang in town – Server Core (W2K8)

You probably already know it by now. If you don't, where the heck have you been lately? Windows Server

Thursday, March 27, 2008 10:49 PM by Windows Server 2008 blog by Kurt Roggen [BE]

# Configuring Server Core via a GUI

Configuring Windows Server 2008 Server Core installations can be quite challenging... surely if you are

# Helmers Blog » Blog Archive » How-To Configure Server Core

Pingback from  Helmers Blog  » Blog Archive   » How-To Configure Server Core

Friday, March 28, 2008 6:35 PM by Lukas Beeler

# re: Windows Server Core - CoreConfigurator to the rescue

Ah well, what should i say?

First, it's a great idea. Windows commandline interface isn't really optimized for daily use, and such a tool can be helpful.

The tricky part comes now: don't over do it. :)

Friday, March 28, 2008 8:02 PM by Guy Teverovsky

# re: Windows Server Core - CoreConfigurator to the rescue

Lukas, the command line is not that bad. The main reason was to build a tool for those that are not used to CLI and it will take them some time to figure out how to do things the Core-way.

And you are absolutely right - the tool is for the basic stuff. I have no intension of writing Server Manager from scratch ;)

Sunday, March 30, 2008 10:54 AM by Sander Berkouwer

# re: Windows Server Core - CoreConfigurator to the rescue

Guy,

I think you've done a splendid job on writing this helpful piece of software!

Perhaps to assist the adoption of the Server Core way of things, you can display the commands you issued to retrieve the information and the commands to issue after selecting stuff, before actually issuing them? (like the new Exchange Management Console, which is built upon Powershell)

I guess CoreConfigurator can help a lot of people get acquainted with Server Core, which will definitely lead to broader adoption of this installation option. I'll definitely recommend it to people starting with Server Core.

Monday, March 31, 2008 6:06 AM by Dale Unroe

# re: Windows Server Core - CoreConfigurator to the rescue

thank you, thank you, thank you

Monday, March 31, 2008 2:06 PM by [MSFT-BE] Arlindo's Blog - IT Pro Evangelist

# Configuring Server Core with a GUI

Remember one of my previous posts around Configuring Windows Server 2008 Server Core with the inbox tools,

Monday, March 31, 2008 3:18 PM by Sup'Astuces

# Configurer un Server Core avec une interface graphique !

Windows Server 2008 a un mode d'installation appelé Server Core. Dans ce mode, il n'y a

Monday, March 31, 2008 6:49 PM by Dale Unroe

# re: Windows Server Core - CoreConfigurator to the rescue

FYI - there are two listings for File & Printer Sharing under the Firewall Configuration window.  You can see this above in your cap as well as with the tool when in use.

Additionally, though I've enabled RDP, I'm unable to remote into the Core box yet - also unable to remotely manage disks - can remotely access the Computer Managment UI but something is protesting a lack of RPC (enabled the FW top File & Printing Sharing but that wasn't sufficient to turn RPC on).  Pehaps there are some further basic management tasks needed beyond what this great tool does.

Thanks Again

Monday, March 31, 2008 8:05 PM by Robert Stuczynski

# re: Windows Server Core - CoreConfigurator to the rescue

good job! Thanks

Monday, March 31, 2008 10:10 PM by Guy Teverovsky

# re: Windows Server Core - CoreConfigurator to the rescue

Hi Dale,

Thanks for pointing me to the FW issues. You are totally right - the File&Print rule group was listed twice and the "Remote Desktop" rule group (needed for RDP) was missing. I have just uploaded an updated version. Please download and let me know if you are still having trouble with it.

As for disk management, have you enable the "Remote Volume Management" rule group ?

Tuesday, April 01, 2008 1:18 AM by Jakob H. Heidelberg

# re: Windows Server Core - CoreConfigurator to the rescue

Great stuff - really nice job!

PingBack:

heidelbergit.blogspot.com/.../core-with-gui.html

Tuesday, April 01, 2008 2:58 AM by NoPD

# re: Windows Server Core - CoreConfigurator to the rescue

Wow... Great application for Core Edition. :)

http://nopd.egloos.com/3684335

Tuesday, April 01, 2008 10:38 AM by Ralph T. Howarth, Jr.

# re: Windows Server Core - CoreConfigurator to the rescue

Actually, I was starting to build a Server Core answer file that can do all the configuration commands.  Then I thought somebody already done that.  And now I see this tool...great job!!! and thought, well how about the ability to make an "answer file" to automate the setup of additional Server Core installs right out of your GUI?  

Better, have the ability to install your tool on a non-SC box like a Vista or XP box that an IT person might be working on and permit an IT guy (or gal) to pre-build a configuration script on their laptop.

Tuesday, April 01, 2008 8:36 PM by Guy Teverovsky

# re: Windows Server Core - CoreConfigurator to the rescue

Ralph,

Glad you liked the tool. As for the "answer" file creation and and generation of config scripts, I'm not sure this is the right tool for the job. I did not have a look at the W2K8 deployment tools yet, but my guess is that those tasks can be accomplished using the MS supplied tools like you did that in pre-W2K8 era (unattended installs etc...)

Tuesday, April 01, 2008 9:03 PM by Tool: Server Core Configurator « ICT-Freak

# Tool: Server Core Configurator « ICT-Freak

Pingback from  Tool: Server Core Configurator « ICT-Freak

Tuesday, April 01, 2008 10:05 PM by 4sysops - CoreConfigurator - A GUI for Server Core

# 4sysops - CoreConfigurator - A GUI for Server Core

Pingback from  4sysops -   CoreConfigurator - A GUI for Server Core

Wednesday, April 02, 2008 4:38 AM by Dan Taylor

# re: Windows Server Core - CoreConfigurator to the rescue

I don't suppose you can add NIC teaming to the GUI? I can't figure out how to team the NIC's in my Proliant DL360 G5...

# No GUI for Server 2008 Core…not so fast « Incident Factor

Pingback from  No GUI for Server 2008 Core…not so fast « Incident Factor

# Grafiskt konfig-verktyg till Windows Server 2008 Core « Tom Aafloen bloggar om IT

Pingback from  Grafiskt konfig-verktyg till Windows Server 2008 Core « Tom Aafloen bloggar om IT

Wednesday, April 02, 2008 10:00 AM by Nullsession.com » Server Core - Cheating is allowed

# Nullsession.com » Server Core - Cheating is allowed

Pingback from  Nullsession.com » Server Core - Cheating is allowed

Wednesday, April 02, 2008 11:42 AM by David nudelman

# re: Windows Server Core - CoreConfigurator to the rescue

The god of all administrators!

Thank youuuu!

Wednesday, April 02, 2008 2:11 PM by Guy Teverovsky

# re: Windows Server Core - CoreConfigurator to the rescue

Dan,

Have not tested this, but from looking at HP Networking Utilities User Guide (h20331.www2.hp.com/.../c00752571.pdf), I see that the teaming configuration can be scripted. Quoting:

Step 1. Generate a script file on the source server by clicking Save in the HP Network

Configuration Utility user interface, or by selecting CQNICCMD /S in the Command Line

utility.

Step 2. Modify the script file as necessary.

NOTE If you modify the script file, HP recommends that you run CQNICCMD /P to check the

syntax of the modified file and check the log file for errors and warnings. The default

location of the log file is \cpqsystem\log\cpqteam.log on the system drive. The

syntax of the /P option is: cqniccmd /pfilename.

Step 3. Install the HP Network Configuration utility on the target system.

Step 4. Run the Command Line utility with the following syntax:

cqniccmd /C <pathname>

Network Adapter Scripting Utility

The scripting application (CQNICCMD)

Chapter 4 27

Step 5. Check the log file for errors and warnings. The default location of the log file is

\cpqsystem\log\cpqteam.log on the system drive.

# faq-o-matic.net &raquo; Das GUI f&uuml;r Server Core ist da: CoreConfigurator

Pingback from  faq-o-matic.net  &raquo; Das GUI f&uuml;r Server Core ist da: CoreConfigurator

Wednesday, April 02, 2008 4:51 PM by Nils Kaczenski

# re: Windows Server Core - CoreConfigurator to the rescue

Guy,

this is really great. I instantly blogged on your tool. However, maybe I found a bug or at least an issue: On my German Core install, the Features & Roles tool creates no list. Maybe it's a language issue?

Best wishes,

Nils (Server MVP)

... and BTW: for those amongst us who use VMware Workstation, here's how to install the tool through VMware Shared Folders - assuming you shared C:\ as Host-C:

copy "\\.host\Shared Folders\Host-C\MyData\CoreConfigurator_1.0.139\CoreConfigurator.msi" c:\

msiexec /i CoreConfigurator.msi

del CoreConfigurator.msi

"c:\Program Files\CoreConfigurator\CoreConfigurator.exe"

Wednesday, April 02, 2008 5:12 PM by Guy Teverovsky

# re: Windows Server Core - CoreConfigurator to the rescue

Hi Nils,

Yep.. Because I am parsing the output of oclist and looking for specific strings, the Features part will be broken on non English versions of the Core. Currently I'm working on adding DCPROMO option, but the next task would probably be to rewrite the Features part to be language independent. There is a feature dependencies hell there I was trying to avoid, but looks like there is no other way out...

So stay tuned - more to come.

Wednesday, April 02, 2008 6:51 PM by Dan Taylor

# re: Windows Server Core - CoreConfigurator to the rescue

Thanks for finding the process to setup teaming. I have not tried it on server core, but it did work for server 08, so I am assuming it will work on server core as well!

I searched for a few hours and came up empty. Glad you were able to find it!

Thursday, April 03, 2008 1:41 AM by AbsoluteVista

# CoreConfigurator

Readers of my blogs know how much I dislike the use of the command line, no matter how adept I am at

Thursday, April 03, 2008 1:43 AM by AbsoluteVista

# CoreConfigurator

Readers of my blogs know how much I dislike the use of the command line, no matter how adept I am at

Thursday, April 03, 2008 7:22 AM by 꼬알라의 하얀집...

# Windows Server Core - CoreConfigurator

NoPD님의 블로그 글을 보고 저도 처음 알았던 내용입니다. 이스라엘 Microsoft의 Guy Teverovsky께서 블로그에 올리신 글이 CoreConfiurator의 소개입니다.

# dljonsson &raquo; Blog Archive &raquo; Microsoft Windows Server 2008 Core Configurator

Pingback from  dljonsson  &raquo; Blog Archive   &raquo; Microsoft Windows Server 2008 Core Configurator

Thursday, April 03, 2008 4:22 PM by GUI Love « Ian Blyth - System Center Technologies

# GUI Love &laquo; Ian Blyth - System Center Technologies

Pingback from  GUI Love &laquo; Ian Blyth - System Center Technologies

Thursday, April 03, 2008 4:49 PM by ADSide

# Windows Server 2008 Core GUI Tool

Windows Server 2008 Core &#232; una versione &quot;ridotta&quot; di Windows priva di interfaccia grafica

# Press CTRL + ALT + DEL to start &raquo; GUI for Windows 2008 Core

Pingback from  Press CTRL + ALT + DEL to start &raquo; GUI for Windows 2008 Core

# Need Help Configuring Server Core? - Virtual Server Gurus

Pingback from  Need Help Configuring Server Core? - Virtual Server Gurus

Saturday, April 05, 2008 9:10 AM by Alex

# re: Windows Server Core - CoreConfigurator to the rescue

What a cool tool help people who are familiar with GUI operations to configure Windows Server 2008 Core.

# totalnetsolutions.net &raquo; Server Core administration goodness

Pingback from  totalnetsolutions.net &raquo; Server Core administration goodness

Tuesday, April 08, 2008 12:31 AM by cherb

# re: Windows Server Core - CoreConfigurator to the rescue

Regarding setting up NIC Teaming on an HP system.  Once the PSP is installed, simply type hpteam.cpl at the command line to launch the HP Teaming control panel applet.

Tuesday, April 08, 2008 1:18 AM by Simon

# re: Windows Server Core - CoreConfigurator to the rescue

Great tool.

A word of advice, if you get access denied then you probably haven't unblocked the downloaded zip file. Which stops server core from installing it.

Further more it seems I can't install it from a network share, unlike other msi's.

But when copied locally it works fine (once zip file had been unblocked.

Tuesday, April 08, 2008 8:47 AM by Joel Stidley's Exchange and PowerShell Blog

# Windows Server Core Configurator

I came across this doing some research and had to share it. Guy Teverovsky has written a tool that will

Thursday, April 10, 2008 11:55 AM by Windows Server 2008 Core Configurator at marco.log

# Windows Server 2008 Core Configurator at marco.log

Pingback from  Windows Server 2008 Core Configurator at marco.log

Saturday, April 12, 2008 1:27 PM by Argolab

# Lo sapevo...Windows Server 2008 Core: GUI??!

Anni (anzi, aaaanni ) a sentirmi dire dai clienti pi&#249; &quot;critici&quot; che Windows non &#232;

Sunday, April 13, 2008 2:52 PM by Ockert

# re: Windows Server Core - CoreConfigurator to the rescue

Hi Guy - one of the items I've noticed that will delay adoption of Core is iSCSI configuration. Would it be possible to add support to configure iSCSI support in the tool?

Monday, April 14, 2008 10:37 AM by Yaniv F

# re: Windows Server Core - CoreConfigurator to the rescue

thanks Guy

good job

Tuesday, April 15, 2008 6:53 AM by Beshkov Andrey

# Server Core - управление с помощью графических инструментов

Конечно, по умолчанию предполагалось управлять Server Core именно с командной строки. И несмотря на,

# Server Core GUI tool &laquo; Microsoft Engineer - Core Infrastructuur.

Pingback from  Server Core GUI tool &laquo; Microsoft Engineer - Core Infrastructuur.

Tuesday, April 22, 2008 4:39 PM by Tecnologias

# Server Core com interface gráfica

Que tal essa? Pois é, o Guy se superou e criou uma interface gráfica para o Server Core que vai facilitar

Tuesday, April 22, 2008 4:39 PM by Carlos Fernando Paleo da Rocha
SBS MVP in Brazil

# Server Core com interface gráfica

Que tal essa? Pois é, o Guy se superou e criou uma interface gráfica para o Server Core que vai facilitar

# CoreConfigurator (Core Configurator) GUI Configuration Tool for Windows Server 2008 Server Core Free Download &raquo; Tip and Trick

Pingback from  CoreConfigurator (Core Configurator) GUI Configuration Tool for Windows Server 2008 Server Core Free Download  &raquo;  Tip and Trick

# CoreConfigurator (Core Configurator) GUI Configuration Tool for Windows Server 2008 Server Core Free Download &raquo; Tip and Trick

Pingback from  CoreConfigurator (Core Configurator) GUI Configuration Tool for Windows Server 2008 Server Core Free Download  &raquo;  Tip and Trick

# Windows Server 2008 Core Y&ouml;netimi i&ccedil;in kullan????l?? bir program -Basic GUI configuration utility for Windows Server Core 2008 | Hakan Uzuner - COZUMPARK.COM

Pingback from  Windows Server 2008 Core Y&ouml;netimi i&ccedil;in kullan????l?? bir program -Basic GUI configuration utility for Windows Server Core 2008 | Hakan Uzuner - COZUMPARK.COM

# CoreConfigurator, C&oacute;mo Configurar un Server Core desde GUI | Diego Cabai | Blog

Pingback from  CoreConfigurator, C&oacute;mo Configurar un Server Core desde GUI | Diego Cabai | Blog

Wednesday, May 07, 2008 3:24 PM by Diego Cabai | Blog

# CoreConfigurator, Cómo Configurar un Server Core desde GUI

Digamos que el beneficio de instalar un Windows Server 2008 Server Core es justamente el hecho de no

# Kueppers-Board Blog Space &raquo; Blog Archive &raquo; Windows Server 2008 Core: Core Configurator

Pingback from  Kueppers-Board Blog Space  &raquo; Blog Archive   &raquo; Windows Server 2008 Core: Core Configurator

Tuesday, May 13, 2008 1:39 PM by q

# re: Windows Server Core - CoreConfigurator to the rescue

no need for a flashy gui on a server. id like this tool extended to cover all system settings with the same eye for design and id never use a non-core os again.

i must complain that the remote tools ONLY work on vista, i dont have all day to wait for vista to do jobs that xp wouldnt even think about.i also find vista very ugly(all the annoying cycling circles - progress bars worked well).

to summarise:

1>nice tool

2>more comprehensive version would be great or

2a>vista sux so 2008 remote tools on xp please

4>keep up the good work

bye v'lihitraot

Tuesday, May 13, 2008 9:30 PM by Guy Teverovsky

# re: Windows Server Core - CoreConfigurator to the rescue

Hi q,

I do not work for MS (having a blog on this site does not make you one ;) ), so do not take my words for granted.

IMO the reason for not releasing RSAT for XP has to do with the fact that W2K8 and XP code base is too different. XP is just lacking some APIs that I guess are required for managing W2K8 from remote, and implementing those would require quite extensive work and effort that is probably not justified from the business point of view.

What I would like to see is some console text based config tool for Core - most of the Unix flavors have those (like SAM on HP-UX, SMIT on AIX, etc...). Instead of fiddling with various scripts, you would get some console "DOS-style GUI" configuration tool where you would be able to do those initial configuration tasks.

Wednesday, May 21, 2008 2:33 PM by Peering through Windows...

# Now this is GENIUS - Server Core Configurator...

If you are doing anything with Server Core in Windows Server 2008, you'll know that there are always

Tuesday, June 03, 2008 10:56 AM by GUI for a GUIless OS « WP 2008

# GUI for a GUIless OS &laquo; WP 2008

Pingback from  GUI for a GUIless OS &laquo; WP 2008

Wednesday, June 04, 2008 8:13 PM by Donuts

# re: Windows Server Core - CoreConfigurator to the rescue

The tool looks great. What I would love to see is a window that shows you what commands/scripts were run so we could see the CLI backend to get more acustom to using it.

Sunday, June 08, 2008 10:59 AM by Now hiring For Online Chat Operators!

# re: Windows Server Core - CoreConfigurator to the rescue

From Now Until June 30th, earn $100 per chat signup from the comfort of your own home. Chat as little or as much as you'd like.

Tuesday, June 10, 2008 8:32 PM by The World Simplified is a Virtual World

# Using Windows 2008 EntEd Server Core with Hyper-V RC0, SCVMM 2008 Beta and XenDesktop

I was chatting with “ Robin J Brandl ” who is a Microsoft Technology Evangelist with Citrix. Robin as

# Windows 2008 EntEd Server Core with Hyper-V RC0, SCVMM 2008 Beta and XenDesktop &raquo; D' Technology Weblog: Technology, Blogging, Tips, Tricks, Computer, Hardware, Software, Tutorials, Internet, Web, Gadgets, Fashion, LifeStyle, Entertainment, News a

Pingback from  Windows 2008 EntEd Server Core with Hyper-V RC0, SCVMM 2008 Beta and XenDesktop &raquo; D' Technology Weblog: Technology, Blogging, Tips, Tricks, Computer, Hardware, Software, Tutorials, Internet, Web, Gadgets, Fashion, LifeStyle, Entertainment, News and more by Deepak Gupta.

# GUI for Windows Server 2008 Server Core &laquo; Patrick&#8217;s Bytes

Pingback from  GUI for Windows Server 2008 Server Core &laquo; Patrick&#8217;s Bytes

Tuesday, June 17, 2008 5:52 PM by Brian

# re: Windows Server Core - CoreConfigurator to the rescue

NICE!!  I love the tool!

Thursday, June 19, 2008 1:29 AM by The things that are better left unspoken

# My beef with CoreConfigurator

Guy Teverovsky is an Israeli Microsoft Most Valuable Professional (MVP), who blogs on the Israeli Microsoft

Tuesday, June 24, 2008 7:54 AM by Gus

# re: Windows Server Core - CoreConfigurator to the rescue

Hi,

for some reason the download is no longer available.  Any idea when it will be back up again?  Thanks.

Tuesday, June 24, 2008 6:19 PM by rfradin

# re: Windows Server Core - CoreConfigurator to the rescue

when CoreConfigurator will be back up again ?

i need it ! ! !

Saturday, June 28, 2008 10:07 PM by Al

# re: Windows Server Core - CoreConfigurator to the rescue

earth to CoreConfigurator: Anything, anything. When do you plan to be back?

# Windows 2008 Server Core edition and final release of Hyper-V

Pingback from  Windows 2008 Server Core edition and final release of Hyper-V

Tuesday, July 08, 2008 4:51 AM by CoreConfigurator GUI for Vista Core « Pc Base

# CoreConfigurator GUI for Vista Core &laquo; Pc Base

Pingback from  CoreConfigurator GUI for Vista Core &laquo; Pc Base

# Feldstudie.net .::. GUI f&uuml;r Windows Server 2008 Core .::. 2008, Core, Server

Pingback from  Feldstudie.net .::. GUI f&uuml;r Windows Server 2008 Core .::. 2008, Core, Server

Thursday, July 10, 2008 1:13 AM by David Z

# re: Windows Server Core - CoreConfigurator to the rescue

Since the download has been pulled, would someone who has already download it please share?  I would really appreciate it. Thank you in advance.

Friday, July 11, 2008 9:23 AM by v-ms

# re: Windows Server Core - CoreConfigurator to the rescue

If you did not got the tool from  Guy Teverovsky  blog site because for some until known no explanation reason,

You will be able to still downloading this fantastic tool that avoid to use to not loosing time from mirror following blog site

http://nopd.egloos.com/3684335

Or just use direct link

pds8.egloos.com/.../CoreConfigurator_1.0.139.zip

I hope as many that developer Guy have time to still improvement the rool

# How-To: Hyper-V mit Windows Server Core 2008 | Server Talk

Pingback from  How-To: Hyper-V mit Windows Server Core 2008 | Server Talk

Friday, July 18, 2008 11:50 AM by Charly

# re: Windows Server Core - CoreConfigurator to the rescue

Hi to all,

I am loking for the coreconfigurator download, but all the parts are disabled or closed. How can help me to get the software for testing.

Thank's

Charly

# Quick setting your system with CoreConfigurator | Bugjee.com

Pingback from  Quick setting your system with CoreConfigurator | Bugjee.com

Tuesday, July 29, 2008 4:35 AM by WBadmin.msc - MCSEboard.de MCSE Forum

# WBadmin.msc - MCSEboard.de MCSE Forum

Pingback from  WBadmin.msc - MCSEboard.de MCSE Forum

Thursday, August 07, 2008 11:54 AM by Calvin

# re: Windows Server Core - CoreConfigurator to the rescue

Thank you, v-ms!!! The developer's greedy employer made him yank the program off the web so finding the download URL just got harder.

# How-To: Active Directory mit Windows Server Core 2008 | Server Talk

Pingback from  How-To: Active Directory mit Windows Server Core 2008 | Server Talk

Monday, August 18, 2008 6:57 AM by сайдинг

# re: Windows Server Core - CoreConfigurator to the rescue

4aI'll thingk about it.3y I compleatly agree with last post.

<a href="all-siding.ru/index.php сайдингом</a> 8o

<a href="all-siding.ru/index.php сайдинг</a> 3t

Tuesday, August 19, 2008 10:50 PM by James Conrad

# re: Windows Server Core - CoreConfigurator to the rescue

guy, this is an AWESOME tool and I thank you very much for producing it. this will really be extremely helpful for me and save me from my error-prone command-line typing :)

Friday, August 22, 2008 12:48 PM by hosting

# re: Windows Server Core - CoreConfigurator to the rescue

hosting

Friday, September 05, 2008 1:27 AM by desktop wallpapers

# re: Windows Server Core - CoreConfigurator to the rescue

there is more-or-less predefined

Friday, September 05, 2008 4:11 PM by sitemde

# re: Windows Server Core - CoreConfigurator to the rescue

thanks for your type

Monday, September 08, 2008 1:46 PM by Philip

# re: Windows Server Core - CoreConfigurator to the rescue

Hi Guys

I have just found a link on codeplex, there is a tool very similar to Guy's but it's completely Open Source (yes you read this right) and FREE. :-) you have to love Microsoft sometimes.

go over and check it out

www.codeplex.com/coreconfig

Monday, September 08, 2008 2:03 PM by Wired

# re: Windows Server Core - CoreConfigurator to the rescue

I heard that a tool was being released at the same time as Hyper-V Server I didnt release it was so good, GO GUI ON CORE

# Windows Server 2008 Core - CoreConfigurator &laquo; Scribblings of a TechnoBuff

Pingback from  Windows Server 2008 Core - CoreConfigurator &laquo; Scribblings of a TechnoBuff

Thursday, September 11, 2008 7:02 PM by hikaye

# re: Windows Server Core - CoreConfigurator to the rescue

thanks a lot

Wednesday, September 24, 2008 12:21 PM by Windows Server 2008 Core - Useful Commands | Rob’s Blog

# Windows Server 2008 Core - Useful Commands | Rob&#8217;s Blog

Pingback from  Windows Server 2008 Core - Useful Commands | Rob&#8217;s Blog

Wednesday, September 24, 2008 12:21 PM by Windows Server 2008 Core - Useful Commands | Rob’s Blog

# Windows Server 2008 Core - Useful Commands | Rob&#8217;s Blog

Pingback from  Windows Server 2008 Core - Useful Commands | Rob&#8217;s Blog

Saturday, October 11, 2008 11:46 AM by switch

# re: Windows Server Core - CoreConfigurator to the rescue

Hi Guy,

Great utility! What was the latest revision number of CoreConfigurator you issued? The version number I have is: 1.0.139. Could you please confirm if that was the most recent one?

Thanks and keep up the good work.

Regards, switch

Monday, October 13, 2008 8:43 PM by sex hikayeleri

# re: Windows Server Core - CoreConfigurator to the rescue

thanks a lot

Friday, October 17, 2008 6:14 PM by jayme

# re: Windows Server Core - CoreConfigurator to the rescue

reply back 2: jamied_uk@hotmail.com    here is my q.

i have installed server 2008 and activated it now it is saying dcpromo wil not work with this sku   ???

do i have to configure server 1st then activate

or do i have to update 1st then setup dcpromo?

please help a noobie lol i have a pid file so a key is not needed from me if i need anything just let me know .

Friday, October 17, 2008 6:15 PM by jayme

# re: Windows Server Core - CoreConfigurator to the rescue

how do i load this config manager there is no icon and it said successful install ???

Wednesday, October 22, 2008 11:26 AM by bakliyat

# re: Windows Server Core - CoreConfigurator to the rescue

thanks a lot

Saturday, November 01, 2008 10:48 PM by hikaye

# re: Windows Server Core - CoreConfigurator to the rescue

Yes good

Wednesday, November 05, 2008 8:44 AM by Saeburry Kim

# re: Windows Server Core - CoreConfigurator to the rescue

I,m First Installation with MS Server 2008 Core. Thank you!

Wednesday, November 05, 2008 9:50 AM by saeburry, KIm

# re: Windows Server Core - CoreConfigurator to the rescue

Thank you!

Wednesday, November 05, 2008 9:52 AM by saeburry, KIm

# re: Windows Server Core - CoreConfigurator to the rescue

Thank you!

Wednesday, November 05, 2008 9:53 AM by saeburry, KIm

# re: Windows Server Core - CoreConfigurator to the rescue

Yes fine.

Thursday, November 06, 2008 5:47 AM by Bako Csaba

# re: Windows Server Core - CoreConfigurator to the rescue

I can't download this tools, it tells me that page cannot be displayed, can anyone help ?

Monday, November 10, 2008 1:38 AM by faq-o-matic.net » Hyper-V mit Windows Server Core 2008

# faq-o-matic.net &raquo; Hyper-V mit Windows Server Core 2008

Pingback from  faq-o-matic.net  &raquo; Hyper-V mit Windows Server Core 2008

# Core 2K8 Server - Firewalleintrag f?r RDP zugriff - MCSEboard.de MCSE Forum

Pingback from  Core 2K8 Server - Firewalleintrag f?r RDP zugriff - MCSEboard.de MCSE Forum

Thursday, December 25, 2008 12:06 AM by eğlence

# re: Windows Server Core - CoreConfigurator to the rescue

thanks

Saturday, December 27, 2008 11:23 AM by güzel sözler

# re: Windows Server Core - CoreConfigurator to the rescue

thanks

Friday, January 02, 2009 1:37 PM by Server 2k8 in Workstation OS - Page 2

# Server 2k8 in Workstation OS - Page 2

Pingback from  Server 2k8 in Workstation OS - Page 2

Wednesday, January 07, 2009 12:57 AM by Liposuction

# re: Windows Server Core - CoreConfigurator to the rescue

What is that guy talking about?

Tuesday, January 27, 2009 9:30 PM by grinder

# re: Windows Server Core - CoreConfigurator to the rescue

Thanks for the review of CoreConfigurator

# holgi&#8217;s blog &raquo; [cosmin dumitru] Application hosting on Windows 2008 Core part 1

Pingback from  holgi&#8217;s blog &raquo;     [cosmin dumitru]    Application hosting on Windows 2008 Core part 1

Thursday, February 05, 2009 10:05 PM by elvankent düğün sarayı

# re: Windows Server Core - CoreConfigurator to the rescue

thank you for info

Saturday, February 07, 2009 3:16 PM by sex

# re: Windows Server Core - CoreConfigurator to the rescue

oooww Yes Thats is a good idea. thanks a lot

Thursday, February 12, 2009 12:11 AM by Business IT Solutions » Windows 2008 Core Configurator

# Business IT Solutions &raquo; Windows 2008 Core Configurator

Pingback from  Business IT Solutions &raquo; Windows 2008 Core Configurator

Friday, February 13, 2009 4:19 PM by sex

# re: Windows Server Core - CoreConfigurator to the rescue

Yes Thats is a good idea. Thanks

Friday, March 06, 2009 1:35 PM by Wikkie

# re: Windows Server Core - CoreConfigurator to the rescue

Hi There,

For whom are still looking for this tool.

His (old) company released an updated version.

for sale but free for personal use.

url:http://www.smart-x.com

Cheers.

Monday, March 30, 2009 10:54 PM by hosting

# re: Windows Server Core - CoreConfigurator to the rescue

thanks for your type

Friday, June 12, 2009 9:48 AM by Making Core a bit less ???hard???core - anbloo

# Making Core a bit less ???hard???core - anbloo

Pingback from  Making Core a bit less ???hard???core - anbloo

# 蘇老碎碎唸 &raquo; 好用的Server Core GUI管理工具-CoreConfigurator

Pingback from  蘇老碎碎唸 &raquo; 好用的Server Core GUI管理工具-CoreConfigurator

# Microsoft Windows Server 2008 Core Configurator - daniel jonsson

Pingback from  Microsoft Windows Server 2008 Core Configurator - daniel jonsson

Thursday, November 05, 2009 11:45 PM by TIPS ON MANAGING SERVER 2008 R2 CORE | eGROUP Blogs!

# TIPS ON MANAGING SERVER 2008 R2 CORE | eGROUP Blogs!

Pingback from  TIPS ON MANAGING SERVER 2008 R2 CORE | eGROUP Blogs!

# Win2008 :GUI Tool Server CoreConfigurator &laquo; My Technical Notes

Pingback from  Win2008 :GUI Tool Server CoreConfigurator &laquo; My Technical Notes

# M.Ufuk TATLID??L &raquo; Blog Ar??ivi &raquo; Windows Server 2008 Core Y&ouml;netimi i&ccedil;in kullan????l?? bir program -Basic GUI configuration utility for Windows Server Core 2008

Pingback from  M.Ufuk TATLID??L  &raquo; Blog Ar??ivi  &raquo; Windows Server 2008 Core Y&ouml;netimi i&ccedil;in kullan????l?? bir program -Basic GUI configuration utility for Windows Server Core 2008