<?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 for vbscriptblog.com</title>
	<atom:link href="http://vbscriptblog.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://vbscriptblog.com</link>
	<description>Scripting for Windows Sysadmins</description>
	<lastBuildDate>Thu, 10 May 2012 12:45:52 +0200</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Comment on Active Directory and WMI: VBscript to enumerate a sorted list of all mailboxes and their size in your AD domain by dirk adamsky</title>
		<link>http://vbscriptblog.com/vbscript/active-directory/email/active-directory-and-wmi-vbscript-to-enumerate-a-sorted-list-of-all-mailboxes-and-their-size-in-your-ad-domain/#comment-7041</link>
		<dc:creator>dirk adamsky</dc:creator>
		<pubDate>Thu, 10 May 2012 12:45:52 +0000</pubDate>
		<guid isPermaLink="false">http://deludi.nl/blog/?p=1040#comment-7041</guid>
		<description>Hi Stany,

Looks like the servername value (adoRecordset.Fields(&quot;name&quot;).Value)
is empty.
For a test you can replace adoRecordset.Fields(&quot;name&quot;).Value in line 34 with the dardcoded name of your exchange server. For example:

[sourcecode language=&quot;vb&quot;]
Set objWMIExchange = GetObject(&quot;winmgmts:{impersonationLevel=impersonate}!//exchsrv001/root/MicrosoftExchangeV2&quot;)
[/sourcecode]

Best regards,

Dirk Adamsky</description>
		<content:encoded><![CDATA[<p>Hi Stany,</p>
<p>Looks like the servername value (adoRecordset.Fields(&#8220;name&#8221;).Value)<br />
is empty.<br />
For a test you can replace adoRecordset.Fields(&#8220;name&#8221;).Value in line 34 with the dardcoded name of your exchange server. For example:</p>
<pre class="brush: vb; title: ; notranslate">
Set objWMIExchange = GetObject(&quot;winmgmts:{impersonationLevel=impersonate}!//exchsrv001/root/MicrosoftExchangeV2&quot;)
</pre>
<p>Best regards,</p>
<p>Dirk Adamsky</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Active Directory and WMI: VBscript to enumerate a sorted list of all mailboxes and their size in your AD domain by stany</title>
		<link>http://vbscriptblog.com/vbscript/active-directory/email/active-directory-and-wmi-vbscript-to-enumerate-a-sorted-list-of-all-mailboxes-and-their-size-in-your-ad-domain/#comment-7040</link>
		<dc:creator>stany</dc:creator>
		<pubDate>Thu, 10 May 2012 12:27:54 +0000</pubDate>
		<guid isPermaLink="false">http://deludi.nl/blog/?p=1040#comment-7040</guid>
		<description>im getting this error, please help

c:\ADscripts\sortedlistofallmailboxes.vbs(34, 2) Microsoft VBScript runtime erro
r: The remote server machine does not exist or is unavailable: &#039;GetObject&#039;</description>
		<content:encoded><![CDATA[<p>im getting this error, please help</p>
<p>c:\ADscripts\sortedlistofallmailboxes.vbs(34, 2) Microsoft VBScript runtime erro<br />
r: The remote server machine does not exist or is unavailable: &#8216;GetObject&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Active Directory And WMI: VBscript to monitor all servers in Active Directory by stany</title>
		<link>http://vbscriptblog.com/vbscript/active-directory/monitoring-active-directory-vbscript/active-directory-and-wmi-vbscript-to-monitor-all-servers-in-active-directory/#comment-7037</link>
		<dc:creator>stany</dc:creator>
		<pubDate>Thu, 10 May 2012 11:31:44 +0000</pubDate>
		<guid isPermaLink="false">http://deludi.nl/blog/?p=384#comment-7037</guid>
		<description>its working fine, thanks man</description>
		<content:encoded><![CDATA[<p>its working fine, thanks man</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Active Directory and WMI: VBscript to enumerate all mailboxes and their size in your AD domain by dirk adamsky</title>
		<link>http://vbscriptblog.com/vbscript/active-directory/exchange-active-directory-vbscript/active-directory-and-wmi-vbscript-to-enumerate-all-mailboxes-and-their-size-of-your-ad-domain/#comment-6309</link>
		<dc:creator>dirk adamsky</dc:creator>
		<pubDate>Wed, 11 Apr 2012 07:26:18 +0000</pubDate>
		<guid isPermaLink="false">http://deludi.nl/blog/?p=523#comment-6309</guid>
		<description>Hi Chris,

Sorry for my late reply (was very busy with other projects).
The line for strBase should be:

[sourcecode language=&quot;&quot;]
strBase = &quot;&lt;LDAP://&quot; &amp; objRootDSE.Get(&quot;configurationnamingcontext&quot;) &amp; &quot;&gt;&quot;
[/sourcecode]

This stands for your local domain.

I had to use the Wordpress plugin for publishing sourcecode...
In the regular comment field the line is shown like strBase = &quot;&quot;.
Everything between the quotes diappears.....

Happy scripting.

Best regards,

Dirk Adamsky</description>
		<content:encoded><![CDATA[<p>Hi Chris,</p>
<p>Sorry for my late reply (was very busy with other projects).<br />
The line for strBase should be:</p>
<p>strBase = &quot;&lt;LDAP://&quot; &amp; objRootDSE.Get(&quot;configurationnamingcontext&quot;) &amp; &quot;&gt;&quot;</p>
<p>This stands for your local domain.</p>
<p>I had to use the WordPress plugin for publishing sourcecode&#8230;<br />
In the regular comment field the line is shown like strBase = &#8220;&#8221;.<br />
Everything between the quotes diappears&#8230;..</p>
<p>Happy scripting.</p>
<p>Best regards,</p>
<p>Dirk Adamsky</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Active Directory and WMI: VBscript to enumerate all mailboxes and their size in your AD domain by dirk adamsky</title>
		<link>http://vbscriptblog.com/vbscript/active-directory/exchange-active-directory-vbscript/active-directory-and-wmi-vbscript-to-enumerate-all-mailboxes-and-their-size-of-your-ad-domain/#comment-6308</link>
		<dc:creator>dirk adamsky</dc:creator>
		<pubDate>Wed, 11 Apr 2012 07:23:51 +0000</pubDate>
		<guid isPermaLink="false">http://deludi.nl/blog/?p=523#comment-6308</guid>
		<description>Sorry forgot th link:

http://vbscriptblog.com/vbscript/active-directory/outlook/active-directory-vbscript-to-enumerate-the-outlook-details-of-all-users-in-your-company/

Best regards,

Dirk Adamsky</description>
		<content:encoded><![CDATA[<p>Sorry forgot th link:</p>
<p><a href="http://vbscriptblog.com/vbscript/active-directory/outlook/active-directory-vbscript-to-enumerate-the-outlook-details-of-all-users-in-your-company/" rel="nofollow">http://vbscriptblog.com/vbscript/active-directory/outlook/active-directory-vbscript-to-enumerate-the-outlook-details-of-all-users-in-your-company/</a></p>
<p>Best regards,</p>
<p>Dirk Adamsky</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WMI: VBscript to enumerate all services and their status on a computer by dirk adamsky</title>
		<link>http://vbscriptblog.com/vbscript/wmi/services-wmi-vbscript/wmi-vbscript-to-enumerate-all-services-and-their-status-on-a-computer/#comment-6307</link>
		<dc:creator>dirk adamsky</dc:creator>
		<pubDate>Wed, 11 Apr 2012 07:13:39 +0000</pubDate>
		<guid isPermaLink="false">http://deludi.nl/blog/?p=216#comment-6307</guid>
		<description>Hi Ben,

sorry for my late reply (was busy with other projects).
You are right.
I corrected the script.
The cause of the lost slashes is a copy of the script codes and articles from my previous script blog to vbscriptblog.com.
During the backup and restore a lot of slashes got lost.
happy scripting.

Best regards,

Dirk Adamsky</description>
		<content:encoded><![CDATA[<p>Hi Ben,</p>
<p>sorry for my late reply (was busy with other projects).<br />
You are right.<br />
I corrected the script.<br />
The cause of the lost slashes is a copy of the script codes and articles from my previous script blog to vbscriptblog.com.<br />
During the backup and restore a lot of slashes got lost.<br />
happy scripting.</p>
<p>Best regards,</p>
<p>Dirk Adamsky</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VBscript to enumerate the home directories and their sizes of all users in Active Directory V2 by dirk adamsky</title>
		<link>http://vbscriptblog.com/vbscript/active-directory/home-directories/vbscript-to-enumerate-the-home-directories-and-their-sizes-of-all-users-in-active-directory-v2/#comment-6306</link>
		<dc:creator>dirk adamsky</dc:creator>
		<pubDate>Wed, 11 Apr 2012 07:07:49 +0000</pubDate>
		<guid isPermaLink="false">http://vbscriptblog.com/?p=1257#comment-6306</guid>
		<description>Hi karen,

sorry for my late reply (was very busy with other projects).
You can easily get the output in a text file.
This is how:
1. open a command prompt
2. go to c:\temp
3. give “cscript homedirectorysizev2.vbs &gt; homedirectorysizev2.txt” (without quotes) and enter

Happy scripting.

Best regards,

Dirk Adamsky</description>
		<content:encoded><![CDATA[<p>Hi karen,</p>
<p>sorry for my late reply (was very busy with other projects).<br />
You can easily get the output in a text file.<br />
This is how:<br />
1. open a command prompt<br />
2. go to c:\temp<br />
3. give “cscript homedirectorysizev2.vbs > homedirectorysizev2.txt” (without quotes) and enter</p>
<p>Happy scripting.</p>
<p>Best regards,</p>
<p>Dirk Adamsky</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Active Directory And WMI: VBscript to monitor all servers in Active Directory by dirk adamsky</title>
		<link>http://vbscriptblog.com/vbscript/active-directory/monitoring-active-directory-vbscript/active-directory-and-wmi-vbscript-to-monitor-all-servers-in-active-directory/#comment-6305</link>
		<dc:creator>dirk adamsky</dc:creator>
		<pubDate>Wed, 11 Apr 2012 07:00:46 +0000</pubDate>
		<guid isPermaLink="false">http://deludi.nl/blog/?p=384#comment-6305</guid>
		<description>Hi Anuj,

the code says that you cannot connect to your smtp server.
Did you change the smtp server name in line 76 to your local smtp server?

Best regards,

Dirk Adamsky</description>
		<content:encoded><![CDATA[<p>Hi Anuj,</p>
<p>the code says that you cannot connect to your smtp server.<br />
Did you change the smtp server name in line 76 to your local smtp server?</p>
<p>Best regards,</p>
<p>Dirk Adamsky</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Active Directory And WMI: VBscript to monitor all servers in Active Directory by dirk adamsky</title>
		<link>http://vbscriptblog.com/vbscript/active-directory/monitoring-active-directory-vbscript/active-directory-and-wmi-vbscript-to-monitor-all-servers-in-active-directory/#comment-6304</link>
		<dc:creator>dirk adamsky</dc:creator>
		<pubDate>Wed, 11 Apr 2012 06:58:51 +0000</pubDate>
		<guid isPermaLink="false">http://deludi.nl/blog/?p=384#comment-6304</guid>
		<description>Hi David,

sorry for my late reply.
Was very busy with customers and other projects.
You can copy the code easily by using the icons at the
upper right right corner of the script code on this page.
The second icon copies the script code to your clipboard.
Happy scripting.

Best regards,

Dirk Adamsky</description>
		<content:encoded><![CDATA[<p>Hi David,</p>
<p>sorry for my late reply.<br />
Was very busy with customers and other projects.<br />
You can copy the code easily by using the icons at the<br />
upper right right corner of the script code on this page.<br />
The second icon copies the script code to your clipboard.<br />
Happy scripting.</p>
<p>Best regards,</p>
<p>Dirk Adamsky</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Active Directory And WMI: VBscript to monitor all servers in Active Directory by Anuj thakur</title>
		<link>http://vbscriptblog.com/vbscript/active-directory/monitoring-active-directory-vbscript/active-directory-and-wmi-vbscript-to-monitor-all-servers-in-active-directory/#comment-6303</link>
		<dc:creator>Anuj thakur</dc:creator>
		<pubDate>Wed, 11 Apr 2012 06:00:02 +0000</pubDate>
		<guid isPermaLink="false">http://deludi.nl/blog/?p=384#comment-6303</guid>
		<description>i am getting the error
script  c:\temp\script.vbs
line   79
char    2

error  the transport failed to connect to the server
code 80040213
soure cdo.message.1</description>
		<content:encoded><![CDATA[<p>i am getting the error<br />
script  c:\temp\script.vbs<br />
line   79<br />
char    2</p>
<p>error  the transport failed to connect to the server<br />
code 80040213<br />
soure cdo.message.1</p>
]]></content:encoded>
	</item>
</channel>
</rss>

