 




<?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>The VBScript Network and Systems Administrator&#039;s Cafe &#187; wscript</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/vbscript-systems-administrator/tag/wscript/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/vbscript-systems-administrator</link>
	<description></description>
	<lastBuildDate>Tue, 11 Oct 2011 18:36:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Using Environment variables inside a VBScript script</title>
		<link>http://itknowledgeexchange.techtarget.com/vbscript-systems-administrator/using-environment-variables-inside-a-vbscript-script/</link>
		<comments>http://itknowledgeexchange.techtarget.com/vbscript-systems-administrator/using-environment-variables-inside-a-vbscript-script/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 00:30:03 +0000</pubDate>
		<dc:creator>Jerry Lees</dc:creator>
				<category><![CDATA[Environment Variables]]></category>
		<category><![CDATA[VBScript]]></category>
		<category><![CDATA[wscript]]></category>
		<category><![CDATA[wscript.shell]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/vbscript-systems-administrator/using-environment-variables-inside-a-vbscript-script/</guid>
		<description><![CDATA[As an extension of the theme I&#8217;ve been blogging about lately of &#8220;interfacing with other types of applications&#8221; in VBScript, I&#8217;d like to share with you a snippet of VBScript code that will allow you to read environment variables from your system. This will allow you to determine a great deal of information, since many [...]]]></description>
				<content:encoded><![CDATA[<p>As an extension of the theme I&#8217;ve been blogging about lately of &#8220;interfacing with other types of applications&#8221; in VBScript, I&#8217;d like to share with you a snippet of VBScript code that will allow you to read environment variables from your system. This will allow you to determine a great deal of information, since many applications use environment variables for configuration information&#8211; and the OS itself does as well, like the server that logged you on is <em>%logonserver%</em>.</p>
<p>There are two types of environment variables:</p>
<ul>
<li>System variables, which are available to every process across the system</li>
<li>Process variables, which are only available to the process and disappear when the process is completed. These are sometimes referred to a user environment variables.</li>
</ul>
<p>You can see examples of each of these environment variables being used below via the &#8220;Environment&#8221; method of the Wscript.Shell object.<br />
<font color="#0000ff">Set WshShell = WScript.CreateObject(&#8220;WScript.Shell&#8221;)</font></p>
<p><font color="#0000ff">&#8216;create a Process (user profile) Level environment variable object<br />
Set WshProccessEnv = WshShell.Environment(&#8220;Process&#8221;)<br />
&#8216;create a System Level environment variable object<br />
Set WshSysEnv = WshShell.Environment(&#8220;System&#8221;)</font></p>
<p><font color="#0000ff">&#8216;display a system environment variable<br />
Wscript.Echo WshSysEnv(&#8220;NUMBER_OF_PROCESSORS&#8221;)<br />
&#8216;display a user profile level environment variable<br />
Wscript.Echo WsProcessEnv(&#8220;Path&#8221;)</font></p>
<p>Enjoy!</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/vbscript-systems-administrator/using-environment-variables-inside-a-vbscript-script/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Communicating error levels to a calling application from with in VBScript</title>
		<link>http://itknowledgeexchange.techtarget.com/vbscript-systems-administrator/communicating-error-levels-to-a-calling-application-with-vbscript/</link>
		<comments>http://itknowledgeexchange.techtarget.com/vbscript-systems-administrator/communicating-error-levels-to-a-calling-application-with-vbscript/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 23:11:30 +0000</pubDate>
		<dc:creator>Jerry Lees</dc:creator>
				<category><![CDATA[batch commands]]></category>
		<category><![CDATA[Error control]]></category>
		<category><![CDATA[errorlevel]]></category>
		<category><![CDATA[exit]]></category>
		<category><![CDATA[on error]]></category>
		<category><![CDATA[VBScript]]></category>
		<category><![CDATA[wscript]]></category>
		<category><![CDATA[WScript.quit]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/vbscript-systems-administrator/communicating-error-levels-to-a-calling-application-with-vbscript/</guid>
		<description><![CDATA[We&#8217;ve discussed error handling previously (via the On Error Goto 0 command) in a entry titled, Using error control in a VBScript to recover from odd errors. However, occasionally you need to communicate a condition back to an application or batch file that calls a script as part of its processing. One reason you may need [...]]]></description>
				<content:encoded><![CDATA[<p>We&#8217;ve discussed error handling previously (via the <em>On Error Goto 0</em> command) in a entry titled, <a href="http://itknowledgeexchange.techtarget.com/vbscript-systems-administrator/using-error-control-in-a-vbscript-to-recover-from-odd-errors/">Using error control in a VBScript to recover from odd errors</a>. However, occasionally you need to communicate a condition back to an application or batch file that calls a script as part of its processing. One reason you may need to do this is if you need to call a separate script or application depending on the outcome of the script. You can do this with what is called an error level. Keep in mind this may not have anything to do with an error in the script but can, instead, be used as a method to control how another applicatioin responds to a particular condition.</p>
<p>For example, say you already have a executable that processes a file into a database&#8211; but you don&#8217;t want to run the executable on a old file because it would cause all sorts of duplicated entries in the database. you might not be able to go back to the person who wrote the executable and have them change it or the executable might not have even been written by the company where you work! You could, however write a script to check the date of a file and if it was created during a time frame return a error level back to a batch file that calls your script and preforms the logic to decide if the executable needed to be ran. Take this batch file for example:</p>
<p><font color="#0000ff">Echo off<br />
cscript Yourscript.vbs<br />
If %errorlevel% == 3 goto runexe<br />
Echo &#8220;File to old&#8221;<br />
goto EndBatch<br />
:runexe<br />
processingprogram.exe<br />
:EndBatch</font></p>
<p>This would only run the executable <strong>IF</strong> your script returned a error level of 3! So you can then preform work and checks never intended by the executable when it was written only if the conditions are correct for it to run.</p>
<p>The line of code in VBScript you would add to your  script to communicate back to the batch file would be:</p>
<p><font color="#0000ff">WScript.quit(3)</font></p>
<p>This will return a error level of 3 back to the batch file and cause the batch file to THEN run your executable.</p>
<p>So, there you have it! A quick and simple method to extend the life of those aging processes that work fine&#8211; just need a minor tweak because your environment has changed.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/vbscript-systems-administrator/communicating-error-levels-to-a-calling-application-with-vbscript/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
