<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Server Core Configuration Tool</title>
	<atom:link href="http://www.ditii.com/2008/09/10/server-core-configuration-tool/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ditii.com/2008/09/10/server-core-configuration-tool/</link>
	<description>Technology, Blogging, Computer, Hardware, Software, Networking, Web, Media, LifeStyle, Gadgets</description>
	<lastBuildDate>Sun, 22 Nov 2009 02:30:08 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ghislain Massie</title>
		<link>http://www.ditii.com/2008/09/10/server-core-configuration-tool/#comment-61974</link>
		<dc:creator>Ghislain Massie</dc:creator>
		<pubDate>Mon, 10 Nov 2008 22:53:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.ditii.com/2008/09/10/server-core-configuration-tool/#comment-61974</guid>
		<description>The file Computer-settings is missing \on the dcpromo it is showing
            DatabasePath = InputBox(&quot;Please enter the NTDS Database folder&quot;,&quot;DatabasePath&quot;,&quot;c:\Windowsntds&quot;)
instead of
            DatabasePath = InputBox(&quot;Please enter the NTDS Database folder&quot;,&quot;DatabasePath&quot;,&quot;c:\Windows\ntds&quot;)
Same at  this line
           LogPath = InputBox(&quot;Please enter the NTDS Log file folder&quot;,&quot;LogPath&quot;,&quot;c:\Windowsntds&quot;)
It is the same as well with sysvol
            SYSVOLPath = InputBox(&quot;Please enter the SYSVOL folder&quot;,&quot;SysVolPath&quot;,&quot;d:\Windowssysvol&quot;)

            SYSVOLPath = InputBox(&quot;Please enter the SYSVOL folder&quot;,&quot;SysVolPath&quot;,&quot;d:\Windowssysvol&quot;)

with sysvol it is placing the sysvol on d: drvie It should be c:\Windows\sysvol

I don&#039;t think that this path is ok
          ReplicationSourcePath = InputBox(&quot;Please enter where the system state files are to be located&quot;,&quot;ReplicationSourcePath&quot;,&quot;c:\NTDSrestore&quot;)</description>
		<content:encoded><![CDATA[<p>The file Computer-settings is missing \on the dcpromo it is showing<br />
            DatabasePath = InputBox("Please enter the NTDS Database folder","DatabasePath","c:\Windowsntds")<br />
instead of<br />
            DatabasePath = InputBox("Please enter the NTDS Database folder","DatabasePath","c:\Windows\ntds")<br />
Same at  this line<br />
           LogPath = InputBox("Please enter the NTDS Log file folder","LogPath","c:\Windowsntds")<br />
It is the same as well with sysvol<br />
            SYSVOLPath = InputBox("Please enter the SYSVOL folder","SysVolPath","d:\Windowssysvol")</p>
<p>            SYSVOLPath = InputBox("Please enter the SYSVOL folder","SysVolPath","d:\Windowssysvol")</p>
<p>with sysvol it is placing the sysvol on d: drvie It should be c:\Windows\sysvol</p>
<p>I don't think that this path is ok<br />
          ReplicationSourcePath = InputBox("Please enter where the system state files are to be located","ReplicationSourcePath","c:\NTDSrestore")</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ghislain Massie</title>
		<link>http://www.ditii.com/2008/09/10/server-core-configuration-tool/#comment-61973</link>
		<dc:creator>Ghislain Massie</dc:creator>
		<pubDate>Mon, 10 Nov 2008 22:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.ditii.com/2008/09/10/server-core-configuration-tool/#comment-61973</guid>
		<description>In the firewall con figuration the vbs show Remote Event Lo Management twice it should show it once plus Remote Desktop
 Merci</description>
		<content:encoded><![CDATA[<p>In the firewall con figuration the vbs show Remote Event Lo Management twice it should show it once plus Remote Desktop<br />
 Merci</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ghislain Massie</title>
		<link>http://www.ditii.com/2008/09/10/server-core-configuration-tool/#comment-61971</link>
		<dc:creator>Ghislain Massie</dc:creator>
		<pubDate>Mon, 10 Nov 2008 21:23:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.ditii.com/2008/09/10/server-core-configuration-tool/#comment-61971</guid>
		<description>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=&quot;Remote Administration&quot; new enable=yes
witch was returning a error
the code should be 
netsh advfirewall firewall set rule group=&quot;Remote Administration&quot; new enable=yes

I use notepad to found name. it bring me to this line
StrTemp = &quot;netsh advfirewall firewall set rule name=&quot; &amp; Chr(34) &amp; Input &amp; Chr(34) &amp; &quot; new enable=yes&quot;
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</description>
		<content:encoded><![CDATA[<p>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.<br />
the vbs code was generating the netsh command:<br />
netsh advfirewall firewall set rule name="Remote Administration" new enable=yes<br />
witch was returning a error<br />
the code should be<br />
netsh advfirewall firewall set rule group="Remote Administration" new enable=yes</p>
<p>I use notepad to found name. it bring me to this line<br />
StrTemp = "netsh advfirewall firewall set rule name=" &amp; Chr(34) &amp; Input &amp; Chr(34) &amp; " new enable=yes"<br />
I did replace name by group and it work find.</p>
<p>I will continue my testing but so far it is doing a great job.</p>
<p>Fell free to contact me by email.<br />
I am sorry for my bad english</p>
]]></content:encoded>
	</item>
</channel>
</rss>
