<?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>txt &#8211; Infinityflame</title>
	<atom:link href="https://infinityflame.co.uk/tag/txt/feed/" rel="self" type="application/rss+xml" />
	<link>https://infinityflame.co.uk</link>
	<description>The personal website of Aidan Crane</description>
	<lastBuildDate>Wed, 01 Oct 2014 22:13:34 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://infinityflame.co.uk/wp-content/uploads/2015/10/4-Color-Banner-Hexel-favicon.png</url>
	<title>txt &#8211; Infinityflame</title>
	<link>https://infinityflame.co.uk</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Coloring Batch Files! &#8211; within one file!</title>
		<link>https://infinityflame.co.uk/featured/coloring-batch-files-within-one-file/</link>
		
		<dc:creator><![CDATA[Aidan]]></dc:creator>
		<pubDate>Tue, 29 Jul 2014 18:40:22 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[bat]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[batch file]]></category>
		<category><![CDATA[cmd]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[coloring]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[compatible]]></category>
		<category><![CDATA[mc]]></category>
		<category><![CDATA[minecraft]]></category>
		<category><![CDATA[msc]]></category>
		<category><![CDATA[nexion]]></category>
		<category><![CDATA[prompt]]></category>
		<category><![CDATA[startup assist]]></category>
		<category><![CDATA[txt]]></category>
		<category><![CDATA[windows]]></category>
		<guid isPermaLink="false">http://infinityflame.co.uk/?p=253</guid>

					<description><![CDATA[I wanted colored batch files and I managed to achieve this with someones solution which I modified and made my own, it is now quite different to his but I cannot find who it was to give them credit, anyway, here is the code! &#160; @echo off SETLOCAL EnableDelayedExpansion for /F "tokens=1,2 delims=#" %%a in ('"prompt #$H#$E# &#38; echo on &#38; for %%b in (1) do rem"') do ( set "DEL=%%a" ) title Startup Assist - Handler call :ColorText 08 "[" call :ColorText 08 "Service" call :ColorText 08 "]" call :ColorText 08 " Startup Assist - HANDLER - RUNNING " [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>I wanted colored batch files and I managed to achieve this with someones solution which I modified and made my own, it is now quite different to his but I cannot find who it was to give them credit, anyway, here is the code!</p>
<p>&nbsp;</p>
<p><code>@echo off<br />
SETLOCAL EnableDelayedExpansion<br />
for /F "tokens=1,2 delims=#" %%a in ('"prompt #$H#$E# &amp; echo on &amp; for %%b in (1) do rem"') do (<br />
set "DEL=%%a"<br />
)<br />
title Startup Assist - Handler<br />
call :ColorText 08 "["<br />
call :ColorText 08 "Service"<br />
call :ColorText 08 "]"<br />
call :ColorText 08 " Startup Assist - HANDLER - RUNNING "<br />
echo.<br />
call :ColorText 08 "["<br />
call :ColorText 0E "WARNING"<br />
call :ColorText 08 "]"<br />
call :ColorText 08 " Startup Assist will stop if a server startup file is not found this is because of windows MS DOS functionality, Sorry "<br />
echo.<br />
call :ColorText 08 "["<br />
call :ColorText 08 "Minecraft Service"<br />
call :ColorText 08 "]"<br />
call :ColorText 0A " Minecraft Server "<br />
call :ColorText 0C " Nexion"<br />
call :ColorText 0A " Started"<br />
echo.<br />
start "launch.bat" "C:UsersNexionDocumentsMinecraft ServersNexionlaunch.bat"<br />
echo(<br />
call :ColorText 79 "This window will now await user input!"<br />
echo.<br />
)<br />
PAUSE<br />
exit<br />
goto :eof</code></p>
<p>:ColorText<br />
echo off<br />
&#8220;%~2&#8221;<br />
findstr /v /a:%1 /R &#8220;^$&#8221; &#8220;%~2&#8221; nul<br />
del &#8220;%~2&#8221; &gt; nul 2&gt;&amp;1<br />
goto :eof</p>
<p>which looks something like this</p>
<p><a href="https://infinityflame.co.uk/wp-content/uploads/2014/07/Capture11.png"><img fetchpriority="high" decoding="async" class="aligncenter wp-image-254 size-full" src="https://infinityflame.co.uk/wp-content/uploads/2014/07/Capture1.png" alt="Capture" width="662" height="109" /></a></p>
<p>As you can tell, this is for my minecraft server <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> (<a href="http://Nexion.co.uk">Nexion.co.uk</a>)</p>
<p>and that&#8217;s all there is to it! you can use any standard colors that you could already within batch files. (Note: When running without user, i.e. started by another process, the colors requite administrative privileges!)</p>
<p>edit: <a title="http://stackoverflow.com/questions/7290434/how-can-i-make-a-multi-functional-batch-program" href="http://stackoverflow.com/questions/7290434/how-can-i-make-a-multi-functional-batch-program">http://stackoverflow.com/questions/7290434/how-can-i-make-a-multi-functional-batch-program</a></p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 
Lazy Loading (feed)
Database Caching 36/41 queries in 0.003 seconds using Disk

Served from: infinityflame.co.uk @ 2026-06-02 06:33:32 by W3 Total Cache
-->