Server Core Configuration Tool
Some of you may remember a free tool called CoreConfigurator that you could use to configure Windows Server 2008 core (basically a simple GUI that allowed you to setup the system), unfortunately this tool was removed from the web. This new tool is uncomplied code (Script based) so you can even include your own additions in required. This Tool is a collection of scripts which will help provision and configure a Base Windows 2008 Server Core installation, The Server Core Configurator enables you to do all those 'little jobs' via a GUI, quickly and easily!
Product Licencing
Networking Features
DCPromo Tool
ISCSI Settings
Server Roles and Features
User and Group Permissions
Share Creation and Deletion
Firewall Settings
Display Settings
Add & Remove Drivers
Screensaver Settings
Windows Updates (Including WSUS)
and so much more...
Source:→ Microsoft
3 Responses | RSS comments on this post | Leave a comment»
No Pingback yet

The file Computer-settings is missing \on the dcpromo it is showing
DatabasePath = InputBox("Please enter the NTDS Database folder","DatabasePath","c:\Windowsntds")
instead of
DatabasePath = InputBox("Please enter the NTDS Database folder","DatabasePath","c:\Windows\ntds")
Same at this line
LogPath = InputBox("Please enter the NTDS Log file folder","LogPath","c:\Windowsntds")
It is the same as well with sysvol
SYSVOLPath = InputBox("Please enter the SYSVOL folder","SysVolPath","d:\Windowssysvol")
SYSVOLPath = InputBox("Please enter the SYSVOL folder","SysVolPath","d:\Windowssysvol")
with sysvol it is placing the sysvol on d: drvie It should be c:\Windows\sysvol
I don't think that this path is ok
ReplicationSourcePath = InputBox("Please enter where the system state files are to be located","ReplicationSourcePath","c:\NTDSrestore")
In the firewall con figuration the vbs show Remote Event Lo Management twice it should show it once plus Remote Desktop
Merci
I found a error in the code of the file Firewall-Setting.vbs. I was trying to put firewall rules for Remote Administration. I was getting a error.
the vbs code was generating the netsh command:
netsh advfirewall firewall set rule name="Remote Administration" new enable=yes
witch was returning a error
the code should be
netsh advfirewall firewall set rule group="Remote Administration" new enable=yes
I use notepad to found name. it bring me to this line
StrTemp = "netsh advfirewall firewall set rule name=" & Chr(34) & Input & Chr(34) & " new enable=yes"
I did replace name by group and it work find.
I will continue my testing but so far it is doing a great job.
Fell free to contact me by email.
I am sorry for my bad english