<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>LanToolbox &#187; VBScript</title>
	<atom:link href="http://lantoolbox.com/category/scripts/vbscript/feed/" rel="self" type="application/rss+xml" />
	<link>http://lantoolbox.com</link>
	<description>Network Administration: news, articles about local area networks and network software reviews</description>
	<lastBuildDate>Thu, 14 Jan 2010 06:52:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<!-- google ad injected by adsense-optimizer http://www.adsenseoptimizer.de -->
			<div  style="padding:7px; display: block; margin-left: auto; margin-right: auto; text-align: center;"><!-- Ad number: 1 --><script type="text/javascript"><!--
    	 
    	google_ad_client = "pub-0314336110101251"; google_alternate_color = "FFFFFF";
		google_ad_width = 468; google_ad_height = 60;
		google_ad_format = "468x60_as"; google_ad_type = "text_image";
		google_ad_channel =""; google_color_border = "6699CC";
		google_color_link = "FFFFFF"; google_color_bg = "003366";
		google_color_text = "AECCEB"; google_color_url = "AECCEB";
		google_ui_features = "rc:0"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>	<item>
		<title>Retrieving System Information (WMI: Win32_OperatingSystem, VBScript)</title>
		<link>http://lantoolbox.com/scripts/retrieving-system-information-wmi-win32_operatingsystem-vbscript/</link>
		<comments>http://lantoolbox.com/scripts/retrieving-system-information-wmi-win32_operatingsystem-vbscript/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 10:56:00 +0000</pubDate>
		<dc:creator>Crimson</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[VBScript]]></category>

		<guid isPermaLink="false">http://lantoolbox.com/scripts/retrieving-system-information-wmi-win32_operatingsystem-vbscript/</guid>
		<description><![CDATA[<!-- google ad injected by adsense-optimizer http://www.adsenseoptimizer.de -->
			<div  style="padding:7px; display: block; margin-left: auto; margin-right: auto; text-align: center;"><!-- Ad number: 2 --><script type="text/javascript"><!--
    	 
    	google_ad_client = "pub-0314336110101251"; google_alternate_color = "FFFFFF";
		google_ad_width = 468; google_ad_height = 60;
		google_ad_format = "468x60_as"; google_ad_type = "text_image";
		google_ad_channel =""; google_color_border = "6699CC";
		google_color_link = "FFFFFF"; google_color_bg = "003366";
		google_color_text = "AECCEB"; google_color_url = "AECCEB";
		google_ui_features = "rc:0"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div><!-- google ad injected by adsense-optimizer http://www.adsenseoptimizer.de -->
			<div  style="padding:7px; display: block; margin-left: auto; margin-right: auto; text-align: center;"><!-- Ad number: 3 --><script type="text/javascript"><!--
    	 
    	google_ad_client = "pub-0314336110101251"; google_alternate_color = "FFFFFF";
		google_ad_width = 468; google_ad_height = 60;
		google_ad_format = "468x60_as"; google_ad_type = "text_image";
		google_ad_channel =""; google_color_border = "6699CC";
		google_color_link = "FFFFFF"; google_color_bg = "003366";
		google_color_text = "AECCEB"; google_color_url = "AECCEB";
		google_ui_features = "rc:0"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>On Error Resume Next Const wbemFlagReturnImmediately = &#38;h10 Const wbemFlagForwardOnly = &#38;h20 arrComputers = Array(&#34;localhost&#34;) For Each strComputer In arrComputers &#160;&#160; WScript.Echo &#160;&#160; WScript.Echo &#34;==========================================&#34; &#160;&#160; WScript.Echo &#34;Computer: &#34; &#38; strComputer &#160;&#160; WScript.Echo &#34;==========================================&#34; &#160;&#160; Set objWMIService = GetObject(&#34;winmgmts:\\&#34; &#38; strComputer &#38; &#34;\root\CIMV2&#34;) &#160;&#160; Set colItems = objWMIService.ExecQuery(&#34;SELECT * FROM Win32_OperatingSystem&#34;, WQL&#34;, wbemFlagReturnImmediately + wbemFlagForwardOnly) [...]


Related posts:<ol><li><a href='http://lantoolbox.com/scripts/retrieving-system-information-wmi-win32_operatingsystem-jscript/' rel='bookmark' title='Permanent Link: Retrieving System Information (WMI: Win32_OperatingSystem, JScript)'>Retrieving System Information (WMI: Win32_OperatingSystem, JScript)</a></li>
<li><a href='http://lantoolbox.com/scripts/wmi-disk-drive-information-wmi-win32_diskdrive-vbscript/' rel='bookmark' title='Permanent Link: WMI Disk Drive Information (WMI: Win32_DiskDrive, VBScript)'>WMI Disk Drive Information (WMI: Win32_DiskDrive, VBScript)</a></li>
<li><a href='http://lantoolbox.com/scripts/enumerating-network-adapters-wmi-win32_networkadapter-vbscript/' rel='bookmark' title='Permanent Link: Enumerating network adapters (WMI: Win32_NetworkAdapter, VBScript)'>Enumerating network adapters (WMI: Win32_NetworkAdapter, VBScript)</a></li>
</ol>]]></description>
		<wfw:commentRss>http://lantoolbox.com/scripts/retrieving-system-information-wmi-win32_operatingsystem-vbscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enumerating network adapters (WMI: Win32_NetworkAdapter, VBScript)</title>
		<link>http://lantoolbox.com/scripts/enumerating-network-adapters-wmi-win32_networkadapter-vbscript/</link>
		<comments>http://lantoolbox.com/scripts/enumerating-network-adapters-wmi-win32_networkadapter-vbscript/#comments</comments>
		<pubDate>Sun, 13 Jul 2008 12:22:00 +0000</pubDate>
		<dc:creator>Crimson</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[VBScript]]></category>

		<guid isPermaLink="false">http://lantoolbox.com/scripts/enumerating-network-adapters-wmi-win32_networkadapter-vbscript/</guid>
		<description><![CDATA[On Error Resume Next Const wbemFlagReturnImmediately = &#38;h10 Const wbemFlagForwardOnly = &#38;h20 arrComputers = Array(&#34;localhost&#34;) For Each strComputer In arrComputers &#160;&#160; WScript.Echo &#160;&#160; WScript.Echo &#34;==========================================&#34; &#160;&#160; WScript.Echo &#34;Computer: &#34; &#38; strComputer &#160;&#160; WScript.Echo &#34;==========================================&#34; &#160;&#160; Set objWMIService = GetObject(&#34;winmgmts:\\&#34; &#38; strComputer &#38; &#34;\root\CIMV2&#34;) &#160;&#160; Set colItems = objWMIService.ExecQuery(&#34;SELECT * FROM Win32_NetworkAdapter&#34;, &#34;WQL&#34;, _ &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; wbemFlagReturnImmediately [...]


Related posts:<ol><li><a href='http://lantoolbox.com/scripts/enumerating-network-adapters-wmi-win32_networkadapter-jscript/' rel='bookmark' title='Permanent Link: Enumerating network adapters (WMI: Win32_NetworkAdapter, JScript)'>Enumerating network adapters (WMI: Win32_NetworkAdapter, JScript)</a></li>
<li><a href='http://lantoolbox.com/scripts/wmi-disk-drive-information-wmi-win32_diskdrive-vbscript/' rel='bookmark' title='Permanent Link: WMI Disk Drive Information (WMI: Win32_DiskDrive, VBScript)'>WMI Disk Drive Information (WMI: Win32_DiskDrive, VBScript)</a></li>
<li><a href='http://lantoolbox.com/scripts/list-processes-wmi-win32_process-vbscript/' rel='bookmark' title='Permanent Link: List Processes (WMI: Win32_Process, VBScript)'>List Processes (WMI: Win32_Process, VBScript)</a></li>
</ol>]]></description>
		<wfw:commentRss>http://lantoolbox.com/scripts/enumerating-network-adapters-wmi-win32_networkadapter-vbscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WMI Disk Drive Information (WMI: Win32_DiskDrive, VBScript)</title>
		<link>http://lantoolbox.com/scripts/wmi-disk-drive-information-wmi-win32_diskdrive-vbscript/</link>
		<comments>http://lantoolbox.com/scripts/wmi-disk-drive-information-wmi-win32_diskdrive-vbscript/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 21:09:00 +0000</pubDate>
		<dc:creator>Crimson</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[VBScript]]></category>

		<guid isPermaLink="false">http://lantoolbox.com/scripts/wmi-disk-drive-information-wmi-win32_diskdrive-vbscript/</guid>
		<description><![CDATA[The Win32_DiskDrive WMI class represents a physical disk drive as seen by a computer running the Windows operating system. &#160; On Error Resume Next Const wbemFlagReturnImmediately = &#38;h10 Const wbemFlagForwardOnly = &#38;h20 arrComputers = Array(&#34;localhost&#34;) For Each strComputer In arrComputers &#160;&#160; WScript.Echo &#160;&#160; WScript.Echo &#34;==========================================&#34; &#160;&#160; WScript.Echo &#34;Computer: &#34; &#38; strComputer &#160;&#160; WScript.Echo &#34;==========================================&#34; &#160;&#160; [...]


Related posts:<ol><li><a href='http://lantoolbox.com/scripts/wmi-disk-drive-information-wmi-win32_diskdrive-jscript/' rel='bookmark' title='Permanent Link: WMI Disk Drive Information (WMI: Win32_DiskDrive, JScript)'>WMI Disk Drive Information (WMI: Win32_DiskDrive, JScript)</a></li>
<li><a href='http://lantoolbox.com/scripts/enumerating-network-adapters-wmi-win32_networkadapter-vbscript/' rel='bookmark' title='Permanent Link: Enumerating network adapters (WMI: Win32_NetworkAdapter, VBScript)'>Enumerating network adapters (WMI: Win32_NetworkAdapter, VBScript)</a></li>
<li><a href='http://lantoolbox.com/scripts/retrieving-system-information-wmi-win32_operatingsystem-vbscript/' rel='bookmark' title='Permanent Link: Retrieving System Information (WMI: Win32_OperatingSystem, VBScript)'>Retrieving System Information (WMI: Win32_OperatingSystem, VBScript)</a></li>
</ol>]]></description>
		<wfw:commentRss>http://lantoolbox.com/scripts/wmi-disk-drive-information-wmi-win32_diskdrive-vbscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List Processes (WMI: Win32_Process, VBScript)</title>
		<link>http://lantoolbox.com/scripts/list-processes-wmi-win32_process-vbscript/</link>
		<comments>http://lantoolbox.com/scripts/list-processes-wmi-win32_process-vbscript/#comments</comments>
		<pubDate>Sat, 17 May 2008 22:43:00 +0000</pubDate>
		<dc:creator>Crimson</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[VBScript]]></category>

		<guid isPermaLink="false">http://lantoolbox.com/scripts/list-processes-wmi-win32_process-vbscript/</guid>
		<description><![CDATA[On Error Resume Next Const wbemFlagReturnImmediately = &#38;h10 Const wbemFlagForwardOnly = &#38;h20 arrComputers = Array(&#34;localhost&#34;) For Each strComputer In arrComputers &#160;&#160; WScript.Echo &#160;&#160; WScript.Echo &#34;==========================================&#34; &#160;&#160; WScript.Echo &#34;Computer: &#34; &#38; strComputer &#160;&#160; WScript.Echo &#34;==========================================&#34; &#160;&#160; Set objWMIService = GetObject(&#34;winmgmts:\\&#34; &#38; strComputer &#38; &#34;\root\CIMV2&#34;) &#160;&#160; Set colItems = objWMIService.ExecQuery(&#34;SELECT * FROM Win32_Process&#34;, &#34;WQL&#34;, _ &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; wbemFlagReturnImmediately [...]


Related posts:<ol><li><a href='http://lantoolbox.com/scripts/list-processes-wmi-win32_process-jscript/' rel='bookmark' title='Permanent Link: List Processes (WMI: Win32_Process, JScript)'>List Processes (WMI: Win32_Process, JScript)</a></li>
<li><a href='http://lantoolbox.com/scripts/enumerating-network-adapters-wmi-win32_networkadapter-vbscript/' rel='bookmark' title='Permanent Link: Enumerating network adapters (WMI: Win32_NetworkAdapter, VBScript)'>Enumerating network adapters (WMI: Win32_NetworkAdapter, VBScript)</a></li>
<li><a href='http://lantoolbox.com/scripts/retrieving-system-information-wmi-win32_operatingsystem-vbscript/' rel='bookmark' title='Permanent Link: Retrieving System Information (WMI: Win32_OperatingSystem, VBScript)'>Retrieving System Information (WMI: Win32_OperatingSystem, VBScript)</a></li>
</ol>]]></description>
		<wfw:commentRss>http://lantoolbox.com/scripts/list-processes-wmi-win32_process-vbscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
