<?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>S.G. Vulcan &#187; Windows</title>
	<atom:link href="http://www.sgvulcan.com/category/systems/win/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sgvulcan.com</link>
	<description>Silviu&#039;s tech blog. Resources and informations about linux, windows, symbian systems, networks, reviews, microcontrollers, and more.</description>
	<lastBuildDate>Wed, 08 Feb 2012 09:39:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Clear Windows 7&#8243;Recent Items&#8221;/ jumplists</title>
		<link>http://www.sgvulcan.com/clear-windows-7recent-items-jumplists/</link>
		<comments>http://www.sgvulcan.com/clear-windows-7recent-items-jumplists/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 18:44:29 +0000</pubDate>
		<dc:creator>silviu</dc:creator>
				<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[hidden]]></category>
		<category><![CDATA[jumlist]]></category>
		<category><![CDATA[recent items]]></category>
		<category><![CDATA[scheduler]]></category>
		<category><![CDATA[task]]></category>

		<guid isPermaLink="false">http://www.sgvulcan.com/?p=1592</guid>
		<description><![CDATA[I hate windows&#8217;s jump lists. If you read this you probably hate them too They are stored as hidden files in a, you guessed, hidden directory. You can&#8217;t browse to it but you can type it in RUN or windows explorer location bar: %APPDATA%\Microsoft\Windows\Recent\AutomaticDestinations You will see there a bunch of files with long weird names. You can either search trough them to find the one you want to delete or simply do like I do: delete them all! Not just from time to time, but add a task in Windows Task Scheduler to remove them on shutdown. &#160;]]></description>
			<content:encoded><![CDATA[<p>I hate windows&#8217;s jump lists. If you read this you probably hate them too <img src='http://www.sgvulcan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>They are stored as hidden files in a, you guessed, hidden directory. You can&#8217;t browse to it but you can type it in RUN or windows explorer location bar:</p>
<p><strong><code>%APPDATA%\Microsoft\Windows\Recent\AutomaticDestinations</code></strong></p>
<p>You will see there a bunch of files with long weird names. You can either search trough them to find the one you want to delete or simply do like I do: delete them all! Not just from time to time, but add a task in Windows Task Scheduler to remove them on shutdown.</p>
<p>&nbsp;</p>
<div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><p> </p>
<div align="center">
<script type="text/javascript"><!--
google_ad_client = "pub-7825242150714747";
/* Dupa articol 468x60, created 8/19/09 */
google_ad_slot = "8916341192";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.sgvulcan.com/clear-windows-7recent-items-jumplists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Killall for windows :)</title>
		<link>http://www.sgvulcan.com/killall-for-windows/</link>
		<comments>http://www.sgvulcan.com/killall-for-windows/#comments</comments>
		<pubDate>Sat, 11 Sep 2010 08:11:59 +0000</pubDate>
		<dc:creator>silviu</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.sgvulcan.com/?p=1080</guid>
		<description><![CDATA[Ever wanted to kill a process from the command line in windows? Here&#8217;s how: If you know the name of a process to kill, for example firefox.exe, use the following command from a command prompt to end it: View Code DOS1 taskkill /IM firefox.exe This will cause the program to terminate gracefully, asking for confirmation if there are unsaved changes. To forcefully kill the same process, add the /F option to the command line. Be careful with the /F option as it will terminate all matching processes without confirmation. To kill a single instance of a process, specify its process id (PID). For example, if the desired process has a PID of 1227, use the following command to kill it: View Code DOS1 taskkill /PID 1227 Using filters, a variety of different patterns can be used to specify the processes to kill. For example, the following filter syntax will forcefully kill all processes owned by the user User: View Code DOS1 taskkill /F /FI &#34;USERNAME eq User&#34; The following table shows the available filters and their use. View Code DOS1 2 3 4 5 6 7 8 9 10 11 12 13 14 Filter Name Valid Operators Valid Value&#40;s&#41; ----------- [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wanted to kill a process from the command line in windows? Here&#8217;s how:</p>
<p>If you know the name of a process to kill, for example firefox.exe, use the following command from a command prompt to end it:</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p1080code5'); return false;">View Code</a> DOS</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p10805"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p1080code5"><pre class="dos" style="font-family:monospace;">taskkill /IM firefox.exe</pre></td></tr></table></div>

<p>This will cause the program to terminate gracefully, asking for  confirmation if there are unsaved changes.  <strong>To forcefully kill the same  process</strong>, add the /F option to the command line.  Be careful with the /F  option as it will terminate all matching processes without confirmation.</p>
<p>To kill a single instance of a process, specify its process id (PID).   For example, if the desired process has a PID of 1227, use the  following command to kill it:</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p1080code6'); return false;">View Code</a> DOS</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p10806"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p1080code6"><pre class="dos" style="font-family:monospace;">taskkill /PID <span style="color: #cc66cc;">1227</span></pre></td></tr></table></div>

<p>Using filters, a variety of different patterns can be used to specify  the processes to kill.  For example, the following filter syntax will  forcefully kill all processes owned by the user <strong>User:</strong></p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p1080code7'); return false;">View Code</a> DOS</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p10807"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p1080code7"><pre class="dos" style="font-family:monospace;">taskkill /F /FI &quot;USERNAME eq User&quot;</pre></td></tr></table></div>

<p>The following table shows the available filters and their use.</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p1080code8'); return false;">View Code</a> DOS</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p10808"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
</pre></td><td class="code" id="p1080code8"><pre class="dos" style="font-family:monospace;">Filter Name   Valid Operators     Valid Value<span style="color: #66cc66;">&#40;</span>s<span style="color: #66cc66;">&#41;</span>
-----------   ---------------     --------------
STATUS        eq ne               RUNNING | <a href="http://www.ss64.com/nt/not.html"><span style="color: #000000; font-weight: bold;">NOT</span></a> RESPONDING
IMAGENAME     eq ne               Image name
PID           eq ne gt lt ge le   PID value
SESSION       eq ne gt lt ge le   Session number.
CPUTIME       eq ne gt lt ge le   CPU time <a href="http://www.ss64.com/nt/in.html"><span style="color: #00b100; font-weight: bold;">in</span></a> the format
of hh:mm:ss.
MEMUSAGE      eq ne gt lt ge le   Memory usage <a href="http://www.ss64.com/nt/in.html"><span style="color: #00b100; font-weight: bold;">in</span></a> KB
USERNAME      eq ne               User name <a href="http://www.ss64.com/nt/in.html"><span style="color: #00b100; font-weight: bold;">in</span></a> <span style="color: #66cc66;">&#91;</span>domain\<span style="color: #66cc66;">&#93;</span>user
format
MODULES       eq ne               DLL name
SERVICES      eq ne               Service name
WINDOWTITLE   eq ne               Window <a href="http://www.ss64.com/nt/title.html"><span style="color: #b1b100; font-weight: bold;">title</span></a></pre></td></tr></table></div>

<div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><p> </p>
<div align="center">
<script type="text/javascript"><!--
google_ad_client = "pub-7825242150714747";
/* Dupa articol 468x60, created 8/19/09 */
google_ad_slot = "8916341192";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.sgvulcan.com/killall-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to check if TRIM is enabled on your SSD</title>
		<link>http://www.sgvulcan.com/how-to-check-if-trim-is-enabled-on-your-ssd/</link>
		<comments>http://www.sgvulcan.com/how-to-check-if-trim-is-enabled-on-your-ssd/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 10:07:24 +0000</pubDate>
		<dc:creator>silviu</dc:creator>
				<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[fsutil]]></category>
		<category><![CDATA[ssd]]></category>
		<category><![CDATA[trim]]></category>

		<guid isPermaLink="false">http://www.sgvulcan.com/?p=1057</guid>
		<description><![CDATA[God a fancy new drive? SSD maybe? TRIM support advertised? Well, here&#8217;s how you can check if TRIM support is actually enabled and working in your windows installation: Start a command prompt window (WIN+R, type cmd and press enter) In the command prompt window type the following: fsutil behavior query disabledeletenotify You will get one of the following: DisableDeleteNotify = 1 (Means that Windows TRIM commands are disabled) DisableDeleteNotify = 0 (Means that Windows TRIM commands are enabled) What is TRIM and why do you need it In computing, a TRIM command allows an operating system to inform a solid-state drive (or &#8220;SSD&#8221;) which data blocks, such as those belonging to a deleted file or affected by a format command, are no longer considered in use and can be wiped internally. TRIM was introduced soon after SSDs started to become an affordable alternative for traditional hard disks as permanent storage in PCs. Because low-level operation of SSDs differs significantly from traditional hard disks (see details below), the typical way in which operating systems handle operations like deletes and formats (not communicating the involved sectors/pages to the storage medium) resulted in unanticipated progressive performance degradation of write operations on SSDs. TRIM [...]]]></description>
			<content:encoded><![CDATA[<h3>God a fancy new drive? SSD maybe? TRIM support advertised?</h3>
<p>Well, here&#8217;s how you can check if TRIM support is actually enabled and working in your windows installation:</p>
<p>Start a command prompt window (<strong>WIN+R, type cmd and press enter</strong>)</p>
<p>In the command prompt window type the following:</p>
<pre>fsutil behavior query disabledeletenotify</pre>
<p><a href="http://www.sgvulcan.com/wp-content/uploads/2010/07/trim_command_check_command_prompt.jpg" rel="lightbox[1057]"><img class="size-medium wp-image-1058  aligncenter" title="Checking the state of the TRIM command support  inside the windows command prompt" src="http://www.sgvulcan.com/wp-content/uploads/2010/07/trim_command_check_command_prompt-300x82.jpg" alt="Checking the state of the TRIM command support inside the windows  command prompt" width="300" height="82" /></a>You will get one of the following:</p>
<p><strong>DisableDeleteNotify = 1 (Means that Windows TRIM commands are disabled)<br />
DisableDeleteNotify  = 0 (Means that Windows TRIM commands are enabled)</strong></p>
<h3>What is TRIM and why do you need it</h3>
<blockquote><p>In computing,  a <strong>TRIM</strong> command allows an operating system to inform a solid-state drive (or &#8220;SSD&#8221;) which data blocks, such as  those belonging to a deleted file or affected by a format command, are no longer considered in use and can  be wiped internally.</p>
<p>TRIM was introduced soon after SSDs started to become an affordable  alternative for traditional hard disks as permanent storage in PCs. Because  low-level operation of SSDs differs significantly from traditional hard  disks (see details below), the typical way in which operating systems  handle operations like deletes and formats (not communicating the  involved sectors/pages to the storage medium) resulted in unanticipated  progressive performance degradation of write operations on SSDs. TRIM enables the SSD to handle garbage collection overhead, that would otherwise significantly slow down future write  operations to the involved blocks, in advance.</p></blockquote>
<p>[from <a href="http://en.wikipedia.org/wiki/TRIM" target="_blank">wikipedia.org</a>]</p>
<div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><p> </p>
<div align="center">
<script type="text/javascript"><!--
google_ad_client = "pub-7825242150714747";
/* Dupa articol 468x60, created 8/19/09 */
google_ad_slot = "8916341192";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.sgvulcan.com/how-to-check-if-trim-is-enabled-on-your-ssd/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Windows XP &#8211; prevent a user&#8217;s password from expiring</title>
		<link>http://www.sgvulcan.com/windows-xp-prevent-a-users-password-from-expiring/</link>
		<comments>http://www.sgvulcan.com/windows-xp-prevent-a-users-password-from-expiring/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 09:54:46 +0000</pubDate>
		<dc:creator>silviu</dc:creator>
				<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[advanced]]></category>
		<category><![CDATA[control panel]]></category>
		<category><![CDATA[expire]]></category>
		<category><![CDATA[expiring]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://www.sgvulcan.com/?p=1027</guid>
		<description><![CDATA[One of my clients called be mecause every now and then his was bugged by Windows XP to change his password. This seemed weird as XP doesn&#8217;t do this by default. Probably it was set to expire by someone or by some friendly security suite. Fortunately the solution for this expiring password problem is easy. You just need to tell Windows that you want your password to never expire. This is not necessarily a good practice, nevertheless if you want to, here is how you do it. Go to START-&#62;RUN or WIN+R. Type control userpasswords2 and hit ENTER You&#8217;ll get a window like this one showing up: You have to click the Advanced tab Unsurprisingly, on the Advanced tab you have to click the Advanced button. (Who designs this kind of interfaces?) In the window that opens you can see your local users and groups. Click on Users and double click in the right panel the user you want to set the password not to expire. Finally in the new window that opens check Password never expires. Apply or OK your way back! Done. Still it&#8217;s a good ideea to change all your passwords from time to time, just to [...]]]></description>
			<content:encoded><![CDATA[<p>One of my clients called be mecause every now and then his was bugged by Windows XP to change his password. This seemed weird as XP doesn&#8217;t do this by default. Probably it was set to expire by someone or by some <em>friendly </em>security suite.</p>
<p>Fortunately the solution for this expiring password problem is easy. You just need to tell Windows that you want your password to <strong>never expire.</strong> This is not necessarily a good practice, nevertheless if you want to, here is how you do it.</p>
<ul>
<li>Go to <strong>START-&gt;RUN</strong> or <strong>WIN+R</strong>.</li>
<li>Type <strong>control userpasswords2</strong><img src="file:///C:/DOCUME%7E1/user/LOCALS%7E1/Temp/moz-screenshot.png" alt="" /> and hit <strong>ENTER</strong></li>
</ul>
<p>You&#8217;ll get a window like this one showing up:</p>
<ul>
<li><img class="aligncenter size-full wp-image-1028" title="xp_user_accounts2" src="http://www.sgvulcan.com/wp-content/uploads/2010/07/xp_user_accounts2.jpg" alt="Advanced users control panel" width="404" height="448" /></li>
</ul>
<ul>
<li>You have to click the <strong>Advanced</strong> tab</li>
</ul>
<p><img class="aligncenter size-full wp-image-1029" title="xp_user_accounts2_advanced" src="http://www.sgvulcan.com/wp-content/uploads/2010/07/xp_user_accounts2_advanced.jpg" alt="Advanced tab of users settings" width="404" height="447" /></p>
<ul>
<li>Unsurprisingly, on the Advanced tab you have to click the <strong>Advanced</strong> button. (Who designs this kind of interfaces?)</li>
</ul>
<p><a href="http://www.sgvulcan.com/wp-content/uploads/2010/07/xp_user_accounts_edit_user.jpg" rel="lightbox[1027]"><img class="aligncenter size-medium wp-image-1030" title="xp_user_accounts_edit_user" src="http://www.sgvulcan.com/wp-content/uploads/2010/07/xp_user_accounts_edit_user-300x222.jpg" alt="Windows XP Advanced Users Settings" width="300" height="222" /></a></p>
<ul>
<li>In the window that opens you can see your local users and groups.</li>
<li>Click on <strong>Users</strong> and double click <strong>in the right panel the user you want to set the password not to expire.</strong></li>
</ul>
<p><a href="http://www.sgvulcan.com/wp-content/uploads/2010/07/xp_user_accounts_edit_user_expire_password.jpg" rel="lightbox[1027]"><img class="aligncenter size-medium wp-image-1031" title="xp_user_accounts_edit_user_expire_password" src="http://www.sgvulcan.com/wp-content/uploads/2010/07/xp_user_accounts_edit_user_expire_password-300x223.jpg" alt="Advanced user settings. Set password expiring time" width="300" height="223" /></a></p>
<ul>
<li>Finally in the new window that opens check <strong>Password never expires</strong>.</li>
<li><strong>Apply or OK </strong>your way back!</li>
</ul>
<p>Done. Still it&#8217;s a good ideea to change all your passwords from time to time, just to be on the safe side.</p>
<div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><p> </p>
<div align="center">
<script type="text/javascript"><!--
google_ad_client = "pub-7825242150714747";
/* Dupa articol 468x60, created 8/19/09 */
google_ad_slot = "8916341192";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.sgvulcan.com/windows-xp-prevent-a-users-password-from-expiring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Docx files in Office 2003</title>
		<link>http://www.sgvulcan.com/docx-files-in-office-2003/</link>
		<comments>http://www.sgvulcan.com/docx-files-in-office-2003/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 09:33:24 +0000</pubDate>
		<dc:creator>silviu</dc:creator>
				<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[2003]]></category>
		<category><![CDATA[2007]]></category>
		<category><![CDATA[compatibility]]></category>
		<category><![CDATA[docx]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[open office]]></category>
		<category><![CDATA[pack]]></category>
		<category><![CDATA[word]]></category>

		<guid isPermaLink="false">http://www.sgvulcan.com/?p=779</guid>
		<description><![CDATA[If you, like many of my clients regularly receive files from partners that have already upgraded to microsoft office 2007 have the annoyance that the files are always saved in the docx format (because people don&#8217;t go to the trouble to Save as office 2003) then you probably think that it&#8217;s time to upgrade. Right? Wrong! There is an easier sollution &#8211; not to mention a lot cheaper. Go to the microsoft website and download the Microsoft Office Compatibility Pack for Word, Excel, and PowerPoint File Formats This pack will allow your existing Office 2003 installation to open files in the newer formats. Problem solved ! Well there is another sollution, but this one is a bit more complicated but better on the long run. Just migrate to Open Office! It&#8217;s free, it&#8217;s open and can read the new formats introduced by Office 2007.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sgvulcan.com/wp-content/uploads/2010/06/docx.jpg" rel="lightbox[779]"><img class="alignleft size-full wp-image-782" title="docx" src="http://www.sgvulcan.com/wp-content/uploads/2010/06/docx.jpg" alt="" width="256" height="256" /></a>If you, like many of my clients regularly receive files from partners that have already upgraded to microsoft office 2007 have the annoyance that the files are always saved in the docx format (because people don&#8217;t go to the trouble to <em><strong>Save as</strong> </em>office 2003) then you probably think that it&#8217;s time to upgrade. Right? Wrong! There is an easier sollution &#8211; not to mention a lot cheaper. Go to the microsoft website and download the</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=941b3470-3ae9-4aee-8f43-c6bb74cd1466&amp;displaylang=en" target="_blank">Microsoft Office Compatibility Pack for Word, Excel, and PowerPoint  File Formats</a></p>
<p>This pack will allow your existing Office 2003 installation to open files in the newer formats. <strong>Problem solved !</strong></p>
<p>Well there is another sollution, but this one is a bit more complicated but better on the long run. Just migrate to <a href="http://www.openoffice.org" target="_blank">Open Office</a>! It&#8217;s free, it&#8217;s open and can read the new formats introduced by Office 2007.</p>
<div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><p> </p>
<div align="center">
<script type="text/javascript"><!--
google_ad_client = "pub-7825242150714747";
/* Dupa articol 468x60, created 8/19/09 */
google_ad_slot = "8916341192";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.sgvulcan.com/docx-files-in-office-2003/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mrvlusgtracking &#8211; is it spyware?</title>
		<link>http://www.sgvulcan.com/mrvlusgtracking-is-it-spyware/</link>
		<comments>http://www.sgvulcan.com/mrvlusgtracking-is-it-spyware/#comments</comments>
		<pubDate>Tue, 25 May 2010 17:18:45 +0000</pubDate>
		<dc:creator>silviu</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.sgvulcan.com/?p=769</guid>
		<description><![CDATA[I found this weird looking process working on an infected computer. Further investigation revealed that it just came with a Marvell network driver. It just sits there and creates a log file, so leaving it in should not hurt anything. They should name their programs more peaceful]]></description>
			<content:encoded><![CDATA[<p>I found this weird looking process working on an infected computer. Further investigation revealed that it just came with a Marvell network driver. It just sits there and creates a log file, so leaving it in should not hurt anything.</p>
<p>They should name their programs more peaceful <img src='http://www.sgvulcan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><p> </p>
<div align="center">
<script type="text/javascript"><!--
google_ad_client = "pub-7825242150714747";
/* Dupa articol 468x60, created 8/19/09 */
google_ad_slot = "8916341192";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.sgvulcan.com/mrvlusgtracking-is-it-spyware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running 16 bit apps in Windows 7 64 bit</title>
		<link>http://www.sgvulcan.com/running-16-bit-apps-in-windows-7-64-bit/</link>
		<comments>http://www.sgvulcan.com/running-16-bit-apps-in-windows-7-64-bit/#comments</comments>
		<pubDate>Sat, 03 Apr 2010 10:17:50 +0000</pubDate>
		<dc:creator>silviu</dc:creator>
				<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[64 bit]]></category>
		<category><![CDATA[compatibility]]></category>
		<category><![CDATA[dos]]></category>
		<category><![CDATA[dosbox]]></category>
		<category><![CDATA[oxford]]></category>
		<category><![CDATA[superlex]]></category>
		<category><![CDATA[win311]]></category>

		<guid isPermaLink="false">http://www.sgvulcan.com/?p=762</guid>
		<description><![CDATA[We got for my wife a much needed upgrade for her aging Toshiba laptop. The new one came with Windows 7  64 bit. I managed to get all her old software working with the exception of Oxford Superlex. This one is a dictionary from the Windows 3.11 ages. It worked fine in all windowses we had (98, 2000, XP) but having a 64 bit Windows killed it because the support for 16 bits apps is dropped in 64 bits versions of Vista and 7. My wife likes this dictionary a lot, and as far as I can tell there are no upgrades available for it. One option would have been to have a copy of 32 bit XP or 2000 running as a virtual machine. Since the laptop only had windows 7 home installed it wasn&#8217;t elligible to run XP mode. A full blown virtual machine would also tax a lot the laptop. Sollution: I grabbed a copy of Windows 3.11 I still had around, installed dosbox with freedos, set up windows 3.11 inside it. I gave some old graphic drivers a shot in order to get more than a 640&#215;480 windows but gave up, it&#8217;s pretty usefull like this [...]]]></description>
			<content:encoded><![CDATA[<p>We got for my wife a much needed upgrade for her aging Toshiba laptop. The new one came with Windows 7  64 bit. I managed to get all her old software working with the exception of Oxford Superlex. This one is a dictionary from the Windows 3.11 ages. It worked fine in all windowses we had (98, 2000, XP) but having a 64 bit Windows killed it because the support for 16 bits apps is dropped in 64 bits versions of Vista and 7.</p>
<p>My wife likes this dictionary a lot, and as far as I can tell there are no upgrades available for it. One option would have been to have a copy of 32 bit XP or 2000 running as a virtual machine. Since the laptop only had windows 7 home installed it wasn&#8217;t elligible to run XP mode. A full blown virtual machine would also tax a lot the laptop.</p>
<p><strong>Sollution:</strong> I grabbed a copy of Windows 3.11 I still had around, installed <a href="http://www.dosbox.com/" target="_blank">dosbox</a> with freedos, set up windows 3.11 inside it. I gave some old graphic drivers a shot in order to get more than a 640&#215;480 windows but gave up, it&#8217;s pretty usefull like this too. <em>If someone knows how to get 3.11 inside dosbox to run at more than 640&#215;480 please let me know. </em></p>
<p><em><a href="http://www.sgvulcan.com/wp-content/uploads/2010/04/oxford_windows7_64bit.jpg" rel="lightbox[762]"><img class="aligncenter size-medium wp-image-765" title="oxford_windows7_64bit" src="http://www.sgvulcan.com/wp-content/uploads/2010/04/oxford_windows7_64bit-300x236.jpg" alt="" width="300" height="236" /></a><br />
</em></p>
<p>I also set dosbox to launch <strong>win /s c:\oxford\superlex.exe</strong> at start and created an icon for it. So, it&#8217;s possible to directly call the wanted 16 bit app, without having my wife to remember how to launch windows 3.11 from dos.</p>
<div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><p> </p>
<div align="center">
<script type="text/javascript"><!--
google_ad_client = "pub-7825242150714747";
/* Dupa articol 468x60, created 8/19/09 */
google_ad_slot = "8916341192";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.sgvulcan.com/running-16-bit-apps-in-windows-7-64-bit/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Configure the behaviour of backspace in Firefox for Linux</title>
		<link>http://www.sgvulcan.com/configure-the-behaviour-of-backspace-in-firefox-for-linux/</link>
		<comments>http://www.sgvulcan.com/configure-the-behaviour-of-backspace-in-firefox-for-linux/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 21:18:15 +0000</pubDate>
		<dc:creator>silviu</dc:creator>
				<category><![CDATA[*nix]]></category>
		<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[back]]></category>
		<category><![CDATA[backspace]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.sgvulcan.com/?p=743</guid>
		<description><![CDATA[It&#8217;s a mystery for me why on windows firefox developers have conceived one use for backspace and another for firefox on linux. If you are coming from windows and moving onto linux you might be used to press backspace to go back one page in Firefox. Well you&#8217;re in for a small surprise &#8211; id doesn&#8217;t work. You need to go to about:config browser.backspace_action as either 0 or 1. View Code BASH1 2 0 means that the backspace button will go back a page in the session history 1 means that pressing the backspace key will scroll up one page in the current document]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sgvulcan.com/wp-content/uploads/2010/03/backspace.jpg" rel="lightbox[743]"><img class="size-thumbnail wp-image-744 alignleft" title="backspace" src="http://www.sgvulcan.com/wp-content/uploads/2010/03/backspace-150x150.jpg" alt="" width="150" height="150" /></a>It&#8217;s a mystery for me why on windows firefox developers have conceived one use for backspace and another for firefox on linux.</p>
<p>If you are coming from windows and moving onto linux you might be used to press backspace to go back one page in Firefox. Well you&#8217;re in for a small surprise &#8211; <em><strong>id doesn&#8217;t work.</strong></em></p>
<p>You need to go to <em><strong>about:config </strong></em></p>
<p><strong>browser.backspace_action </strong>as either 0 or 1.</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p743code10'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p74310"><td class="line_numbers"><pre>1
2
</pre></td><td class="code" id="p743code10"><pre class="bash" style="font-family:monospace;"><span style="color: #000000;">0</span> means that the backspace button will go back a page <span style="color: #000000; font-weight: bold;">in</span> the session <span style="color: #7a0874; font-weight: bold;">history</span>
<span style="color: #000000;">1</span> means that pressing the backspace key will scroll up one page <span style="color: #000000; font-weight: bold;">in</span> the current document</pre></td></tr></table></div>

<div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><p> </p>
<div align="center">
<script type="text/javascript"><!--
google_ad_client = "pub-7825242150714747";
/* Dupa articol 468x60, created 8/19/09 */
google_ad_slot = "8916341192";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.sgvulcan.com/configure-the-behaviour-of-backspace-in-firefox-for-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to mount a windows share (samba) from the linux command line</title>
		<link>http://www.sgvulcan.com/how-to-mount-a-windows-share-samba-from-the-linux-command-line/</link>
		<comments>http://www.sgvulcan.com/how-to-mount-a-windows-share-samba-from-the-linux-command-line/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 18:03:08 +0000</pubDate>
		<dc:creator>silviu</dc:creator>
				<category><![CDATA[*nix]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[share]]></category>

		<guid isPermaLink="false">http://www.sgvulcan.com/?p=705</guid>
		<description><![CDATA[As you know Linux does not use drive letters like Windows does. All files are organized under a big tree hierarchy. We use the mount command to mount partitions and this is the same command used to mount remote windows partition or windows shares. Please note that you&#8217;ll need to know the following: Windows username and password (the ones needed to access the share) The machine and share name. Something like //xpdesktop/pictures Have root access on the linux machine Login on your linux machine as root. Type the following command to mount your remote windows share: View Code BASH1 2 mkdir /mnt/share_name mount -t cifs //xpdesktop/pictures -o username=john, password=johnspass /mnt/share_name Where: xpdesktop is the network name of the Windows machine john is the username on  the windows machine johnspass is the password used to access the windows share /mnt/share_name is the target folder where the partition will be mounted (the folder you just created above) You can now cd and ls the remote windows share as any other folder on the linux machine: View Code BASH1 2 cd /mnt/share_name ls  -l I&#8217;ll show you in a following article how you can automatically mount a remote Windows share at boot time.]]></description>
			<content:encoded><![CDATA[<p>As you know Linux does not use drive letters like Windows does. All files are organized under a big tree hierarchy. We use the mount command to mount partitions and this is the same command used to mount remote windows partition or windows shares.</p>
<p>Please note that you&#8217;ll need to know the following:</p>
<ul>
<li>Windows username and password (the ones needed to access the share)</li>
<li>The machine and share name. Something like //xpdesktop/pictures</li>
<li>Have root access on the linux machine</li>
</ul>
<p>Login on your linux machine as root. Type the following command to mount your remote windows share:</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p705code13'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p70513"><td class="line_numbers"><pre>1
2
</pre></td><td class="code" id="p705code13"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #000000; font-weight: bold;">/</span>mnt<span style="color: #000000; font-weight: bold;">/</span>share_name
<span style="color: #c20cb9; font-weight: bold;">mount</span> <span style="color: #660033;">-t</span> cifs <span style="color: #000000; font-weight: bold;">//</span>xpdesktop<span style="color: #000000; font-weight: bold;">/</span>pictures <span style="color: #660033;">-o</span> <span style="color: #007800;">username</span>=john, <span style="color: #007800;">password</span>=johnspass <span style="color: #000000; font-weight: bold;">/</span>mnt<span style="color: #000000; font-weight: bold;">/</span>share_name</pre></td></tr></table></div>

<p>Where:</p>
<ul>
<li>xpdesktop is the network name of the Windows machine</li>
<li>john is the username on  the windows machine</li>
<li>johnspass is the password used to access the windows share</li>
<li>/mnt/share_name is the target folder where the partition will be mounted (the folder you just created above)</li>
</ul>
<p>You can now cd and ls the remote windows share as any other folder on the linux machine:</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p705code14'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p70514"><td class="line_numbers"><pre>1
2
</pre></td><td class="code" id="p705code14"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>mnt<span style="color: #000000; font-weight: bold;">/</span>share_name
<span style="color: #c20cb9; font-weight: bold;">ls</span>  <span style="color: #660033;">-l</span></pre></td></tr></table></div>

<p>I&#8217;ll show you in a following article how you can automatically mount a remote Windows share at boot time.</p>
<div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><p> </p>
<div align="center">
<script type="text/javascript"><!--
google_ad_client = "pub-7825242150714747";
/* Dupa articol 468x60, created 8/19/09 */
google_ad_slot = "8916341192";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.sgvulcan.com/how-to-mount-a-windows-share-samba-from-the-linux-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Old Soundblaster Live 5.1 on windows 7</title>
		<link>http://www.sgvulcan.com/old-soundblaster-live-5-1-on-windows-7/</link>
		<comments>http://www.sgvulcan.com/old-soundblaster-live-5-1-on-windows-7/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 21:28:34 +0000</pubDate>
		<dc:creator>silviu</dc:creator>
				<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[7]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[driver]]></category>
		<category><![CDATA[live]]></category>
		<category><![CDATA[soundblaster]]></category>

		<guid isPermaLink="false">http://www.sgvulcan.com/?p=678</guid>
		<description><![CDATA[I tried running Windows 7 on a machine that had a Creative Sound Blaster Live 5.1 card inside. Since the 5.1 is a decent card I see no reason to replace it just because windows 7 came along. Please note that these unofficial updated drivers also bring along Windows 64 bit support. A quick google search revealed this: http://forums.creative.com/t5/Sound-Blaster/SB-Live-series-Support-Pack-1-5-08-09-2009/td-p/533861 Please note that this is an unofficial patch and that it has problems if your Windows 7 machine has more than 2 Gb of RAM. Read all the details and download the package over to the above address. Let me know if it goes offline, I can upload them too somewhere.]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-679" href="http://www.sgvulcan.com/old-soundblaster-live-5-1-on-windows-7/livecard2/"><img class="alignleft size-thumbnail wp-image-679" title="livecard2" src="http://www.sgvulcan.com/wp-content/uploads/2010/01/livecard2-150x150.jpg" alt="" width="150" height="150" /></a>I tried running Windows 7 on a machine that had a Creative Sound Blaster Live 5.1 card inside. Since the 5.1 is a decent card I see no reason to replace it just because windows 7 came along. Please note that these unofficial updated drivers also bring along Windows 64 bit support. A quick google search revealed this:</p>
<p><a href="http://forums.creative.com/t5/Sound-Blaster/SB-Live-series-Support-Pack-1-5-08-09-2009/td-p/533861" target="_blank">http://forums.creative.com/t5/Sound-Blaster/SB-Live-series-Support-Pack-1-5-08-09-2009/td-p/533861</a></p>
<p>Please note that this is an unofficial patch and that <strong>it has problems if your Windows 7 machine has more than 2 Gb of RAM. </strong></p>
<p>Read all the details and download the package over to the above address. Let me know if it goes offline, I can upload them too somewhere.</p>
<div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><p> </p>
<div align="center">
<script type="text/javascript"><!--
google_ad_client = "pub-7825242150714747";
/* Dupa articol 468x60, created 8/19/09 */
google_ad_slot = "8916341192";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.sgvulcan.com/old-soundblaster-live-5-1-on-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

