<?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>Random thoughts of an overloaded mind &#187; freeware</title>
	<atom:link href="http://blog.amarkulo.com/tag/freeware/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.amarkulo.com</link>
	<description>Yet another technical blog about iOS, Windows, Linux, Arduino and everything else</description>
	<lastBuildDate>Tue, 13 Dec 2011 16:56:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>How to install Snort Intrusion Detection System on Windows</title>
		<link>http://blog.amarkulo.com/how-to-install-snort-ids-on-windows</link>
		<comments>http://blog.amarkulo.com/how-to-install-snort-ids-on-windows#comments</comments>
		<pubDate>Tue, 22 Dec 2009 15:05:20 +0000</pubDate>
		<dc:creator>amar</dc:creator>
				<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[capture]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[ids]]></category>
		<category><![CDATA[packet]]></category>
		<category><![CDATA[pcap]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[sniff]]></category>
		<category><![CDATA[sniffer]]></category>
		<category><![CDATA[snort]]></category>
		<category><![CDATA[win]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[winpcap]]></category>

		<guid isPermaLink="false">http://blog.amarkulo.com/?p=267</guid>
		<description><![CDATA[First short explanation what is Snort from Snort official website: Snort® is an open source network intrusion prevention and detection system (IDS/IPS) developed by Sourcefire. Combining the benefits of signature, protocol and anomaly-based inspection, Snort is the most widely deployed &#8230; <a href="http://blog.amarkulo.com/how-to-install-snort-ids-on-windows">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>First short explanation what is Snort from Snort official website:</p>
<blockquote><p><em>Snort® is an open source network intrusion prevention and detection system (IDS/IPS) developed by Sourcefire. Combining the benefits of signature, protocol and anomaly-based inspection, Snort is the most widely deployed IDS/IPS technology worldwide.</em></p></blockquote>
<p>Installation of Snort on Windows is pretty simple.</p>
<p>First, you need to download and install few things. For Snort to be able to act as sniffer and IDS it needs Windows Packet Capture Library which is WinPcap. The stable latest version on the site is 4.1.1 and you can download it <a title="WinPcap download" href="http://www.winpcap.org/install/default.htm">here</a>.</p>
<p>Now when we have WinPcap installed the next step will be to download Snort. The latest version for Windows is 2.8.5.1 and you can download it <a title="Snort downloads" href="http://www.snort.org/snort-downloads?">here</a>. Installation shouldn&#8217;t be a problem, if you need IPv6 support and logging to Microsoft SQL or Oracle database then you need to select proper radio and check boxes and if don&#8217;t then just go next and next to the end and that&#8217;s it. Default installation directory is <strong>C:\Snort </strong>so remember it because it will be our working dir all the time.</p>
<p>So we have installed WinPcap and Snort but we are not finished with installation yet. We have one more thing to download and install. The Snort rules. These rules are those small files that tells Snort what it should search for in captured packages and how to identify them, as a threat, information disclosure or something else. For us to be able to download Snort rules we have to be registered on Snort site. Registration is free and rules are one month old for free users, for those who need the latest threats detected at the same moment when they are published to the community I suggest to buy VRT subscription so you will have the latest rules directly as they are announced. So now we will download <strong>snortrules-snapshot-2.8.tar.gz</strong> rules archive file.  When you open archive file you will get following structure:</p>
<div class="mceTemp mceIEcenter">
<dl id="attachment_271" class="wp-caption aligncenter" style="width: 148px;">
<dt class="wp-caption-dt"><a href="http://blog.amarkulo.com/new/wp-content/uploads/2009/12/rules.jpg"><img class="size-full wp-image-271" title="Structure of rules " src="http://blog.amarkulo.com/new/wp-content/uploads/2009/12/rules.jpg" alt="" width="138" height="84" /></a></dt>
</dl>
</div>
<p style="text-align: left;">Snort rules</p>
<p style="text-align: left;">Copy all four directories over those in C:\Snort replacing contents that already exists on the hard drive.</p>
<p style="text-align: left;">Now when we are done with easy part we need to configure Snort to run. Because these rules are written for unixoid systems we need to change some things in the main config file C:\Snort\etc\snort.conf so that Snort can start at all.</p>
<p style="text-align: left;">Here are the things that you need to edit to be able to run snort:</p>
<p style="text-align: left;">Find lines 269 and 270. These lines will not allow Snort to start, at least not on Windows because Snort detects the second one as double config detection line so we need to change this.</p>
<p style="text-align: left;">Change from this:</p>
<blockquote>
<p style="text-align: left;">config detection: search-method ac-bnfa<br />
config detection: max_queue_events 5</p>
</blockquote>
<p style="text-align: left;">To this:</p>
<blockquote>
<p style="text-align: left;">config detection: search-method ac-bnfa max_queue_events 5</p>
</blockquote>
<p style="text-align: left;">Now, the next thing that we need to change is lines where we say to Snort where to find dynamic preprocessor files. On lines from 298 to 303 change this:</p>
<blockquote>
<p style="text-align: left;">dynamicpreprocessor file /usr/local/lib/snort_dynamicpreprocessor/libsf_dce2_preproc.so<br />
dynamicpreprocessor file /usr/local/lib/snort_dynamicpreprocessor/libsf_dns_preproc.so<br />
dynamicpreprocessor file /usr/local/lib/snort_dynamicpreprocessor/libsf_ftptelnet_preproc.so<br />
dynamicpreprocessor file /usr/local/lib/snort_dynamicpreprocessor/libsf_smtp_preproc.so<br />
dynamicpreprocessor file /usr/local/lib/snort_dynamicpreprocessor/libsf_ssh_preproc.so<br />
dynamicpreprocessor file /usr/local/lib/snort_dynamicpreprocessor/libsf_ssl_preproc.so</p>
</blockquote>
<p style="text-align: left;">To this:</p>
<blockquote>
<p style="text-align: left;">dynamicpreprocessor file C:\Snort\lib\snort_dynamicpreprocessor\sf_dce2.dll<br />
dynamicpreprocessor file C:\Snort\lib\snort_dynamicpreprocessor\sf_dcerpc.dll<br />
dynamicpreprocessor file C:\Snort\lib\snort_dynamicpreprocessor\sf_dns.dll<br />
dynamicpreprocessor file C:\Snort\lib\snort_dynamicpreprocessor\sf_ftptelnet.dll<br />
dynamicpreprocessor file C:\Snort\lib\snort_dynamicpreprocessor\sf_smtp.dll<br />
dynamicpreprocessor file C:\Snort\lib\snort_dynamicpreprocessor\sf_ssh.dll<br />
dynamicpreprocessor file C:\Snort\lib\snort_dynamicpreprocessor\sf_ssl.dll</p>
</blockquote>
<p style="text-align: left;">Next thing to change is line 324 on which we have dynamic engine path, so change it from this:</p>
<blockquote>
<p style="text-align: left;">dynamicengine /usr/local/lib/snort_dynamicengine/libsf_engine.so</p>
</blockquote>
<p style="text-align: left;">To this:</p>
<blockquote>
<p style="text-align: left;">dynamicengine C:\Snort\lib\snort_dynamicengine\sf_engine.dll</p>
</blockquote>
<p style="text-align: left;">I don&#8217;t know why, maybe some mistake, but lines bellow should be commented out by default, but they were not so we have to comment them out. Because we are not VRT subscriber and don&#8217;t have any dynamic detection files we need to coment lines from 339 to 354, so change this:</p>
<blockquote>
<p style="text-align: left;">dynamicdetection file /usr/local/lib/snort_dynamicrules/bad-traffic.so<br />
dynamicdetection file /usr/local/lib/snort_dynamicrules/chat.so<br />
dynamicdetection file /usr/local/lib/snort_dynamicrules/dos.so<br />
dynamicdetection file /usr/local/lib/snort_dynamicrules/exploit.so<br />
dynamicdetection file /usr/local/lib/snort_dynamicrules/imap.so<br />
dynamicdetection file /usr/local/lib/snort_dynamicrules/misc.so<br />
dynamicdetection file /usr/local/lib/snort_dynamicrules/multimedia.so<br />
dynamicdetection file /usr/local/lib/snort_dynamicrules/netbios.so<br />
dynamicdetection file /usr/local/lib/snort_dynamicrules/nntp.so<br />
dynamicdetection file /usr/local/lib/snort_dynamicrules/p2p.so<br />
dynamicdetection file /usr/local/lib/snort_dynamicrules/smtp.so<br />
dynamicdetection file /usr/local/lib/snort_dynamicrules/sql.so<br />
dynamicdetection file /usr/local/lib/snort_dynamicrules/web-client.so<br />
dynamicdetection file /usr/local/lib/snort_dynamicrules/web-misc.so</p>
</blockquote>
<p style="text-align: left;">To this:</p>
<blockquote>
<p style="text-align: left;">#dynamicdetection file /usr/local/lib/snort_dynamicrules/bad-traffic.so<br />
#dynamicdetection file /usr/local/lib/snort_dynamicrules/chat.so<br />
#dynamicdetection file /usr/local/lib/snort_dynamicrules/dos.so<br />
#dynamicdetection file /usr/local/lib/snort_dynamicrules/exploit.so<br />
#dynamicdetection file /usr/local/lib/snort_dynamicrules/imap.so<br />
#dynamicdetection file /usr/local/lib/snort_dynamicrules/misc.so<br />
#dynamicdetection file /usr/local/lib/snort_dynamicrules/multimedia.so<br />
#dynamicdetection file /usr/local/lib/snort_dynamicrules/netbios.so<br />
#dynamicdetection file /usr/local/lib/snort_dynamicrules/nntp.so<br />
#dynamicdetection file /usr/local/lib/snort_dynamicrules/p2p.so<br />
#dynamicdetection file /usr/local/lib/snort_dynamicrules/smtp.so<br />
#dynamicdetection file /usr/local/lib/snort_dynamicrules/sql.so<br />
#dynamicdetection file /usr/local/lib/snort_dynamicrules/web-client.so<br />
#dynamicdetection file /usr/local/lib/snort_dynamicrules/web-misc.so</p>
</blockquote>
<p style="text-align: left;">Now we need to trim a bit SSH preprocessor to work on Windows as it is different from Linux one, so find line 753 and change this:</p>
<blockquote>
<p style="text-align: left;">preprocessor ssh: server_ports { 22 } \<br />
max_client_bytes 19600 \<br />
max_encrypted_packets 20 \<br />
disable_srvoverflow \<br />
disable_protomismatch \<br />
disable_badmsgdir</p>
</blockquote>
<p style="text-align: left;">To this:</p>
<blockquote>
<p style="text-align: left;">preprocessor ssh: server_ports { 22 } \<br />
max_client_bytes 19600 \<br />
max_encrypted_packets 20</p>
</blockquote>
<p style="text-align: left;">Now we are good to go. We can test snort easily from the command line. So now go on <strong>Start-&gt;Run </strong>and type <strong>cmd</strong> following by enter key. Now in command prompt type following commands:</p>
<blockquote>
<p style="text-align: left;">c: and then enter key</p>
<p style="text-align: left;">cd c:\snort\bin and then enter key</p>
<p style="text-align: left;">snort -v -c C:\snort\etc\snort.conf -l C:\snort\log -K ascii and then enter key</p>
</blockquote>
<p style="text-align: left;">So now we have entered Snort directory and started Snort on command line. You will first see Snort starting and parsing config file snort.conf and then you will see lot of output when Snort start sniffing and controlling packages on the network. If it finds any package that is not regular network traffic it will save info about it in c:\Snort\Log\alert.ids file. Simple output of one captured packet looks like this:</p>
<blockquote>
<p style="text-align: left;">[**] [1:254:7] DNS SPOOF query response with TTL of 1 min. and no authority [**]<br />
[Classification: Potentially Bad Traffic] [Priority: 2]<br />
12/22-12:19:12.577553 192.168.137.206:53 -&gt; 192.168.137.10:55153<br />
UDP TTL:128 TOS:0&#215;0 ID:5399 IpLen:20 DgmLen:79<br />
Len: 51</p>
</blockquote>
<p style="text-align: left;">Now to explain what we have here. The first line says what type of attack is it, the second line says what classification is it and what priority does it have, and the last three lines are data about the attack, attacker IP, your IP, destination and source ports and so on.</p>
<div style="text-align: left;">Important part of this log is<strong> [Priority: 2]</strong> because that&#8217;s how you can identify the real threat from false one. The threats are divided in three groups, group 3 or <strong>[Priority: 3] </strong>is the lowest one and it usually means that someone is scanning your network. The second one is a bit serious. It&#8217;s information disclosure and it has <strong>[Priority: 2]</strong>. This means that someone has got some info about services that you are running which is usually the first part of any attack, gaining of information. The most critical one is the one with <strong>[Priority: 1] </strong>which usually means that right now someone is trying to exploit some of services that you are running. This could mean that you have older version of some service on your server, like IIS that is not updated or Exchange server or something else and that snort has detected some patterns in packages sent to server that could be exploits which can do harm.</div>
<div style="text-align: left;">Now we can stop Snort with <strong>Ctrl+C</strong> and Snort will display some statistics. The only thing that we have to do now is to install Snort as a Windows service. To do so we will write following command on command prompt:</div>
<blockquote>
<div style="text-align: left;">snort /service /install -c C:\Snort\etc\snort.conf -l C:\Snort\log -K ascii</div>
</blockquote>
<div style="text-align: left;">After this command service is installed and you can start it from service manager or simply type <strong>sc start snortsvc.</strong></div>
<div style="text-align: left;">So with this Snort is installed on your machine and is logging everything. Now you just need some program to parse alerts and do actions based on the alert priority. There are lot of those available on the Internet.</div>
<div style="text-align: left;"></div>
<div style="text-align: left;"><strong>Note 1:</strong> If you have more than one network interface on your machine you need to tell Snort on which one should it listen. First type snort -W command to list all interfaces on your machine (works only on Windows) and then when you find which interface is the one that you will listen on then you need to add <strong>-i n</strong> where n is number of interface from the list that you got. You need to add that to all Snort commands that you are executing from command prompt and when creating Windows service.</div>
<div style="text-align: left;"><strong>Note 2:</strong> If you want Snort to log alerts to Eventlog as well as to log files than add -E (only on Windows) to the command line parameters.</div>
<div style="text-align: left;"><strong>Update</strong>:  Here is my <a class="downloadlink" href="http://blog.amarkulo.com/wp-content/plugins/download-monitor/download.php?id=4" title=" downloaded 518 times" >snort.conf (518)</a> file which is working on my machine without any problems. It could be something with updated rules that can cause problems with starting of Snort.</div>
<div style="text-align: left;"><strong>Update2</strong>:  One trailing / on ssh preprocesor line was left by mistake, now it&#8217;s removed.</div>
<hr>
<p><div class="entry-utility">If you don't already have a <a href="http://db.tt/aqrG0tY">Dropbox</a> account then you can create it by clicking on my <a href="http://db.tt/aqrG0tY">affiliate link</a>. You will receive 2GB free account + 250 MB extra and I will receive 250 MB as well. Win-Win :-)</div></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.amarkulo.com/how-to-install-snort-ids-on-windows/feed</wfw:commentRss>
		<slash:comments>56</slash:comments>
		</item>
		<item>
		<title>WavePad Sound Editor &#8211; free sound editor</title>
		<link>http://blog.amarkulo.com/wavepad-sound-editor</link>
		<comments>http://blog.amarkulo.com/wavepad-sound-editor#comments</comments>
		<pubDate>Tue, 26 Aug 2008 13:01:46 +0000</pubDate>
		<dc:creator>amar</dc:creator>
				<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[cooledit]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[nch]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[sound editor]]></category>
		<category><![CDATA[wavepad]]></category>

		<guid isPermaLink="false">http://dzo.blogsite.org/?p=127</guid>
		<description><![CDATA[I have tested today WavePad Sound editor as it was free solution that I needed to edit some sound files. I was more then surprised with results and program itself. Program layout is very similar with another editing software CoolEdit &#8230; <a href="http://blog.amarkulo.com/wavepad-sound-editor">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have tested today WavePad Sound editor as it was free solution that I needed to edit some sound files. I was more then surprised with results and program itself. Program layout is very similar with another editing software CoolEdit which is commercial product, but capabilities are almost the same.</p>
<p>Program is easy to use, offers many things for both amateur and professional use, can save and import many formats and most important it&#8217;s free.</p>
<p>Here are some of the features listed on home page of the <a title="NCH Software" href="http://www.nch.com.au/wavepad/index.html" target="_blank">NCH Software</a> who are creator of the WavePad:</p>
<blockquote><p>Features</p>
<ul>
<li>Sound editing functions include cut, copy, paste, delete, insert, silence, autotrim and more.</li>
<li>Audio effects include, amplify, normalize, equaliser, envelope, reverb, echo, reverse, sample rate conversion and more.</li>
<li>Full featured Mp3 editing software</li>
<li> Supports a number of other file formats including wav (multiple codecs) vox, gsm, real audio, au, aif, flac, ogg and many more.</li>
<li>Batch processing supports up to 32000 files allowing you to apply effects and/or convert your files as a single function.</li>
<li>Tools include spectral analysis (FFT) and speech synthesis (text-to-speech).</li>
<li>Recorder supports autotrim and voice activated recording and more.</li>
<li>Audio restoration features including noise reduction and click pop removal.</li>
<li>Supports sample rates from 6000 to 96000Hz, stereo or mono, 8, 16, 24 or 32 bits.</li>
<li>Includes its own CD ripper with &#8216;ultrafast &#8216;rip mode and cddb music database lookup.</li>
<li>Works directly with MixPad multi-track audio mixing software.</li>
<li>Links directly to the Express Burn CD Recorder to burn your sound files to CD.</li>
<li>Edit tracks for the Zulu DJ software.</li>
<li>Easy to use interface will get you started editing in just minutes.</li>
</ul>
<p>Typical Editing Applications</p>
<ul>
<li>Software audio editing for studios and professional journalists.</li>
<li>Edit sound files to broadcast over the internet with the BroadWave Streaming Audio Server</li>
<li>Normalizing the level of audio files during mastering before buring to CD.</li>
<li>Editing mp3 files for your iPod, PSP or other portable device.</li>
<li>As a music editor (includes ringtones creator formats).</li>
<li>Music editing and recording to produce mp3 files.</li>
<li>Voice editing for multimedia productions.</li>
<li>Restoration of audio files including removing excess noise such as hiss and hums.</li>
</ul>
</blockquote>
<p>You can download program from <a title="NCH Software" href="http://www.nch.com.au/wavepad/index.html" target="_blank">NCH site.</a></p>
<div id="attachment_128" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.amarkulo.com/wp-content/uploads/2008/08/main.jpg"><img class="size-medium wp-image-128" title="WavePad Sound Editor" src="http://blog.amarkulo.com/wp-content/uploads/2008/08/main-300x248.jpg" alt="WavePad Sound Editor" width="300" height="248" /></a><p class="wp-caption-text">WavePad Sound Editor</p></div>
<hr>
<p><div class="entry-utility">If you don't already have a <a href="http://db.tt/aqrG0tY">Dropbox</a> account then you can create it by clicking on my <a href="http://db.tt/aqrG0tY">affiliate link</a>. You will receive 2GB free account + 250 MB extra and I will receive 250 MB as well. Win-Win :-)</div></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.amarkulo.com/wavepad-sound-editor/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox ultimate optimizer</title>
		<link>http://blog.amarkulo.com/firefox-ultimate-optimizer</link>
		<comments>http://blog.amarkulo.com/firefox-ultimate-optimizer#comments</comments>
		<pubDate>Sat, 23 Aug 2008 22:35:28 +0000</pubDate>
		<dc:creator>amar</dc:creator>
				<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[addon]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[firefox ultimate optmizer]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[optimizer]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[ram]]></category>
		<category><![CDATA[tab]]></category>

		<guid isPermaLink="false">http://dzo.blogsite.org/?p=96</guid>
		<description><![CDATA[Firefox is my default, one and only browser and I like it very much. Especially tabs and addons that enables me to increase productivity to the max. But there is one negative thing and that&#8217;s memory consumption. Firefox is known &#8230; <a href="http://blog.amarkulo.com/firefox-ultimate-optimizer">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Firefox is my default, one and only browser and I like it very much. Especially tabs and addons that enables me to increase productivity to the max.</p>
<p style="text-align: left;">But there is one negative thing and that&#8217;s memory consumption.</p>
<p style="text-align: left;">Firefox is known as a big memory eater.</p>
<p style="text-align: left;">Solution is here and it&#8217;s called Firefox ultimate optimizer 2009.</p>
<p style="text-align: left;">It decrease Firefox memory consumption from 180mb and more to just few mbs.</p>
<p style="text-align: left;">Here are two pictures of my taskbar and memory consumption of Firefox before and after running optimizer.</p>
<p style="text-align: left;">You can <span style="text-decoration: line-through;">download it <a title="Firefox ultimate optimizer" href="http://felipex.net/wp-content/uploads/2007/11/firefox-ultimate-optimizer-11.zip">here</a> or visit <a title="felipEx Weblog" href="http://felipex.net/2007/11/08/firefox-ultimate-optimizer-v11/">home page</a>(page is on Spanish)</span> find the new version <a title="Firefox Ultimate Optimizer 2009" href="http://www.ixibo.com/2009/02/firefox-ultimate-optimizer-2009/">here</a>.<span style="text-decoration: line-through;"><br />
</span></p>
<div id="attachment_101" class="wp-caption aligncenter" style="width: 276px"><a href="http://blog.amarkulo.com/wp-content/uploads/2008/08/before.png"><img class="size-medium wp-image-101" title="Before optimizer" src="http://blog.amarkulo.com/wp-content/uploads/2008/08/before-266x300.png" alt="Before upload" width="266" height="300" /></a><p class="wp-caption-text">Before optimizer</p></div>
<p style="text-align: left;">
<div id="attachment_103" class="wp-caption aligncenter" style="width: 276px"><a href="http://blog.amarkulo.com/wp-content/uploads/2008/08/after.png"><img class="size-medium wp-image-103" title="After optimizer" src="http://blog.amarkulo.com/wp-content/uploads/2008/08/after-266x300.png" alt="After upload" width="266" height="300" /></a><p class="wp-caption-text">After optimizer</p></div>
<p>Updated on 2009-09-15: old page is dead, so new program link is here.</p>
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: center;">
<hr>
<p><div class="entry-utility">If you don't already have a <a href="http://db.tt/aqrG0tY">Dropbox</a> account then you can create it by clicking on my <a href="http://db.tt/aqrG0tY">affiliate link</a>. You will receive 2GB free account + 250 MB extra and I will receive 250 MB as well. Win-Win :-)</div></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.amarkulo.com/firefox-ultimate-optimizer/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Virtual desktop</title>
		<link>http://blog.amarkulo.com/virtual-desktop</link>
		<comments>http://blog.amarkulo.com/virtual-desktop#comments</comments>
		<pubDate>Sat, 23 Aug 2008 21:26:18 +0000</pubDate>
		<dc:creator>amar</dc:creator>
				<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[desktops]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[sysinternals]]></category>
		<category><![CDATA[virtual]]></category>
		<category><![CDATA[virtual desktop]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://dzo.blogsite.org/?p=88</guid>
		<description><![CDATA[Sysinternals, company that was started by two programmers and latter bought by Microsoft, had always good freeware tools for administration of windows. Best thing was that they were freeware. Yesterday they have published a new tool with symbolic name Desktops. &#8230; <a href="http://blog.amarkulo.com/virtual-desktop">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Sysinternals, company that was started by two programmers and latter bought by Microsoft, had always good freeware tools for administration of windows. Best thing was that they were freeware.</p>
<p>Yesterday they have published a new tool with symbolic name Desktops.</p>
<p>This tool allows you to have up to 4 virtual desktops with separate systrays and programs on them. Even alt+tab combination doesn&#8217;t take programs from another virtual desktops so if you have runned program on one virtual desktop you won&#8217;t get it with alt+tab on another one.</p>
<p>Best of all, you can guess, it&#8217;s free, with size of only 62kb and you can get it <a title="Desktops" href="http://technet.microsoft.com/en-us/sysinternals/cc817881.aspx#">here</a>.</p>
<p style="text-align: center;"><img class="aligncenter" title="Desktops" src="http://i.technet.microsoft.com/cc817881.desktops2(en-us,MSDN.10).png" alt="" width="357" height="282" /></p>
<hr>
<p><div class="entry-utility">If you don't already have a <a href="http://db.tt/aqrG0tY">Dropbox</a> account then you can create it by clicking on my <a href="http://db.tt/aqrG0tY">affiliate link</a>. You will receive 2GB free account + 250 MB extra and I will receive 250 MB as well. Win-Win :-)</div></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.amarkulo.com/virtual-desktop/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

