<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3925878289704364514</id><updated>2011-11-27T16:27:19.157-08:00</updated><title type='text'>Batch Functions</title><subtitle type='html'>Making batch files a lot smarter.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://batchfunctions.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3925878289704364514/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://batchfunctions.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>r0ck3t3r</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3925878289704364514.post-6862512661003322296</id><published>2009-07-19T19:43:00.001-07:00</published><updated>2009-07-19T20:07:40.632-07:00</updated><title type='text'>Functions for Batch Files.</title><content type='html'>Batch Functions is a group of programs that empower batch files with a few missing commands available in other more modern programming languages. This makes programming with batch files easier and more enjoyable.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size:100%;"&gt;&lt;a href="http://batchfunctions.blogspot.com/search?updated-max=2009-07-15T09%3A48%3A00-07%3A00&amp;amp;max-results=1"&gt;UCase&lt;/a&gt; &lt;/span&gt;- returns an argument as uppercase.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;a href="http://batchfunctions.blogspot.com/search?updated-max=2009-07-15T09%3A57%3A00-07%3A00&amp;amp;max-results=1"&gt;LCase&lt;/a&gt; &lt;/span&gt;- returns an argument as lowercase.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;a href="http://batchfunctions.blogspot.com/search?updated-max=2009-07-15T05%3A23%3A00-07%3A00&amp;amp;max-results=1"&gt;Length&lt;/a&gt; &lt;/span&gt;- returns the length of an argument.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;a href="http://batchfunctions.blogspot.com/search?updated-max=2009-07-19T19%3A39%3A00-07%3A00&amp;amp;max-results=1"&gt;IsNumeric&lt;/a&gt; &lt;/span&gt;- returns true if an argument is a number and false if not.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;a href="http://batchfunctions.blogspot.com/search?updated-max=2009-07-19T19%3A43%3A00-07%3A00&amp;amp;max-results=1"&gt;Random&lt;/a&gt; &lt;/span&gt;- returns a random number in a given range.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;a href="http://sendkeysnet.blogspot.com/"&gt;SendKeys&lt;/a&gt; &lt;/span&gt;- automates the keyboard.&lt;br /&gt;&lt;br /&gt;If you there is another command or functionality that you wish existed as a batch file command, drop me an email. My email address is listed in the programs license.&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3925878289704364514-6862512661003322296?l=batchfunctions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://batchfunctions.blogspot.com/feeds/6862512661003322296/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://batchfunctions.blogspot.com/2009/07/functions-for-batch-files.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3925878289704364514/posts/default/6862512661003322296'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3925878289704364514/posts/default/6862512661003322296'/><link rel='alternate' type='text/html' href='http://batchfunctions.blogspot.com/2009/07/functions-for-batch-files.html' title='Functions for Batch Files.'/><author><name>r0ck3t3r</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3925878289704364514.post-684501005463290179</id><published>2009-07-19T19:39:00.000-07:00</published><updated>2009-07-19T19:43:12.846-07:00</updated><title type='text'>Random Numbers in Batch Files.</title><content type='html'>Random is a batch file function that is used to create a random whole number in a given range. Simply supply the file with two arguments, place the lesser number first, and random number will be returned to the console.&lt;br /&gt;&lt;br /&gt;Enter the command without an argument to see usage examples.&lt;br /&gt;&lt;br /&gt;This program is very useful for performing input validation for batch files. This command was designed to be used in conjunction with the FOR command. This will enable the command's output to be stored into a variable for later use.&lt;br /&gt;&lt;br /&gt;For /f "tokens=*" %%a in ('Random %var1% %var2%') do (set myvar=%%a)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3925878289704364514-684501005463290179?l=batchfunctions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://batchfunctions.blogspot.com/feeds/684501005463290179/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://batchfunctions.blogspot.com/2009/07/random-is-batch-file-function-that-is.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3925878289704364514/posts/default/684501005463290179'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3925878289704364514/posts/default/684501005463290179'/><link rel='alternate' type='text/html' href='http://batchfunctions.blogspot.com/2009/07/random-is-batch-file-function-that-is.html' title='Random Numbers in Batch Files.'/><author><name>r0ck3t3r</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3925878289704364514.post-8462567331985281858</id><published>2009-07-15T09:57:00.000-07:00</published><updated>2009-07-15T10:05:32.354-07:00</updated><title type='text'>Batch File Command: IsNumeric</title><content type='html'>IsNumeric is a batch file function that is used to test a varible to determine if its contents are a numeric value. If the contents are numeric, the program returns a "True" to the screen and sets the error code to 0. If the contents are not numeric, the program returns a "False" and sets the error code to 1.&lt;br /&gt;&lt;br /&gt;Enter the command without an argument to see usage examples.&lt;br /&gt;&lt;br /&gt;This program is very useful for performing input validation. This command was designed to be used in conjunction with the FOR command. This will enable the command's output to be stored into a variable for later use.&lt;br /&gt;&lt;br /&gt;For /f "tokens=*" %%a in ('IsNumeric %myvar%') do (set myvar=%%a)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3925878289704364514-8462567331985281858?l=batchfunctions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://batchfunctions.blogspot.com/feeds/8462567331985281858/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://batchfunctions.blogspot.com/2009/07/batch-file-command-isnumeric.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3925878289704364514/posts/default/8462567331985281858'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3925878289704364514/posts/default/8462567331985281858'/><link rel='alternate' type='text/html' href='http://batchfunctions.blogspot.com/2009/07/batch-file-command-isnumeric.html' title='Batch File Command: IsNumeric'/><author><name>r0ck3t3r</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3925878289704364514.post-446251719123621707</id><published>2009-07-15T09:48:00.000-07:00</published><updated>2009-07-15T09:53:31.103-07:00</updated><title type='text'>Batch File Command: LCase</title><content type='html'>LCase is a batch function that is used to lowercase all alphabetic characters in a string. For example, when using the string "Hello World!" the program would return "hello world!" to the screen. Note the batch function has no effect on numbers, spaces, or special characters.&lt;br /&gt;&lt;br /&gt;Execute the command without an argument to see usage examples.&lt;br /&gt;&lt;br /&gt;This program is very useful for manipulating variables in batch files. This can be accomplished by using the command in conjunction with the FOR command. This will enable the command's output to be stored into a variable for later use.&lt;br /&gt;&lt;br /&gt;For /f "tokens=*" %%a in ('LCase %myvar%') do (set myvar=%%a)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3925878289704364514-446251719123621707?l=batchfunctions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://batchfunctions.blogspot.com/feeds/446251719123621707/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://batchfunctions.blogspot.com/2009/07/batch-file-command-lcase.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3925878289704364514/posts/default/446251719123621707'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3925878289704364514/posts/default/446251719123621707'/><link rel='alternate' type='text/html' href='http://batchfunctions.blogspot.com/2009/07/batch-file-command-lcase.html' title='Batch File Command: LCase'/><author><name>r0ck3t3r</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3925878289704364514.post-939979601802981472</id><published>2009-07-15T05:23:00.000-07:00</published><updated>2009-07-15T09:54:42.165-07:00</updated><title type='text'>Batch File Command: UCase</title><content type='html'>UCase is a batch function that is used to capitalize all alphabetic characters in a string. For example, when using the string "Hello World!" the program would return "HELLO WORLD!" to the screen. Note the batch function has no effect on numbers, spaces, or special characters.&lt;br /&gt;&lt;br /&gt;Execute the command without an argument to see usage examples.&lt;br /&gt;&lt;br /&gt;This program is very useful for manipulating variables in batch files. This can be accomplished by using the command in conjunction with the FOR command. This will enable the command's output to be stored into a variable for later use.&lt;br /&gt;&lt;br /&gt;For /f "tokens=*" %%a in ('UCase %myvar%') do (set myvar=%%a)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3925878289704364514-939979601802981472?l=batchfunctions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://batchfunctions.blogspot.com/feeds/939979601802981472/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://batchfunctions.blogspot.com/2009/07/batch-file-command-ucase.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3925878289704364514/posts/default/939979601802981472'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3925878289704364514/posts/default/939979601802981472'/><link rel='alternate' type='text/html' href='http://batchfunctions.blogspot.com/2009/07/batch-file-command-ucase.html' title='Batch File Command: UCase'/><author><name>r0ck3t3r</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3925878289704364514.post-4815324589910125551</id><published>2009-07-15T05:19:00.000-07:00</published><updated>2009-07-15T09:57:30.525-07:00</updated><title type='text'>Batch File Command: Length</title><content type='html'>Length is a batch function that is used to return the number of characters that make up any string that is given as an argument. For example, when using the string "Hello World!" the program would output "12" to the screen. Notice that the batch function counts both the space and the exclamation point.&lt;br /&gt;&lt;br /&gt;Execure the command without an argument to see usage examples.&lt;br /&gt;&lt;br /&gt;This program is very useful for manipulating variables in batch files. This can be accomplished by using the command in conjunction with the FOR command. This will enable the command's output to be stored into a variable for later use.&lt;br /&gt;&lt;br /&gt;For /f "tokens=*" %%a in ('Length %myvar%') do (set myvar=%%a)&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Common Uses:&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Input Validation. &lt;/li&gt;&lt;li&gt;String Manipulation&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3925878289704364514-4815324589910125551?l=batchfunctions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://batchfunctions.blogspot.com/feeds/4815324589910125551/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://batchfunctions.blogspot.com/2009/07/batch-file-command-length.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3925878289704364514/posts/default/4815324589910125551'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3925878289704364514/posts/default/4815324589910125551'/><link rel='alternate' type='text/html' href='http://batchfunctions.blogspot.com/2009/07/batch-file-command-length.html' title='Batch File Command: Length'/><author><name>r0ck3t3r</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
