<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for TomsTricks.Com</title>
	<atom:link href="http://www.tomstricks.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tomstricks.com</link>
	<description>Microsoft Windows Help and Support.</description>
	<lastBuildDate>Sun, 05 Feb 2012 10:11:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on How To: Create A Batch File To Lock A Folder In Windows Vista by Faid Alfarisi</title>
		<link>http://www.tomstricks.com/how-to-create-a-batch-file-to-lock-a-folder-in-windows-vista/comment-page-1/#comment-10066</link>
		<dc:creator>Faid Alfarisi</dc:creator>
		<pubDate>Sun, 05 Feb 2012 10:11:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomstricks.com/?p=1252#comment-10066</guid>
		<description>New Version, let you to save/load password and unlock folder from anywhere in same drive...


@ECHO OFF
COLOR 1F
MODE 47,6
TITLE Folder Locker
SET A=%MyFiles%
SET B=C2F41D69-E2A7-5795-89E4-00805FE4081D
SET C=D4E221D2-3A5B-1069-52DD-06002B3A3098
SET D=E65D24D8-98B5-68C0-BB82-010D30BDCE0C
SET E=F89CDCE2-B7C3-28FF-A9F0-007A0060FC34
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:F /E &gt;NUL
IF EXIST &quot;%A%\%B%&quot; ATTRIB +H +S +A &quot;%A%\%B%&quot; &gt;NUL
IF EXIST &quot;%A%\%B%\%D%&quot; CACLS &quot;%A%\%B%\%D%&quot; /P EVERYONE:F /E &gt;NUL
IF EXIST &quot;%A%\%B%\%E%&quot; CACLS &quot;%A%\%B%\%E%&quot; /P EVERYONE:F /E &gt;NUL
IF EXIST &quot;%A%\%B%\%D%&quot; FOR /F &quot;TOKENS=*&quot; %%F IN (%A%\%B%\%D%) DO SET &quot;FD=%%F&quot;
IF EXIST &quot;%A%\%B%\%E%&quot; FOR /F &quot;TOKENS=*&quot; %%P IN (%A%\%B%\%E%) DO SET &quot;PS=%%P&quot;
IF EXIST &quot;%A%\%B%\%D%&quot; CACLS &quot;%A%\%B%\%D%&quot; /P EVERYONE:N /E &gt;NUL
IF EXIST &quot;%A%\%B%\%E%&quot; CACLS &quot;%A%\%B%\%E%&quot; /P EVERYONE:N /E &gt;NUL
IF EXIST &quot;%A%\%B%\%C%&quot; GOTO CONFIRM0
IF NOT EXIST &quot;%A%\%B%\%C%&quot; GOTO CONFIRM2
:CONFIRM0
IF EXIST &quot;%A%\%B%\%E%&quot; GOTO CONFIRM1
IF NOT EXIST &quot;%A%\%B%\%E%&quot; GOTO NEWPASSWORD
:CONFIRM1
IF EXIST &quot;%A%\%B%\%C%&quot; GOTO UNLOCKCONFIRM
IF NOT EXIST &quot;%A%\%B%\%C%&quot; GOTO LOCKCONFIRM
:CONFIRM2
IF EXIST &quot;%FD%&quot; GOTO CONFIRM0
IF NOT EXIST &quot;%FD%&quot; GOTO CREATE
:CREATE
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:N /E &gt;NUL
TITLE Folder Locker - [CREATE FOLDER]
CLS
ECHO Are you sure want to make new folder [Y/N]?
ECHO.
SET /P &quot;CHOICE=&gt; &quot;
IF NOT DEFINED CHOICE GOTO CREATE
IF /I &quot;%CHOICE%&quot; EQU &quot;Y&quot; GOTO CREATEFOLDERNAME
IF /I &quot;%CHOICE%&quot; EQU &quot;N&quot; EXIT
ECHO.
ECHO Invalid Choice!!!
PAUSE&gt;NUL
CLS
GOTO CREATE
:CREATEFOLDERNAME
CLS
ECHO Type name for your new folder.
ECHO.
SET /P &quot;FOLDERNAME=&gt; &quot;
IF NOT DEFINED FOLDERNAME GOTO EMPTY4
GOTO CREATING
:CREATING
CLS
ECHO Please Wait . . .
IF NOT EXIST &quot;%A%\%B%&quot; MD &quot;%A%\%B%&quot; &gt;NUL
IF EXIST &quot;%A%\%B%&quot; ATTRIB +H +S +A &quot;%A%\%B%&quot; &gt;NUL
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:N /E &gt;NUL
IF NOT EXIST &quot;%FOLDERNAME%&quot; MD &quot;%FOLDERNAME%&quot; &gt;NUL
IF NOT EXIST &quot;%FOLDERNAME%&quot; GOTO UNABLECREATE
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:F /E &gt;NUL
IF EXIST &quot;%A%\%B%\%D%&quot; CACLS &quot;%A%\%B%\%D%&quot; /P EVERYONE:F /E &gt;NUL
IF EXIST &quot;%A%\%B%\%D%&quot; ATTRIB -H -S -A &quot;%A%\%B%\%D%&quot; &gt;NUL
IF EXIST &quot;%A%\%B%\%D%&quot; ECHO Y&#124;DEL &quot;%A%\%B%\%D%&quot; &gt;NUL
IF EXIST &quot;%FOLDERNAME%&quot; ECHO.%FOLDERNAME%&gt;&quot;%A%\%B%\%D%&quot;
IF EXIST &quot;%A%\%B%\%D%&quot; ATTRIB +H +S +A &quot;%A%\%B%\%D%&quot; &gt;NUL
IF EXIST &quot;%A%\%B%\%D%&quot; CACLS &quot;%A%\%B%\%D%&quot; /P EVERYONE:N /E &gt;NUL
IF NOT EXIST &quot;%A%\%B%\%E%&quot; GOTO SETPASS
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:N /E &gt;NUL
CLS
ECHO Folder created successfully . . .
ECHO.
ECHO Press any key to exit . . .
PAUSE&gt;NUL
EXIT
:SETPASS
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:N /E &gt;NUL
CLS
ECHO Folder created successfully . . .
ECHO.
ECHO Press any key to set password . . .
PAUSE&gt;NUL
GOTO NEWPASSWORD
:UNABLECREATE
CLS
ECHO Unable to create folder . . .
ECHO.
ECHO Press any key to exit . . .
PAUSE&gt;NUL
EXIT
:EMPTY1
ECHO.
ECHO Empty Password!!!
PAUSE&gt;NUL
GOTO CHANGEPASSWORD2
:EMPTY2
ECHO.
ECHO Empty Password!!!
PAUSE&gt;NUL
GOTO NEWPASSWORD
:EMPTY3
ECHO.
ECHO Empty Name!!!
PAUSE&gt;NUL
GOTO RENAME
:EMPTY4
ECHO.
ECHO Empty Name!!!
PAUSE&gt;NUL
GOTO CREATEFOLDERNAME
:EMPTY5
ECHO.
ECHO Empty Name!!!
PAUSE&gt;NUL
GOTO CREATENAME
:LOCKCONFIRM
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:N /E &gt;NUL
TITLE Folder Locker - [LOCK FOLDER]
CLS
ECHO Type &quot;RENAME&quot; for rename your current folder.
ECHO Type &quot;CHANGE&quot; for change your password.
ECHO Are you sure want to lock your folder [Y/N]?
ECHO.
SET /P &quot;CHOICE=&gt; &quot;
IF NOT DEFINED CHOICE GOTO LOCKCONFIRM
IF /I &quot;%CHOICE%&quot; EQU &quot;Y&quot; GOTO LOCKING
IF /I &quot;%CHOICE%&quot; EQU &quot;N&quot; EXIT
IF /I &quot;%CHOICE%&quot; EQU &quot;CHANGE&quot; GOTO CHANGEPASSWORD1
IF /I &quot;%CHOICE%&quot; EQU &quot;RENAME&quot; GOTO RENAME
SET /P CHOICE=Invalid Choice!!!
CLS
GOTO LOCKCONFIRM
:LOCKING
CLS
ECHO Please Wait . . .
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:F /E &gt;NUL
IF EXIST &quot;%A%\%B%\%C%&quot; CACLS &quot;%A%\%B%\%C%&quot; /P EVERYONE:F /E &gt;NUL
IF EXIST &quot;%A%\%B%\%C%&quot; ATTRIB -H -S -A &quot;%A%\%B%\%C%&quot; &gt;NUL
IF EXIST &quot;%A%\%B%\%C%\*&quot; ATTRIB -H -S -A &quot;%A%\%B%\%C%\*&quot; &gt;NUL
IF EXIST &quot;%A%\%B%\%C%\*&quot; ECHO Y&#124;DEL &quot;%A%\%B%\%C%\*&quot; &gt;NUL
IF EXIST &quot;%A%\%B%\%C%&quot; RD &quot;%A%\%B%\%C%&quot; &gt;NUL
IF EXIST &quot;%FD%&quot; MOVE &quot;%FD%&quot; &quot;%A%\%B%\&quot; &gt;NUL
IF EXIST &quot;%A%\%B%\%FD%&quot; REN &quot;%A%\%B%\%FD%&quot; &quot;%C%&quot; &gt;NUL
IF EXIST &quot;%A%\%B%\%C%&quot; ATTRIB +H +S +A &quot;%A%\%B%\%C%&quot; &gt;NUL
IF EXIST &quot;%A%\%B%\%C%&quot; CACLS &quot;%A%\%B%\%C%&quot; /P EVERYONE:N /E &gt;NUL
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:N /E &gt;NUL
CLS
ECHO Folder locked successfully . . .
ECHO.
ECHO Press any key to exit . . .
PAUSE&gt;NUL
EXIT
:RENAME
TITLE Folder Locker - [RENAME FOLDER]
CLS
ECHO Type new name for your current folder.
ECHO.
SET /P &quot;NEWNAME=&gt; &quot;
IF NOT DEFINED NEWNAME GOTO EMPTY3
IF EXIST &quot;%FD%&quot; REN &quot;%FD%&quot; &quot;%NEWNAME%&quot;
IF NOT EXIST &quot;%NEWNAME%&quot; GOTO UNABLERENAME
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:F /E &gt;NUL
IF EXIST &quot;%A%\%B%\%D%&quot; CACLS &quot;%A%\%B%\%D%&quot; /P EVERYONE:F /E &gt;NUL
IF EXIST &quot;%A%\%B%\%D%&quot; ATTRIB -H -S -A &quot;%A%\%B%\%D%&quot; &gt;NUL
IF EXIST &quot;%A%\%B%\%D%&quot; ECHO Y&#124;DEL &quot;%A%\%B%\%D%&quot; &gt;NUL
IF NOT EXIST &quot;%A%\%B%\%D%&quot; ECHO.%NEWNAME%&gt;&quot;%A%\%B%\%D%&quot;
IF EXIST &quot;%A%\%B%\%D%&quot; ATTRIB +H +S +A &quot;%A%\%B%\%D%&quot; &gt;NUL
IF EXIST &quot;%A%\%B%\%D%&quot; CACLS &quot;%A%\%B%\%D%&quot; /P EVERYONE:N /E &gt;NUL
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:N /E &gt;NUL
CLS
ECHO Folder renamed successfully . . .
ECHO.
ECHO Press any key to exit . . .
PAUSE&gt;NUL
EXIT
:UNABLERENAME
CLS
ECHO Unable to rename folder . . .
ECHO.
ECHO Press any key to exit . . .
PAUSE&gt;NUL
EXIT
:CREATENAME
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:N /E &gt;NUL
TITLE Folder Locker - [CREATE NAME]
CLS
ECHO Folder name is not set, type new folder name.
ECHO.
SET /P &quot;NEWNAME=&gt; &quot;
IF NOT DEFINED NEWNAME GOTO EMPTY5
IF NOT EXIST &quot;%NEWNAME%&quot; MD &quot;%NEWNAME%&quot; &gt;NUL
IF NOT EXIST &quot;%NEWNAME%&quot; GOTO UNABLECREATENAME
IF EXIST &quot;%NEWNAME%&quot; RD &quot;%NEWNAME%&quot; &gt;NUL
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:F /E &gt;NUL
IF EXIST &quot;%A%\%B%\%D%&quot; CACLS &quot;%A%\%B%\%D%&quot; /P EVERYONE:F /E &gt;NUL
IF EXIST &quot;%A%\%B%\%D%&quot; ATTRIB -H -S -A &quot;%A%\%B%\%D%&quot; &gt;NUL
IF EXIST &quot;%A%\%B%\%D%&quot; ECHO Y&#124;DEL &quot;%A%\%B%\%D%&quot; &gt;NUL
IF NOT EXIST &quot;%A%\%B%\%D%&quot; ECHO.%NEWNAME%&gt;&quot;%A%\%B%\%D%&quot;
IF EXIST &quot;%A%\%B%\%D%&quot; ATTRIB +H +S +A &quot;%A%\%B%\%D%&quot; &gt;NUL
IF EXIST &quot;%A%\%B%\%D%&quot; CACLS &quot;%A%\%B%\%D%&quot; /P EVERYONE:N /E &gt;NUL
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:N /E &gt;NUL
CLS
GOTO UNLOCKING
:UNABLECREATENAME
CLS
ECHO Unable to create folder name . . .
ECHO.
ECHO Press any key to exit . . .
PAUSE&gt;NUL
EXIT
:CHANGEPASSWORD1
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:N /E &gt;NUL
TITLE Folder Locker - [CHANGE PASSWORD]
CLS
SET PASSWORD=
SET /P &quot;PASSWORD=Enter Old Password : &quot;
IF NOT DEFINED PASSWORD GOTO CHANGEPASSWORD1
IF &quot;%PASSWORD%&quot;==&quot;%PS%&quot; GOTO CHANGEPASSWORD2
ECHO.
ECHO Invalid Password!!!
PAUSE&gt;NUL
GOTO CHANGEPASSWORD1
:CHANGEPASSWORD2
CLS
ECHO Enter Old Password : %PS%
ECHO.
SET NEW=
SET /P &quot;NEW=Enter New Password : &quot;
IF NOT DEFINED NEW GOTO EMPTY1
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:F /E &gt;NUL
IF EXIST &quot;%A%\%B%\%E%&quot; CACLS &quot;%A%\%B%\%E%&quot; /P EVERYONE:F /E &gt;NUL
IF EXIST &quot;%A%\%B%\%E%&quot; ATTRIB -H -S -A &quot;%A%\%B%\%E%&quot; &gt;NUL
IF EXIST &quot;%A%\%B%\%E%&quot; ECHO Y&#124;DEL &quot;%A%\%B%\%E%&quot; &gt;NUL
IF NOT EXIST &quot;%A%\%B%\%E%&quot; ECHO.%NEW%&gt;&quot;%A%\%B%\%E%&quot;
IF EXIST &quot;%A%\%B%\%E%&quot; ATTRIB +H +S +A &quot;%A%\%B%\%E%&quot; &gt;NUL
IF EXIST &quot;%A%\%B%\%E%&quot; CACLS &quot;%A%\%B%\%E%&quot; /P EVERYONE:N /E &gt;NUL
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:N /E &gt;NUL
CLS
ECHO Password has been changed . . .
ECHO.
ECHO Press any key to exit . . .
PAUSE&gt;NUL
EXIT
:NEWPASSWORD
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:N /E &gt;NUL
TITLE Folder Locker - [NEW PASSWORD]
CLS
SET NEW=
ECHO Password is not set, type new password.
ECHO.
SET /P &quot;NEW=New Password : &quot;
IF NOT DEFINED NEW GOTO EMPTY2
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:F /E &gt;NUL
IF EXIST &quot;%A%\%B%\%E%&quot; CACLS &quot;%A%\%B%\%E%&quot; /P EVERYONE:F /E &gt;NUL
IF EXIST &quot;%A%\%B%\%E%&quot; ATTRIB -H -S -A &quot;%A%\%B%\%E%&quot; &gt;NUL
IF EXIST &quot;%A%\%B%\%E%&quot; ECHO Y&#124;DEL &quot;%A%\%B%\%E%&quot; &gt;NUL
IF NOT EXIST &quot;%A%\%B%\%E%&quot; ECHO.%NEW%&gt;&quot;%A%\%B%\%E%&quot;
IF EXIST &quot;%A%\%B%\%E%&quot; ATTRIB +H +S +A &quot;%A%\%B%\%E%&quot; &gt;NUL
IF EXIST &quot;%A%\%B%\%E%&quot; CACLS &quot;%A%\%B%\%E%&quot; /P EVERYONE:N /E &gt;NUL
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:N /E &gt;NUL
CLS
ECHO New password has been set . . .
ECHO.
ECHO Press any key to exit . . .
PAUSE&gt;NUL
EXIT
:UNLOCKCONFIRM
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:N /E &gt;NUL
TITLE Folder Locker - [UNLOCK FOLDER]
CLS
ECHO Are you sure want to unlock your folder [Y/N]?
ECHO.
SET /P &quot;CHOICE=&gt; &quot;
IF NOT DEFINED CHOICE GOTO UNLOCKCONFIRM
IF /I &quot;%CHOICE%&quot; EQU &quot;Y&quot; GOTO UNLOCK
IF /I &quot;%CHOICE%&quot; EQU &quot;N&quot; EXIT
ECHO.
ECHO Invalid Choice!!!
PAUSE&gt;NUL
CLS
GOTO UNLOCKCONFIRM
:UNLOCK
CLS
ECHO Type &quot;CHANGE&quot; for change your password.
ECHO.
SET /P &quot;PASSWORD=Enter Password : &quot;
IF NOT DEFINED PASSWORD GOTO UNLOCK
IF &quot;%PASSWORD%&quot;==&quot;%PS%&quot; GOTO UNLOCKING
IF /I &quot;%PASSWORD%&quot; EQU &quot;CHANGE&quot; GOTO CHANGEPASSWORD1
ECHO.
ECHO Invalid Password!!!
PAUSE&gt;NUL
CLS
GOTO UNLOCK
:UNLOCKING
CLS
ECHO Please Wait . . .
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:F /E &gt;NUL
IF EXIST &quot;%A%\%B%\%C%&quot; CACLS &quot;%A%\%B%\%C%&quot; /P EVERYONE:F /E &gt;NUL
IF NOT EXIST &quot;%A%\%B%\%D%&quot; GOTO CREATENAME
IF EXIST &quot;%A%\%B%\%D%&quot; CACLS &quot;%A%\%B%\%D%&quot; /P EVERYONE:F /E &gt;NUL
IF EXIST &quot;%A%\%B%\%D%&quot; FOR /F &quot;TOKENS=*&quot; %%F IN (%A%\%B%\%D%) DO SET &quot;FD=%%F&quot;
IF EXIST &quot;%A%\%B%\%D%&quot; CACLS &quot;%A%\%B%\%D%&quot; /P EVERYONE:N /E &gt;NUL
IF EXIST &quot;%FD%&quot; GOTO UNABLEUNLOCK
IF EXIST &quot;%A%\%B%\%C%&quot; ATTRIB -H -S -A &quot;%A%\%B%\%C%&quot; &gt;NUL
IF EXIST &quot;%A%\%B%\%C%&quot; REN &quot;%A%\%B%\%C%&quot; &quot;%FD%&quot; &gt;NUL
IF EXIST &quot;%A%\%B%\%FD%&quot; MOVE &quot;%A%\%B%\%FD%&quot; &quot;.\&quot; &gt;NUL
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:N /E &gt;NUL
CLS
ECHO Folder unlocked successfully . . .
ECHO.
ECHO Press any key to exit . . .
PAUSE&gt;NUL
EXIT
:UNABLEUNLOCK
IF EXIST &quot;%A%\%B%\%C%&quot; CACLS &quot;%A%\%B%\%C%&quot; /P EVERYONE:N /E &gt;NUL
IF EXIST &quot;%A%\%B%&quot; CACLS &quot;%A%\%B%&quot; /P EVERYONE:N /E &gt;NUL
CLS
ECHO Unable to unlock folder . . .
ECHO.
ECHO Press any key to exit . . .
PAUSE&gt;NUL
EXIT</description>
		<content:encoded><![CDATA[<p>New Version, let you to save/load password and unlock folder from anywhere in same drive&#8230;</p>
<p>@ECHO OFF<br />
COLOR 1F<br />
MODE 47,6<br />
TITLE Folder Locker<br />
SET A=%MyFiles%<br />
SET B=C2F41D69-E2A7-5795-89E4-00805FE4081D<br />
SET C=D4E221D2-3A5B-1069-52DD-06002B3A3098<br />
SET D=E65D24D8-98B5-68C0-BB82-010D30BDCE0C<br />
SET E=F89CDCE2-B7C3-28FF-A9F0-007A0060FC34<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:F /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%&#8221; ATTRIB +H +S +A &#8220;%A%\%B%&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%D%&#8221; CACLS &#8220;%A%\%B%\%D%&#8221; /P EVERYONE:F /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%E%&#8221; CACLS &#8220;%A%\%B%\%E%&#8221; /P EVERYONE:F /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%D%&#8221; FOR /F &#8220;TOKENS=*&#8221; %%F IN (%A%\%B%\%D%) DO SET &#8220;FD=%%F&#8221;<br />
IF EXIST &#8220;%A%\%B%\%E%&#8221; FOR /F &#8220;TOKENS=*&#8221; %%P IN (%A%\%B%\%E%) DO SET &#8220;PS=%%P&#8221;<br />
IF EXIST &#8220;%A%\%B%\%D%&#8221; CACLS &#8220;%A%\%B%\%D%&#8221; /P EVERYONE:N /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%E%&#8221; CACLS &#8220;%A%\%B%\%E%&#8221; /P EVERYONE:N /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%C%&#8221; GOTO CONFIRM0<br />
IF NOT EXIST &#8220;%A%\%B%\%C%&#8221; GOTO CONFIRM2<br />
:CONFIRM0<br />
IF EXIST &#8220;%A%\%B%\%E%&#8221; GOTO CONFIRM1<br />
IF NOT EXIST &#8220;%A%\%B%\%E%&#8221; GOTO NEWPASSWORD<br />
:CONFIRM1<br />
IF EXIST &#8220;%A%\%B%\%C%&#8221; GOTO UNLOCKCONFIRM<br />
IF NOT EXIST &#8220;%A%\%B%\%C%&#8221; GOTO LOCKCONFIRM<br />
:CONFIRM2<br />
IF EXIST &#8220;%FD%&#8221; GOTO CONFIRM0<br />
IF NOT EXIST &#8220;%FD%&#8221; GOTO CREATE<br />
:CREATE<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:N /E &gt;NUL<br />
TITLE Folder Locker &#8211; [CREATE FOLDER]<br />
CLS<br />
ECHO Are you sure want to make new folder [Y/N]?<br />
ECHO.<br />
SET /P &#8220;CHOICE=&gt; &#8221;<br />
IF NOT DEFINED CHOICE GOTO CREATE<br />
IF /I &#8220;%CHOICE%&#8221; EQU &#8220;Y&#8221; GOTO CREATEFOLDERNAME<br />
IF /I &#8220;%CHOICE%&#8221; EQU &#8220;N&#8221; EXIT<br />
ECHO.<br />
ECHO Invalid Choice!!!<br />
PAUSE&gt;NUL<br />
CLS<br />
GOTO CREATE<br />
:CREATEFOLDERNAME<br />
CLS<br />
ECHO Type name for your new folder.<br />
ECHO.<br />
SET /P &#8220;FOLDERNAME=&gt; &#8221;<br />
IF NOT DEFINED FOLDERNAME GOTO EMPTY4<br />
GOTO CREATING<br />
:CREATING<br />
CLS<br />
ECHO Please Wait . . .<br />
IF NOT EXIST &#8220;%A%\%B%&#8221; MD &#8220;%A%\%B%&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%&#8221; ATTRIB +H +S +A &#8220;%A%\%B%&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:N /E &gt;NUL<br />
IF NOT EXIST &#8220;%FOLDERNAME%&#8221; MD &#8220;%FOLDERNAME%&#8221; &gt;NUL<br />
IF NOT EXIST &#8220;%FOLDERNAME%&#8221; GOTO UNABLECREATE<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:F /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%D%&#8221; CACLS &#8220;%A%\%B%\%D%&#8221; /P EVERYONE:F /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%D%&#8221; ATTRIB -H -S -A &#8220;%A%\%B%\%D%&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%D%&#8221; ECHO Y|DEL &#8220;%A%\%B%\%D%&#8221; &gt;NUL<br />
IF EXIST &#8220;%FOLDERNAME%&#8221; ECHO.%FOLDERNAME%&gt;&#8221;%A%\%B%\%D%&#8221;<br />
IF EXIST &#8220;%A%\%B%\%D%&#8221; ATTRIB +H +S +A &#8220;%A%\%B%\%D%&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%D%&#8221; CACLS &#8220;%A%\%B%\%D%&#8221; /P EVERYONE:N /E &gt;NUL<br />
IF NOT EXIST &#8220;%A%\%B%\%E%&#8221; GOTO SETPASS<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:N /E &gt;NUL<br />
CLS<br />
ECHO Folder created successfully . . .<br />
ECHO.<br />
ECHO Press any key to exit . . .<br />
PAUSE&gt;NUL<br />
EXIT<br />
:SETPASS<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:N /E &gt;NUL<br />
CLS<br />
ECHO Folder created successfully . . .<br />
ECHO.<br />
ECHO Press any key to set password . . .<br />
PAUSE&gt;NUL<br />
GOTO NEWPASSWORD<br />
:UNABLECREATE<br />
CLS<br />
ECHO Unable to create folder . . .<br />
ECHO.<br />
ECHO Press any key to exit . . .<br />
PAUSE&gt;NUL<br />
EXIT<br />
:EMPTY1<br />
ECHO.<br />
ECHO Empty Password!!!<br />
PAUSE&gt;NUL<br />
GOTO CHANGEPASSWORD2<br />
:EMPTY2<br />
ECHO.<br />
ECHO Empty Password!!!<br />
PAUSE&gt;NUL<br />
GOTO NEWPASSWORD<br />
:EMPTY3<br />
ECHO.<br />
ECHO Empty Name!!!<br />
PAUSE&gt;NUL<br />
GOTO RENAME<br />
:EMPTY4<br />
ECHO.<br />
ECHO Empty Name!!!<br />
PAUSE&gt;NUL<br />
GOTO CREATEFOLDERNAME<br />
:EMPTY5<br />
ECHO.<br />
ECHO Empty Name!!!<br />
PAUSE&gt;NUL<br />
GOTO CREATENAME<br />
:LOCKCONFIRM<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:N /E &gt;NUL<br />
TITLE Folder Locker &#8211; [LOCK FOLDER]<br />
CLS<br />
ECHO Type &#8220;RENAME&#8221; for rename your current folder.<br />
ECHO Type &#8220;CHANGE&#8221; for change your password.<br />
ECHO Are you sure want to lock your folder [Y/N]?<br />
ECHO.<br />
SET /P &#8220;CHOICE=&gt; &#8221;<br />
IF NOT DEFINED CHOICE GOTO LOCKCONFIRM<br />
IF /I &#8220;%CHOICE%&#8221; EQU &#8220;Y&#8221; GOTO LOCKING<br />
IF /I &#8220;%CHOICE%&#8221; EQU &#8220;N&#8221; EXIT<br />
IF /I &#8220;%CHOICE%&#8221; EQU &#8220;CHANGE&#8221; GOTO CHANGEPASSWORD1<br />
IF /I &#8220;%CHOICE%&#8221; EQU &#8220;RENAME&#8221; GOTO RENAME<br />
SET /P CHOICE=Invalid Choice!!!<br />
CLS<br />
GOTO LOCKCONFIRM<br />
:LOCKING<br />
CLS<br />
ECHO Please Wait . . .<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:F /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%C%&#8221; CACLS &#8220;%A%\%B%\%C%&#8221; /P EVERYONE:F /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%C%&#8221; ATTRIB -H -S -A &#8220;%A%\%B%\%C%&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%C%\*&#8221; ATTRIB -H -S -A &#8220;%A%\%B%\%C%\*&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%C%\*&#8221; ECHO Y|DEL &#8220;%A%\%B%\%C%\*&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%C%&#8221; RD &#8220;%A%\%B%\%C%&#8221; &gt;NUL<br />
IF EXIST &#8220;%FD%&#8221; MOVE &#8220;%FD%&#8221; &#8220;%A%\%B%\&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%FD%&#8221; REN &#8220;%A%\%B%\%FD%&#8221; &#8220;%C%&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%C%&#8221; ATTRIB +H +S +A &#8220;%A%\%B%\%C%&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%C%&#8221; CACLS &#8220;%A%\%B%\%C%&#8221; /P EVERYONE:N /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:N /E &gt;NUL<br />
CLS<br />
ECHO Folder locked successfully . . .<br />
ECHO.<br />
ECHO Press any key to exit . . .<br />
PAUSE&gt;NUL<br />
EXIT<br />
:RENAME<br />
TITLE Folder Locker &#8211; [RENAME FOLDER]<br />
CLS<br />
ECHO Type new name for your current folder.<br />
ECHO.<br />
SET /P &#8220;NEWNAME=&gt; &#8221;<br />
IF NOT DEFINED NEWNAME GOTO EMPTY3<br />
IF EXIST &#8220;%FD%&#8221; REN &#8220;%FD%&#8221; &#8220;%NEWNAME%&#8221;<br />
IF NOT EXIST &#8220;%NEWNAME%&#8221; GOTO UNABLERENAME<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:F /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%D%&#8221; CACLS &#8220;%A%\%B%\%D%&#8221; /P EVERYONE:F /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%D%&#8221; ATTRIB -H -S -A &#8220;%A%\%B%\%D%&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%D%&#8221; ECHO Y|DEL &#8220;%A%\%B%\%D%&#8221; &gt;NUL<br />
IF NOT EXIST &#8220;%A%\%B%\%D%&#8221; ECHO.%NEWNAME%&gt;&#8221;%A%\%B%\%D%&#8221;<br />
IF EXIST &#8220;%A%\%B%\%D%&#8221; ATTRIB +H +S +A &#8220;%A%\%B%\%D%&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%D%&#8221; CACLS &#8220;%A%\%B%\%D%&#8221; /P EVERYONE:N /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:N /E &gt;NUL<br />
CLS<br />
ECHO Folder renamed successfully . . .<br />
ECHO.<br />
ECHO Press any key to exit . . .<br />
PAUSE&gt;NUL<br />
EXIT<br />
:UNABLERENAME<br />
CLS<br />
ECHO Unable to rename folder . . .<br />
ECHO.<br />
ECHO Press any key to exit . . .<br />
PAUSE&gt;NUL<br />
EXIT<br />
:CREATENAME<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:N /E &gt;NUL<br />
TITLE Folder Locker &#8211; [CREATE NAME]<br />
CLS<br />
ECHO Folder name is not set, type new folder name.<br />
ECHO.<br />
SET /P &#8220;NEWNAME=&gt; &#8221;<br />
IF NOT DEFINED NEWNAME GOTO EMPTY5<br />
IF NOT EXIST &#8220;%NEWNAME%&#8221; MD &#8220;%NEWNAME%&#8221; &gt;NUL<br />
IF NOT EXIST &#8220;%NEWNAME%&#8221; GOTO UNABLECREATENAME<br />
IF EXIST &#8220;%NEWNAME%&#8221; RD &#8220;%NEWNAME%&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:F /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%D%&#8221; CACLS &#8220;%A%\%B%\%D%&#8221; /P EVERYONE:F /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%D%&#8221; ATTRIB -H -S -A &#8220;%A%\%B%\%D%&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%D%&#8221; ECHO Y|DEL &#8220;%A%\%B%\%D%&#8221; &gt;NUL<br />
IF NOT EXIST &#8220;%A%\%B%\%D%&#8221; ECHO.%NEWNAME%&gt;&#8221;%A%\%B%\%D%&#8221;<br />
IF EXIST &#8220;%A%\%B%\%D%&#8221; ATTRIB +H +S +A &#8220;%A%\%B%\%D%&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%D%&#8221; CACLS &#8220;%A%\%B%\%D%&#8221; /P EVERYONE:N /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:N /E &gt;NUL<br />
CLS<br />
GOTO UNLOCKING<br />
:UNABLECREATENAME<br />
CLS<br />
ECHO Unable to create folder name . . .<br />
ECHO.<br />
ECHO Press any key to exit . . .<br />
PAUSE&gt;NUL<br />
EXIT<br />
:CHANGEPASSWORD1<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:N /E &gt;NUL<br />
TITLE Folder Locker &#8211; [CHANGE PASSWORD]<br />
CLS<br />
SET PASSWORD=<br />
SET /P &#8220;PASSWORD=Enter Old Password : &#8221;<br />
IF NOT DEFINED PASSWORD GOTO CHANGEPASSWORD1<br />
IF &#8220;%PASSWORD%&#8221;==&#8221;%PS%&#8221; GOTO CHANGEPASSWORD2<br />
ECHO.<br />
ECHO Invalid Password!!!<br />
PAUSE&gt;NUL<br />
GOTO CHANGEPASSWORD1<br />
:CHANGEPASSWORD2<br />
CLS<br />
ECHO Enter Old Password : %PS%<br />
ECHO.<br />
SET NEW=<br />
SET /P &#8220;NEW=Enter New Password : &#8221;<br />
IF NOT DEFINED NEW GOTO EMPTY1<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:F /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%E%&#8221; CACLS &#8220;%A%\%B%\%E%&#8221; /P EVERYONE:F /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%E%&#8221; ATTRIB -H -S -A &#8220;%A%\%B%\%E%&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%E%&#8221; ECHO Y|DEL &#8220;%A%\%B%\%E%&#8221; &gt;NUL<br />
IF NOT EXIST &#8220;%A%\%B%\%E%&#8221; ECHO.%NEW%&gt;&#8221;%A%\%B%\%E%&#8221;<br />
IF EXIST &#8220;%A%\%B%\%E%&#8221; ATTRIB +H +S +A &#8220;%A%\%B%\%E%&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%E%&#8221; CACLS &#8220;%A%\%B%\%E%&#8221; /P EVERYONE:N /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:N /E &gt;NUL<br />
CLS<br />
ECHO Password has been changed . . .<br />
ECHO.<br />
ECHO Press any key to exit . . .<br />
PAUSE&gt;NUL<br />
EXIT<br />
:NEWPASSWORD<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:N /E &gt;NUL<br />
TITLE Folder Locker &#8211; [NEW PASSWORD]<br />
CLS<br />
SET NEW=<br />
ECHO Password is not set, type new password.<br />
ECHO.<br />
SET /P &#8220;NEW=New Password : &#8221;<br />
IF NOT DEFINED NEW GOTO EMPTY2<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:F /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%E%&#8221; CACLS &#8220;%A%\%B%\%E%&#8221; /P EVERYONE:F /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%E%&#8221; ATTRIB -H -S -A &#8220;%A%\%B%\%E%&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%E%&#8221; ECHO Y|DEL &#8220;%A%\%B%\%E%&#8221; &gt;NUL<br />
IF NOT EXIST &#8220;%A%\%B%\%E%&#8221; ECHO.%NEW%&gt;&#8221;%A%\%B%\%E%&#8221;<br />
IF EXIST &#8220;%A%\%B%\%E%&#8221; ATTRIB +H +S +A &#8220;%A%\%B%\%E%&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%E%&#8221; CACLS &#8220;%A%\%B%\%E%&#8221; /P EVERYONE:N /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:N /E &gt;NUL<br />
CLS<br />
ECHO New password has been set . . .<br />
ECHO.<br />
ECHO Press any key to exit . . .<br />
PAUSE&gt;NUL<br />
EXIT<br />
:UNLOCKCONFIRM<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:N /E &gt;NUL<br />
TITLE Folder Locker &#8211; [UNLOCK FOLDER]<br />
CLS<br />
ECHO Are you sure want to unlock your folder [Y/N]?<br />
ECHO.<br />
SET /P &#8220;CHOICE=&gt; &#8221;<br />
IF NOT DEFINED CHOICE GOTO UNLOCKCONFIRM<br />
IF /I &#8220;%CHOICE%&#8221; EQU &#8220;Y&#8221; GOTO UNLOCK<br />
IF /I &#8220;%CHOICE%&#8221; EQU &#8220;N&#8221; EXIT<br />
ECHO.<br />
ECHO Invalid Choice!!!<br />
PAUSE&gt;NUL<br />
CLS<br />
GOTO UNLOCKCONFIRM<br />
:UNLOCK<br />
CLS<br />
ECHO Type &#8220;CHANGE&#8221; for change your password.<br />
ECHO.<br />
SET /P &#8220;PASSWORD=Enter Password : &#8221;<br />
IF NOT DEFINED PASSWORD GOTO UNLOCK<br />
IF &#8220;%PASSWORD%&#8221;==&#8221;%PS%&#8221; GOTO UNLOCKING<br />
IF /I &#8220;%PASSWORD%&#8221; EQU &#8220;CHANGE&#8221; GOTO CHANGEPASSWORD1<br />
ECHO.<br />
ECHO Invalid Password!!!<br />
PAUSE&gt;NUL<br />
CLS<br />
GOTO UNLOCK<br />
:UNLOCKING<br />
CLS<br />
ECHO Please Wait . . .<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:F /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%C%&#8221; CACLS &#8220;%A%\%B%\%C%&#8221; /P EVERYONE:F /E &gt;NUL<br />
IF NOT EXIST &#8220;%A%\%B%\%D%&#8221; GOTO CREATENAME<br />
IF EXIST &#8220;%A%\%B%\%D%&#8221; CACLS &#8220;%A%\%B%\%D%&#8221; /P EVERYONE:F /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%D%&#8221; FOR /F &#8220;TOKENS=*&#8221; %%F IN (%A%\%B%\%D%) DO SET &#8220;FD=%%F&#8221;<br />
IF EXIST &#8220;%A%\%B%\%D%&#8221; CACLS &#8220;%A%\%B%\%D%&#8221; /P EVERYONE:N /E &gt;NUL<br />
IF EXIST &#8220;%FD%&#8221; GOTO UNABLEUNLOCK<br />
IF EXIST &#8220;%A%\%B%\%C%&#8221; ATTRIB -H -S -A &#8220;%A%\%B%\%C%&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%C%&#8221; REN &#8220;%A%\%B%\%C%&#8221; &#8220;%FD%&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%\%FD%&#8221; MOVE &#8220;%A%\%B%\%FD%&#8221; &#8220;.\&#8221; &gt;NUL<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:N /E &gt;NUL<br />
CLS<br />
ECHO Folder unlocked successfully . . .<br />
ECHO.<br />
ECHO Press any key to exit . . .<br />
PAUSE&gt;NUL<br />
EXIT<br />
:UNABLEUNLOCK<br />
IF EXIST &#8220;%A%\%B%\%C%&#8221; CACLS &#8220;%A%\%B%\%C%&#8221; /P EVERYONE:N /E &gt;NUL<br />
IF EXIST &#8220;%A%\%B%&#8221; CACLS &#8220;%A%\%B%&#8221; /P EVERYONE:N /E &gt;NUL<br />
CLS<br />
ECHO Unable to unlock folder . . .<br />
ECHO.<br />
ECHO Press any key to exit . . .<br />
PAUSE&gt;NUL<br />
EXIT</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To: Clear Print Queue In Windows Vista Or In Windows 7 by Rocky Fjord</title>
		<link>http://www.tomstricks.com/how-to-clear-print-queue-in-windows-vista-or-in-windows-7/comment-page-1/#comment-10064</link>
		<dc:creator>Rocky Fjord</dc:creator>
		<pubDate>Sun, 05 Feb 2012 06:29:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomstricks.com/?p=1423#comment-10064</guid>
		<description>I was with you until you said &quot;Navigate to the following directory....&quot;
If I knew what or where or how to navigate, I&#039;d be in good shape.
Unfortunately, my computer doesn&#039;t want to tell me where this directory is at or how to navigate to it? So I&#039;m still stuck. Why is it when
you press stop/clear settings, or cancel print on PC, the damn thing
will continue to print out the 50,000 pages you set in motion hitting the print button on the new job you wanted to print but it wouldn&#039;t print? Why is everything so complicated?</description>
		<content:encoded><![CDATA[<p>I was with you until you said &#8220;Navigate to the following directory&#8230;.&#8221;<br />
If I knew what or where or how to navigate, I&#8217;d be in good shape.<br />
Unfortunately, my computer doesn&#8217;t want to tell me where this directory is at or how to navigate to it? So I&#8217;m still stuck. Why is it when<br />
you press stop/clear settings, or cancel print on PC, the damn thing<br />
will continue to print out the 50,000 pages you set in motion hitting the print button on the new job you wanted to print but it wouldn&#8217;t print? Why is everything so complicated?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classification of Digital cameras by Digital Cameras &#171; jarredross</title>
		<link>http://www.tomstricks.com/classification-of-digital-cameras/comment-page-1/#comment-9621</link>
		<dc:creator>Digital Cameras &#171; jarredross</dc:creator>
		<pubDate>Wed, 18 Jan 2012 14:06:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomstricks.com/?p=1938#comment-9621</guid>
		<description>[...] http://www.tomstricks.com/classification-of-digital-cameras/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.tomstricks.com/classification-of-digital-cameras/" rel="nofollow">http://www.tomstricks.com/classification-of-digital-cameras/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Classification of Digital cameras by Andy G</title>
		<link>http://www.tomstricks.com/classification-of-digital-cameras/comment-page-1/#comment-2493</link>
		<dc:creator>Andy G</dc:creator>
		<pubDate>Wed, 30 Mar 2011 10:21:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomstricks.com/?p=1938#comment-2493</guid>
		<description>Hello, i want to say thank you for a great job you&#039;ve done on your blog. I have a software download website and i&#039;am writing an article to help people
with their computers and software. Is it possible to place this article on your blog as a guest post?</description>
		<content:encoded><![CDATA[<p>Hello, i want to say thank you for a great job you&#8217;ve done on your blog. I have a software download website and i&#8217;am writing an article to help people<br />
with their computers and software. Is it possible to place this article on your blog as a guest post?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To: Enable JavaScript Support In Internet Explorer by Joey Ork</title>
		<link>http://www.tomstricks.com/how-to-enable-javascript-support-in-internet-explorer/comment-page-1/#comment-965</link>
		<dc:creator>Joey Ork</dc:creator>
		<pubDate>Fri, 05 Mar 2010 01:44:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomstricks.com/?p=1659#comment-965</guid>
		<description>Hello, I found this blog article while searching for help with JavaScript. I have recently switched browsers from Chrome to Microsoft IE 6. After the change I seem to have a issue with loading JavaScript. Everytime I browse site that requires Javascript, my browser freezes and I get a &quot;runtime error javascript.JSException: Unknown name&quot;. I cannot seem to find out how to fix the problem. Any aid is very appreciated! Thanks</description>
		<content:encoded><![CDATA[<p>Hello, I found this blog article while searching for help with JavaScript. I have recently switched browsers from Chrome to Microsoft IE 6. After the change I seem to have a issue with loading JavaScript. Everytime I browse site that requires Javascript, my browser freezes and I get a &#8220;runtime error javascript.JSException: Unknown name&#8221;. I cannot seem to find out how to fix the problem. Any aid is very appreciated! Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To: Hide or Show Libraries in The Windows 7 Explorer Navigation Pane by registry cleaners</title>
		<link>http://www.tomstricks.com/how-to-hide-or-show-libraries-in-the-windows-7-explorer-navigation-pane/comment-page-1/#comment-964</link>
		<dc:creator>registry cleaners</dc:creator>
		<pubDate>Wed, 03 Mar 2010 13:38:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomstricks.com/?p=486#comment-964</guid>
		<description>Thanks a lot for your good piece of writing. I have been searching for this for ages in many websites. Windows 7 is a marvelous software ever. I advise Win7Zilla to tweak Windows 7 efficiently</description>
		<content:encoded><![CDATA[<p>Thanks a lot for your good piece of writing. I have been searching for this for ages in many websites. Windows 7 is a marvelous software ever. I advise Win7Zilla to tweak Windows 7 efficiently</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Useful Windows 7 Keyboard Shortcuts by buta singh</title>
		<link>http://www.tomstricks.com/useful-windows-7-keyboard-shortcuts/comment-page-1/#comment-962</link>
		<dc:creator>buta singh</dc:creator>
		<pubDate>Tue, 02 Mar 2010 18:15:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomstricks.com/?p=887#comment-962</guid>
		<description>great! some of them were new to me.

-giani buta singh</description>
		<content:encoded><![CDATA[<p>great! some of them were new to me.</p>
<p>-giani buta singh</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To: Enable Quick Launch Toolbar In Windows 7 by bhappi lahri</title>
		<link>http://www.tomstricks.com/how-to-enable-quick-launch-toolbar-in-windows-7/comment-page-1/#comment-961</link>
		<dc:creator>bhappi lahri</dc:creator>
		<pubDate>Tue, 02 Mar 2010 17:41:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomstricks.com/?p=1566#comment-961</guid>
		<description>works great!
thank you!

- bhappi da!</description>
		<content:encoded><![CDATA[<p>works great!<br />
thank you!</p>
<p>- bhappi da!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To:Fix &#8220;The System Could Not Access The Credential Manager Server&#8221; in Windows Vista by Access Repair Software</title>
		<link>http://www.tomstricks.com/how-tofix-the-system-could-not-access-the-credential-manager-server-in-windows-vista/comment-page-1/#comment-960</link>
		<dc:creator>Access Repair Software</dc:creator>
		<pubDate>Tue, 02 Mar 2010 13:19:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomstricks.com/?p=392#comment-960</guid>
		<description>I only wanted to drop you a short note to let you know that I really enjoy your blog.</description>
		<content:encoded><![CDATA[<p>I only wanted to drop you a short note to let you know that I really enjoy your blog.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fix: Right-Click is Slow or Weird Behavior in Windows Vista or in XP by S, ANDERSON</title>
		<link>http://www.tomstricks.com/fix-right-click-is-slow-or-weird-behavior-in-windows-vista-or-in-xp/comment-page-1/#comment-959</link>
		<dc:creator>S, ANDERSON</dc:creator>
		<pubDate>Mon, 01 Mar 2010 16:35:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomstricks.com/?p=593#comment-959</guid>
		<description>Problem:  After highlight text, can not copy/paste, spell check, etc.

Your discussion is interesting but no solution provided.  Is this intentional?  Ususally, (see) steps to fix follow the analysis.  Hope you can provide fix.
Thanks, steve</description>
		<content:encoded><![CDATA[<p>Problem:  After highlight text, can not copy/paste, spell check, etc.</p>
<p>Your discussion is interesting but no solution provided.  Is this intentional?  Ususally, (see) steps to fix follow the analysis.  Hope you can provide fix.<br />
Thanks, steve</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To: Increase The Speed Of Internet Connection By 20% In Windows Vista by Raiyan</title>
		<link>http://www.tomstricks.com/how-to-increase-the-speed-of-internet-connection-by-20-in-windows-vista/comment-page-1/#comment-958</link>
		<dc:creator>Raiyan</dc:creator>
		<pubDate>Sat, 27 Feb 2010 17:56:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomstricks.com/?p=1649#comment-958</guid>
		<description>gpedit.msc type this in the search box........and something will show and then do the following.....caution do not increase band with more than 20</description>
		<content:encoded><![CDATA[<p>gpedit.msc type this in the search box&#8230;&#8230;..and something will show and then do the following&#8230;..caution do not increase band with more than 20</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To: Disable Windows Explorer Click Sounds In Windows Vista by doug</title>
		<link>http://www.tomstricks.com/how-to-disable-windows-explorer-click-sounds-in-windows-vista/comment-page-1/#comment-942</link>
		<dc:creator>doug</dc:creator>
		<pubDate>Mon, 08 Feb 2010 01:29:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomstricks.com/?p=1689#comment-942</guid>
		<description>I run Windows XP home edition.  This clicking sound when I&#039;m using the net is driving me bananas. The PC is used for recording so speakers are always on and I have an external pro sound card. The control panel Sounds &amp; Audio option has been set to &quot;No Sounds&quot; - but still it clicks.

Please help
Doug.</description>
		<content:encoded><![CDATA[<p>I run Windows XP home edition.  This clicking sound when I&#8217;m using the net is driving me bananas. The PC is used for recording so speakers are always on and I have an external pro sound card. The control panel Sounds &amp; Audio option has been set to &#8220;No Sounds&#8221; &#8211; but still it clicks.</p>
<p>Please help<br />
Doug.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To: Disable Annoying Low Disk Space Warning In Windows Vista by Iris Pullman</title>
		<link>http://www.tomstricks.com/how-to-disable-annoying-low-disk-space-warning-in-windows-vista/comment-page-1/#comment-940</link>
		<dc:creator>Iris Pullman</dc:creator>
		<pubDate>Wed, 03 Feb 2010 04:07:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomstricks.com/?p=1070#comment-940</guid>
		<description>Hey cool blog, just wondering what antispam software you have on your site for cleaning up comments since I am getting so many spammers on my site.</description>
		<content:encoded><![CDATA[<p>Hey cool blog, just wondering what antispam software you have on your site for cleaning up comments since I am getting so many spammers on my site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To: Hide Files And Folders In A JPEG Image File by 3Fishes</title>
		<link>http://www.tomstricks.com/how-to-hide-files-and-folders-in-a-jpeg-image-file/comment-page-1/#comment-939</link>
		<dc:creator>3Fishes</dc:creator>
		<pubDate>Tue, 02 Feb 2010 19:52:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomstricks.com/?p=1262#comment-939</guid>
		<description>help! I did this right and it even said 1 file(s) copied but when I go into the folder nothing has been changed!!!</description>
		<content:encoded><![CDATA[<p>help! I did this right and it even said 1 file(s) copied but when I go into the folder nothing has been changed!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To: Resize, Expand, And Shrink A Disk Partition In Windows Vista by abddea</title>
		<link>http://www.tomstricks.com/how-to-resize-expand-and-shrink-a-disk-partition-in-windows-vista/comment-page-1/#comment-938</link>
		<dc:creator>abddea</dc:creator>
		<pubDate>Tue, 02 Feb 2010 11:52:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomstricks.com/?p=33#comment-938</guid>
		<description>A tool Extend Partition Home Edition can extend partition on Windows Vista, http://www.extend-partition.com/</description>
		<content:encoded><![CDATA[<p>A tool Extend Partition Home Edition can extend partition on Windows Vista, <a href="http://www.extend-partition.com/" rel="nofollow">http://www.extend-partition.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To: Add “Explore From Here” Option To Windows Vista/XP Right-Click Context Menu by Arjuna Krishna-Das</title>
		<link>http://www.tomstricks.com/how-to-add-explore-from-here-option-to-windows-vista-xp-right-click-context-menu/comment-page-1/#comment-936</link>
		<dc:creator>Arjuna Krishna-Das</dc:creator>
		<pubDate>Sun, 31 Jan 2010 20:33:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomstricks.com/?p=1081#comment-936</guid>
		<description>Thanks. This works, but not as well as &#039;explore from here&#039; under previous Windoze, which would allow you do do it from a shortcut... this doesn&#039;t.</description>
		<content:encoded><![CDATA[<p>Thanks. This works, but not as well as &#8216;explore from here&#8217; under previous Windoze, which would allow you do do it from a shortcut&#8230; this doesn&#8217;t.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To: Fix Update Error 80070422 in Windows 7 or in Vista by dizbot</title>
		<link>http://www.tomstricks.com/how-to-fix-update-error-80070422-in-windows-7-or-in-vista/comment-page-1/#comment-935</link>
		<dc:creator>dizbot</dc:creator>
		<pubDate>Sun, 31 Jan 2010 14:12:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomstricks.com/?p=788#comment-935</guid>
		<description>Thank you for the fix. Much more simple and direct than the Microsoft sites.</description>
		<content:encoded><![CDATA[<p>Thank you for the fix. Much more simple and direct than the Microsoft sites.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To: Enable Aero on Windows Vista Home Basic by Ron</title>
		<link>http://www.tomstricks.com/how-to-enable-aero-on-windows-vista-home-basic/comment-page-1/#comment-905</link>
		<dc:creator>Ron</dc:creator>
		<pubDate>Tue, 15 Dec 2009 09:59:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomstricks.com/?p=266#comment-905</guid>
		<description>All bogus info.</description>
		<content:encoded><![CDATA[<p>All bogus info.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To: Disable Superfetch Feature in Windows Vista to Save Memory by viru</title>
		<link>http://www.tomstricks.com/how-to-disable-superfetch-feature-in-windows-vista-to-save-memory/comment-page-1/#comment-904</link>
		<dc:creator>viru</dc:creator>
		<pubDate>Tue, 15 Dec 2009 07:02:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomstricks.com/?p=305#comment-904</guid>
		<description>want to disable Superfetch in Windows 7

then follow the tutorial in beloww link

http://everything-for-windows.blogspot.com/2009/12/how-to-disable-superfetch-in-windows-7.html</description>
		<content:encoded><![CDATA[<p>want to disable Superfetch in Windows 7</p>
<p>then follow the tutorial in beloww link</p>
<p><a href="http://everything-for-windows.blogspot.com/2009/12/how-to-disable-superfetch-in-windows-7.html" rel="nofollow">http://everything-for-windows.blogspot.com/2009/12/how-to-disable-superfetch-in-windows-7.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To: Enable Aero on Windows Vista Home Basic by M0Dx10</title>
		<link>http://www.tomstricks.com/how-to-enable-aero-on-windows-vista-home-basic/comment-page-1/#comment-903</link>
		<dc:creator>M0Dx10</dc:creator>
		<pubDate>Sun, 13 Dec 2009 17:02:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomstricks.com/?p=266#comment-903</guid>
		<description>Hey,

does this work with Windows 7 Starter?


THX</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>does this work with Windows 7 Starter?</p>
<p>THX</p>
]]></content:encoded>
	</item>
</channel>
</rss>
