<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0' version='2.0'><channel><atom:id>tag:blogger.com,1999:blog-85189534207045023</atom:id><lastBuildDate>Mon, 28 Nov 2011 00:54:56 +0000</lastBuildDate><category>Desktop Related Solution</category><category>Scripting</category><category>Downloads: Security</category><category>Mobile Tips</category><category>Graphics</category><category>Hardware tech</category><category>Downloads: PC Games</category><category>Downloads: Utilities</category><category>Interview FAQ's</category><category>Networking</category><category>BlueScreen Error</category><category>Hacking</category><category>MSI World</category><category>Windows</category><category>Movies</category><category>Hacking Videos</category><category>Science</category><category>Tips and Tricks</category><category>Tutorials</category><category>Blogger Tips</category><category>Email Hacking</category><title>Techi-Library</title><description>The Evil Hackerz Team</description><link>http://techi-library.blogspot.com/</link><managingEditor>noreply@blogger.com (Manohar)</managingEditor><generator>Blogger</generator><openSearch:totalResults>217</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-5616200562942249399</guid><pubDate>Sat, 17 Apr 2010 07:58:00 +0000</pubDate><atom:updated>2010-04-17T00:58:38.084-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Scripting</category><category domain='http://www.blogger.com/atom/ns#'>Tutorials</category><title>Learn C by example in just 5 hours</title><description>Have you always wanted to master a programming language. Well today if you are glancing at this page you have chosen a language which perhaps without doubt is the most versatile. But to learn C for say basic programmers is a challenge. While the old basic used interpreters C uses compilers and basically is very portable. But let quit all this jibrish and get to the heart of this page. I say you can learn C programming in 3 hours. Well atleast the basics that will help you to build more powerful programs.You say I can't show you C in 5 hours. Well let's test that ...&lt;br /&gt;&lt;br /&gt;--------------------------------------------------------------------------------&lt;br /&gt;A simple hello program.(demonstrates the const function in all c programs--the main() function.)&lt;br /&gt;&lt;br /&gt;(example-1)&lt;br /&gt;&lt;br /&gt;main()&lt;br /&gt;{&lt;br /&gt;puts("hello world guess who is writing a c program");&lt;br /&gt;return(0);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;That's it. In all c programs there is a main function which is followed by a { and closed by a } after a return()function.It doesn't have to be return(0) but that depends upon the type of c compiler you have. Check your compiler before you start your programming.&lt;br /&gt;You saw above that puts function is used to put a whole sentence on the screen; but are there functions that will put characters on the screen/take characters: Yes and next is a table of what they are and what they do. Read them and the examples that follow.&lt;br /&gt;&lt;br /&gt;getchar() Gets a single character from the input/keyboard. &lt;br /&gt;putchar() Puts a single character on the screen. &lt;br /&gt;&lt;br /&gt;The printf function is a function used to print the output to the screen.printf() needs to know if the output is an integer,real,etc example-2&lt;br /&gt;&lt;br /&gt;main()&lt;br /&gt;{&lt;br /&gt;printf(hello);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Assuming hello was defined earlier say by #define hello "Hello!" the output is Hello!. But if the output is an integer then %d has to be attatched to the printf statement.&lt;br /&gt;This above can be shown as printf("I am %d years old",12) which will result in the following result:I am 12 years old&lt;br /&gt;&lt;br /&gt;The %d tells that an integer is to be placed here.&lt;br /&gt;&lt;br /&gt;Now we will look into a function called scanf().This lets you input from the kewyboard and for that input to be taken by the program and processed.Once again it is important to tell scanf() what type of data is being scanned.&lt;br /&gt;&lt;br /&gt;Here is an example of a program that demonstrates both scanf and printf in unison.&lt;br /&gt;&lt;br /&gt;example-3 &lt;br /&gt;&lt;br /&gt;main() {&lt;br /&gt;int count;&lt;br /&gt;puts("Please enter a number: ");&lt;br /&gt;scanf("%d", &amp;amp;count);&lt;br /&gt;printf("The number is %d",count);&lt;br /&gt;}&lt;br /&gt;--------------------------------------------------------------------------------&lt;br /&gt;That concludes the first hour of your tutorial.Now this is a list of data type identifiers.&lt;br /&gt;&lt;br /&gt;%f=float %c=char %s =s tring %e=inputs number in scientific notation.&lt;br /&gt;&lt;br /&gt;As you saw in the first hour of our tutorial c is a language in which you program using functions. Functions are usually identified by the following characteristic:&amp;gt;&amp;gt; functionname() In c the main() function is essential. Think of it as a constant function for all your programs and all other functions can be accessed from the main().Before I show you how we do that let us have an example where we want to pause a program before the screen is changed. This would involve the foll- owing procedure:&amp;gt;&amp;gt; write a main function then use puts function to put statements on the screen like we did in section 1 above and then before the next set of puts statements declare a pause.&lt;br /&gt;This is how it is done:&lt;br /&gt;&lt;br /&gt;example-4 &lt;br /&gt;&lt;br /&gt;main()&lt;br /&gt;{&lt;br /&gt;puts("hello there");&lt;br /&gt;puts("what is your name?")&lt;br /&gt;pause()&lt;br /&gt;puts("It is nice to meet you")&lt;br /&gt;}&lt;br /&gt;pause();&lt;br /&gt;{&lt;br /&gt;int move_on;&lt;br /&gt;printf("press entere to continue");&lt;br /&gt;move_on=getchar();&lt;br /&gt;return(0);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;This above will pause until a key is pressed on the keyboard. Granted that the above program makes no sense from a practical point of view but I want to show is the use of another function inside the main function.&lt;br /&gt;&lt;br /&gt;C has many functions that comes with it. See your compiler manual to see what you have.Now we are going to look at conditions in c programming:&amp;gt;&amp;gt; the if command and do command.&lt;br /&gt;Here is an example of th if command:&lt;br /&gt;&lt;br /&gt;example-5 &lt;br /&gt;&lt;br /&gt;main()&lt;br /&gt;{&lt;br /&gt;float cost,tax,luxury,total;&lt;br /&gt;luxury=0.0;&lt;br /&gt;printf("Enter the cost of the item: ");&lt;br /&gt;scanf("%f", &amp;amp;cost);&lt;br /&gt;tax=cost*0.06;&lt;br /&gt;if(cost&amp;gt;40000.0)&lt;br /&gt;luxury=cost*0.005;&lt;br /&gt;total=cost+tax+luxury;&lt;br /&gt;printf("the total cost is %0.2f",total);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;This is a simple example of one if statement. Another If statement is the if -else statement. This can be shown as this &lt;br /&gt;&lt;br /&gt;example-6 &lt;br /&gt;&lt;br /&gt;if(cost &amp;gt;40000)&lt;br /&gt;{&lt;br /&gt;luxury=cost*0.005;&lt;br /&gt;printf("The luxury tax is %.2f",luxury);&lt;br /&gt;}&lt;br /&gt;else&lt;br /&gt;{&lt;br /&gt;puts("There is no luxury tax for the items");&lt;br /&gt;luxury=0.0;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Now the format a do statement is as follows:&lt;br /&gt;&lt;br /&gt;do&lt;br /&gt;{&lt;br /&gt;instruction;&lt;br /&gt;instruction&lt;br /&gt;}&lt;br /&gt;while(condition);&lt;br /&gt;&lt;br /&gt;The format for a FOR statement is as follows:&lt;br /&gt;&lt;br /&gt;for(initial=value;condition;increment)&lt;br /&gt;instruction;&lt;br /&gt;&lt;br /&gt;Now for an example:&lt;br /&gt;example-7 &lt;br /&gt;&lt;br /&gt;main()&lt;br /&gt;{&lt;br /&gt;int row,column;&lt;br /&gt;puts("\t\tMY Handy multipication table");&lt;br /&gt;for(row=1;tow&amp;lt;=10;row++)&lt;br /&gt;{&lt;br /&gt;for(column=1;column&amp;lt;=10;column++)&lt;br /&gt;printf("%6d", row*column);&lt;br /&gt;putchar('\n');&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;The output is a multipication table of 10x10 size.&lt;br /&gt;&lt;br /&gt;example-8 &lt;br /&gt;&lt;br /&gt;main()&lt;br /&gt;{&lt;br /&gt;int temp;&lt;br /&gt;float celsius;&lt;br /&gt;char repeat;&lt;br /&gt;do&lt;br /&gt;{&lt;br /&gt;printf("Input a temperature:");&lt;br /&gt;scanf("%d", &amp;amp;temp);&lt;br /&gt;celsius=(5.0/9.0)*(temp-32);&lt;br /&gt;printf(%d degrees F is %6.2f degrees celsius\n",temp, celsius);&lt;br /&gt;printf(("do you have another temperature?");&lt;br /&gt;repeat=getchar();&lt;br /&gt;putchar('\n');&lt;br /&gt;}&lt;br /&gt;while(repeat=='y'&lt;br /&gt;repeat=='y');&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;This shows you to how to use the do command for conditional programming in c.&lt;br /&gt;--------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;Now we are in our 3rd hour. &lt;br /&gt;&lt;br /&gt;Now we will concentrate on arrays:&lt;br /&gt;What is a flag?&lt;br /&gt;A flag is an algorithm that informs the program that a certain condition has occured.&lt;br /&gt;&lt;br /&gt;example-9 &lt;br /&gt;&lt;br /&gt;main()&lt;br /&gt;{&lt;br /&gt;int temp;&lt;br /&gt;float celsius;&lt;br /&gt;char repeat;&lt;br /&gt;char flag;&lt;br /&gt;do&lt;br /&gt;{&lt;br /&gt;flag='n";&lt;br /&gt;do&lt;br /&gt;{&lt;br /&gt;if(flag=='n')&lt;br /&gt;printf("Input a valid temperature :");&lt;br /&gt;else&lt;br /&gt;printf("input a valid temperature,stupid:");&lt;br /&gt;scanf("%d",&amp;amp;temp);&lt;br /&gt;flag='y';&lt;br /&gt;}&lt;br /&gt;while (temp&amp;lt;0&lt;br /&gt;temp &amp;gt;100);&lt;br /&gt;celsius=(5.0/9.0)*(temp-32);&lt;br /&gt;printf("%d degrees F is %6.2f degrees celsius\n",temp,celsius);&lt;br /&gt;printf("Do you have another temperature?");&lt;br /&gt;repeat=getchar();&lt;br /&gt;putchar('\n');&lt;br /&gt;}&lt;br /&gt;while (repeat=='y' &lt;br /&gt;repeat=='Y");&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;That was an example of how flags work.&lt;br /&gt;&lt;br /&gt;What is the break command?&lt;br /&gt;The break command ends the loop in which it is placed just as if the while condition, or the condition in a for loop becomes false. &lt;br /&gt;&lt;br /&gt;How to declare an array?&lt;br /&gt;An array can be defined as follows:&lt;br /&gt;&lt;br /&gt;int temp[5]={45,56,12,98,12};&lt;br /&gt;This would mean the following:&lt;br /&gt;temp[0]=45....temp[4]=12&lt;br /&gt;This was a single dimension array with 5 elements of the integer type.If you wanted to depict float variables just use float temp instead of int temp.&lt;br /&gt;Let us now see an example of using an array for two tasks.&lt;br /&gt;main()&lt;br /&gt;{&lt;br /&gt;int temps[31];&lt;br /&gt;int index,total;&lt;br /&gt;float average,celsius;&lt;br /&gt;total=0.0;&lt;br /&gt;for(index=0;index&amp;lt;31;index++)&lt;br /&gt;{&lt;br /&gt;printf("enter temperature #%d:",index);&lt;br /&gt;scanf("%d",&amp;amp;temps[index]);&lt;br /&gt;}&lt;br /&gt;for(index=0;index&amp;lt;31;index++)&lt;br /&gt;total+=temps[index];&lt;br /&gt;average=total/31.0&lt;br /&gt;printf("average is:%f\n\n", average);&lt;br /&gt;puts9"fahrenheit\tcelsius\n");&lt;br /&gt;for(index=0;index&amp;lt;31;index++)&lt;br /&gt;{&lt;br /&gt;celsius=(5.0/9.0)*(temps[index]-32);&lt;br /&gt;printf("%d\t\t%6.2f\n",temps[index],celsius);&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Now I am going to show you how to pass an array. When you pass an array you are actually passing the address of the array.&lt;br /&gt;&lt;br /&gt;example-10&lt;br /&gt;&lt;br /&gt;#define count 31&lt;br /&gt;main()&lt;br /&gt;{&lt;br /&gt;int temps[count];&lt;br /&gt;int index;&lt;br /&gt;float celsius;&lt;br /&gt;for(index=0; index&amp;lt; count;index++)&lt;br /&gt;{&lt;br /&gt;celsius=(5.0/9.0)*(heat[index]-32);&lt;br /&gt;printf("%d\t\t%6.2f\n",heat[index],celsius);&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;--------------------------------------------------------------------------------&lt;br /&gt;Now we are in the fourth hour of our tutorial.We are now going to look at 1)comparing strings 2)determining string lengths. 3) combining strings 4)structures.&lt;br /&gt;&lt;br /&gt;Comparing 2 strings:&amp;gt;&amp;gt; In c it is not possible to directly compare two strings so a statement like if (string1==string2) is not valid.&lt;br /&gt;Most c libraries contain a function called the strcmp().This is used to compare two strings in the following manner.&lt;br /&gt;&lt;br /&gt;if(strcmp(name1,name2)==0)&lt;br /&gt;puts("The names are the same");&lt;br /&gt;else&lt;br /&gt;puts("The names are not the same.");&lt;br /&gt;&lt;br /&gt;Determining string length.:&amp;gt;&amp;gt; This is done using the strlen() function.&lt;br /&gt;a simple programming bit showing this function looks like this:&lt;br /&gt;&lt;br /&gt;gets(name);&lt;br /&gt;count=strlen(name);&lt;br /&gt;printf("the string %s has %d characters",name,count);&lt;br /&gt;&lt;br /&gt;Combining strings:&amp;gt;&amp;gt;We use the function strcpy() an example follows:&lt;br /&gt;&lt;br /&gt;Example-11&lt;br /&gt;strcpy(name,"Adam");&lt;br /&gt;strcpy(name1,"and eve");&lt;br /&gt;strcat(name,name1);&lt;br /&gt;puts(name);&lt;br /&gt;&lt;br /&gt;The assumption being that adam and eve are two values of the variables name1 and name2. The end result is the combination of the 2 names.&lt;br /&gt;&lt;br /&gt;What are structures?&lt;br /&gt;A structure variable is a collection of other variables comprising different types.&lt;br /&gt;&lt;br /&gt;What are pointers?&lt;br /&gt;Ponters are variables which refer to the memory locations of other variables.&lt;br /&gt;&lt;br /&gt;This is how a structure is defined.&lt;br /&gt;example-12&lt;br /&gt;&lt;br /&gt;struct cd&lt;br /&gt;{&lt;br /&gt;char name[20];&lt;br /&gt;char description[40];&lt;br /&gt;char category[12];&lt;br /&gt;float cost;&lt;br /&gt;int number;&lt;br /&gt;};&lt;br /&gt;main()&lt;br /&gt;&lt;br /&gt;Notice how the main function comes after the definition of the structure. In the example above the cd was a cd disk and I was writing the definition of a cd collection program.&lt;br /&gt;--------------------------------------------------------------------------------&lt;br /&gt;Now in the fifth hour I will show you how to output your data onto a disk.After all what is the use of the program if you can't save output to a disk.&lt;br /&gt;Inorder to do this we have to use a pointer. The pointer in this case is FILE. The syntax to declare a file is :FILE*file_ponter;&lt;br /&gt;&lt;br /&gt;The link between your program, the file and the computer is established with the fopen() function using the syntax shown below: &lt;br /&gt;pointer=fopen("FILENAME","mode");&lt;br /&gt;&lt;br /&gt;For example to create a file by the name cd.dat we do the following:&lt;br /&gt;&lt;br /&gt;FILE*cdfile;&lt;br /&gt;cdfile=fopen("CD&amp;gt;DAT","w");&lt;br /&gt;If you will be reading from the file above use "r" instead "w" in the &lt;br /&gt;&lt;br /&gt;second sentence.&lt;br /&gt;In order to rpint information use the following command:&lt;br /&gt;FILE*cdfile;&lt;br /&gt;cdfile=fopen("PRN","w");&lt;br /&gt;A file is closed by using the fclose() command.Next we will look at an exam ple of reading from a file.&lt;br /&gt;&lt;br /&gt;example-13&lt;br /&gt;#include "stdio.h"&lt;br /&gt;main()&lt;br /&gt;{&lt;br /&gt;FILE*fp;&lt;br /&gt;int letter;&lt;br /&gt;if((fp=fopen("MYFILE","r"))==NULL)&lt;br /&gt;{&lt;br /&gt;puts("Cannot oepn the file");&lt;br /&gt;exit();&lt;br /&gt;}&lt;br /&gt;while((letter=fgetc(fp)) !=eof)&lt;br /&gt;printf("%c",letter);&lt;br /&gt;fclose(fp);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;The eof statement means end of file and this is included in the stdio.h header file which was declared at the start of the example. The stdio.h header file is one of many that comes with your compiler. So check your compiler specifics for other header files which will help perform other functions.&lt;br /&gt;&lt;br /&gt;Now that you went through this tutorial you should be in a position to write simple programs and save it to a disk so you can give it your friends or even your boss. In no way the depth of c can be done in 5 hours but the nut and bolts can be learned that fast.Wher e you go from there depends upon your ambitions and hard work.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-5616200562942249399?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/04/learn-c-by-example-in-just-5-hours.html</link><author>noreply@blogger.com (Manohar)</author><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-8763832966385774662</guid><pubDate>Mon, 12 Apr 2010 07:06:00 +0000</pubDate><atom:updated>2010-04-12T00:06:58.649-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Windows</category><category domain='http://www.blogger.com/atom/ns#'>Tips and Tricks</category><category domain='http://www.blogger.com/atom/ns#'>Downloads: Security</category><title>How to Hide Files Inside JPEG/GIF/PNG Images</title><description>We discussed various methods for hiding files inside your computer. Methods include super secure Truecrypt which offers military level security and handy MyLockbox to lock any folder. But all these methods require installation of software on your PC which is obviously visible to others.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;We are now going to talk about a unique method of hiding files that’s kinda sneaky and doesn’t require a third-party tool. This technique involves hiding files inside JPEG, GIF or PNG images. Sounds cool, right? Lets see how it is done.&lt;br /&gt;&lt;br /&gt;1. Create a folder in C drive. Give it a name, lets say Testfile. It’s location should be C:\Testfile.&lt;br /&gt;&lt;br /&gt;2. Now move all the files you want to hide inside this folder. Also move the image file in which you want to hide those files. Let’s say the files which I want to hide are FileA.txt and FileB.txt, and the image file is Image.jpg. We are taking .txt files as an example. You can take files of any format (.mp3, .doc, .divx, .flv etc.) and any number of files.&lt;br /&gt;&lt;br /&gt;3. Select both the files you want to hide (FileA.txt and FileB.txt in this case), right click and select “Add to Archive”. Make sure that you’ve got a file compression tool like WinZip or ZipGenius installed.&lt;br /&gt;&lt;br /&gt;4. Give it a name. I have given Compressed.rar. You can give it any name.&lt;br /&gt;&lt;br /&gt;5. Click on “Start” button. Type cmd in the search box. Press Enter.&lt;br /&gt;&lt;br /&gt;6. A command prompt window will open.&lt;br /&gt;&lt;br /&gt;7. Type cd \ and press Enter to get to the root directory.&lt;br /&gt;&lt;br /&gt;8. Now type cd Testfile to enter in the newly created directory.&lt;br /&gt;&lt;br /&gt;9. Type copy /b Image.png + Compressed.rar Secretimage.png and press Enter.&lt;br /&gt;&lt;br /&gt;10. When you look up at Testfile folder, you will find a new image file called SecretImage.png. This image file is created in previous step with the help of command. Secretimage is just a name given to the new image. You could give any name and extension (like xyz.jpg or xyz.png).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Both the files FileA.txt and FileB.txt are hidden inside this image file. You can delete rest of the files now.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;How to get our Files back from the image&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;That’s easy too. Just right click on the image (SecretImage.png) and open it with Winrar/Winzip/ZipGenius. You will see both the hidden files. Extract them anywhere on your computer.&lt;br /&gt;&lt;br /&gt;Update: From comments I came to know that few users are facing problem while opening image file in Winrar application. They can change the file extension of secret image file in which all the other files are hidden from .jpg to .RAR. (In the above case SecretImage.png to Secretimage.RAR) and then open it with the help of Winrar.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-8763832966385774662?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/04/how-to-hide-files-inside-jpeggifpng.html</link><author>noreply@blogger.com (Manohar)</author><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-4245740475833881127</guid><pubDate>Sat, 03 Apr 2010 11:29:00 +0000</pubDate><atom:updated>2010-04-03T04:29:51.281-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>MSI World</category><title>Forcing a Repair When Your Application Has No Entry Points [Active Setup]</title><description>The Active Setup method is now the preferred method for forcing a repair when your application has no entry points (i.e. no advertised shortcuts), but has Userprofile files And/Or Current User keys.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;These Files/Keys will need to put down/repaired for every new user that logs on. If there is no advertised shortcut then this will not happen. The solution to this is to use Active Setup.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Active Setup works as follows:&lt;/strong&gt;&lt;br /&gt;The keys location at [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Active Setup\Installed Components\[ProductCode]] tells the Active Setup to check for the corresponding HKCU key during logon [HKEY_CURRENT_USER\Software\ Microsoft\Active Setup\Installed Components\[ProductCode]]).&lt;br /&gt;&lt;br /&gt;If this HKCU does not exist it runs the command in the located in the Data field of the "StubPath" under the HKLM key (in this case a repair of user specific files and HKCU keys - msiexec /fou).&lt;br /&gt;&lt;br /&gt;If the application has no user specific files or files installing to the users profile then it isn't necessary to use the full /fou command - /fu can be used instead. This will ensure that only the HKCU registry information gets rewritten which will help reduce the time taken to repair all applications on a machine when a new user logs on.&lt;br /&gt;&lt;br /&gt;If the component that installs to the user profile, installs a file only (or no HCKU Information), a dummy HKCU key must be added to this component and set as key path for that component, for the active setup to repair.&lt;br /&gt;&lt;br /&gt;It is important that the HCKU active setup key is added to the msi otherwise the following could happen:&lt;br /&gt;&lt;br /&gt;User A uninstalls the application and then user B reinstalls the application, when user A goes to logon the current user active setup key will be present and active setup will not do a repair.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-4245740475833881127?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/04/forcing-repair-when-your-application.html</link><author>noreply@blogger.com (Manohar)</author><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-2893872810479244711</guid><pubDate>Sat, 03 Apr 2010 11:15:00 +0000</pubDate><atom:updated>2010-04-03T04:15:08.061-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>MSI World</category><title>How to Access Windows Installer Property in Deferred Execution</title><description>For some time I've wondered why I am not able to use MSI properties in deferred custom actions. It took me a lot of effort to find the solution. I do like to share knowledge so I wrote this up. Hope it helps you as you customize your MSIs.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Scope&lt;/strong&gt; :&lt;br /&gt;A Basic MSI installation program uses sequences of actions to determine the dialog boxes and operations the installation program should display and perform.&lt;br /&gt;&lt;br /&gt;There are two sequences used by a typical installation program:&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;User Interface sequence&lt;/strong&gt;: The User Interface sequence displays dialog boxes and queries the target system, but does not make any system changes. &lt;br /&gt;&lt;strong&gt;Execute sequence&lt;/strong&gt;: The Execute sequence performs system changes, but does not display a user interface. &lt;br /&gt;&lt;br /&gt;Similar to how we use variables in a programming language we can use different properties in Windows Installer Technology. It has many Predefined Custom Actions, and Installation author or Scripter can define custom properties to store any extra data needed at run time. A property can, for example, be set by the user in a dialog box, and then later be written to the registry.&lt;br /&gt;&lt;br /&gt;Property names are case sensitive. Two classes of MSI properties which we oftenly use.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Public properties &lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;Private properties&lt;/strong&gt; &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Public Properties&lt;/strong&gt; have names containing only uppercase letters (examples are USERNAME and INSTALLDIR, although INSTALLDIR is actually a directory Property but can use as PUBLIC Property). &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Private Properties&lt;/strong&gt;, whose names contain at least one lowercase letter (as in AdminUser or LogonUser).&lt;br /&gt;The values of public properties can be set at the command line, and their values are preserved when execution switches from the User Interface sequence to the Execute sequence. &lt;br /&gt;&lt;br /&gt;Private properties cannot have their values set at the command line, and are reset to their default values when execution switches from the User Interface sequence to the Execute sequence.&lt;br /&gt;&lt;br /&gt;During installation, the Execute sequence runs in two stages: immediate mode and deferred mode. Immediate mode walks through the actions in the Execute sequence, generating an internal, hidden installation script. This script contains, for example, instructions for what files, registry data, shortcuts to install. Immediate mode does not touch the target system. Note that the User Interface sequence runs only in immediate mode.&lt;br /&gt;&lt;br /&gt;The second stage of the Execute sequence, deferred mode, carries out the system changes described by this internal installation script. (deferred mode is performed only for actions between the built-in actions InstallInitialize and InstallFinalize.) During deferred execution, MSI property values are fixed and cannot be changed. Moreover, the values of only a handful of MSI properties can explicitly be read during deferred execution.&lt;br /&gt;&lt;br /&gt;During immediate execution, a VBScript custom action can read the value of an MSI property, using the Property of the Session object. &lt;br /&gt;For example:&lt;br /&gt;&lt;br /&gt;Getting Property Values in Custom Actions &lt;br /&gt;Get a property value during immediate mode &lt;br /&gt;Testusername=Session.Property("USERNAME") &lt;br /&gt;Msgbox Testusername &lt;br /&gt;same but VBscript Custom Action can not used in the Deferred custom action. &lt;br /&gt;&lt;br /&gt;As mentioned above, however, getting the value of an MSI property during deferred execution is somewhat more difficult, as deferred actions have access to only a very few built-in properties: ProductCode, UserSID, and CustomActionData. &lt;br /&gt;&lt;br /&gt;For example, a deferred launch-an-EXE action that uses "[INSTALLDIR]Help.txt" as its argument will have the INSTALLDIR property resolved during immediate mode and fixed during deferred mode. It is only custom actions that explicitly read a property value using Session.Property &lt;br /&gt;&lt;br /&gt;CustomActionData, that is used to read a property value in a script during deferred mode.&lt;br /&gt;&lt;br /&gt;Here you need to use: &lt;br /&gt;&lt;br /&gt;Testusername=Session.Property("CustomActionData")&lt;br /&gt;Msgbox Testusername&lt;br /&gt;This will be your script and will be called in deferred mode.&lt;br /&gt;&lt;br /&gt;Use the following methods:&lt;br /&gt;&lt;br /&gt;Click on the MSI Script tab and select installation mode as All Custom Actions, then select the option of Call VBScript From Installation. &lt;br /&gt;In the Call VBScript from Installation menu, under Details tab give a suitable Custom Action Name (Eg:EDIT_FILE), then browse and associate the VBScript (ie .vbs file) with the Script File option. &lt;br /&gt;&lt;br /&gt;Then under the location tab Uncheck No Sequence option and select Sequence as Normal Execute Immediate/Deferred and add the EDIT_FILE custom action before the InstallFinalize option and position it with the help of Move up or Move down options. Then put the condition as NOT REMOVE~="ALL" (This ensures that the custom action is called only during application installation and repair not during un-installation) &lt;br /&gt;&lt;br /&gt;Under the Properties Tab select In-Script Options as Deferred Execution-System Context and select the Processing option as Synchronous, Ignore exit code and click OK. &lt;br /&gt;&lt;br /&gt;Now set property for EDIT_FILE custom action (Now this Property Name should be Match with your VBScript Custom Action Name where CustomActionData is used) &lt;br /&gt;&lt;br /&gt;In Set Property, under details tab give a suitable name for the Custom Action Name and set property as EDIT_FILE .In Property Value we pass the following parameters [INSTALLDIR] &lt;br /&gt;&lt;br /&gt;Place it after InstallInitialize. &lt;br /&gt;&lt;br /&gt;Now you will be able to see the Public Property in deffered execution.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-2893872810479244711?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/04/how-to-access-windows-installer.html</link><author>noreply@blogger.com (Manohar)</author><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-4211489576426944950</guid><pubDate>Sat, 03 Apr 2010 11:01:00 +0000</pubDate><atom:updated>2010-04-03T04:01:37.952-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>MSI World</category><title>Easy way to refer to an MSI and its MST via .bat or .cmd file</title><description>The following is more useful when you have&amp;nbsp;MSI and an MST that are giving you hassle.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Every now and again I need to execute an MSI and an MST from a previously unknown network location - for instance SMS distribution share, Altiris deployment server etc. etc.&lt;br /&gt;&lt;br /&gt;Normally I'd need to browse to the network share and manually enter (or drag/drop) in Start/Run:&lt;br /&gt;msiexec /i [long and complicated path]\MyInstall.msi /t [the same long and complicated path]\MyTransform.mst&lt;br /&gt;&lt;br /&gt;Instead, I always create this simple bat file and keep it together with the msi/mst:&lt;br /&gt;&lt;br /&gt;@Echo Off&lt;br /&gt;msiexec /i "%~dp0MyMsiInstall.msi" TRANSFORMS="%~dp0MyTransform.mst"&lt;br /&gt;&lt;br /&gt;Notably:&lt;br /&gt;&lt;br /&gt;1. %~dp0 - returns the current path where this very bat file is (and where the msi and the mst files are too...)&lt;br /&gt;2. when you enclose the whole variable/filename in quotation marks (as above), you can have spaces in the path and/or the msi file name without any troubles...&lt;br /&gt;3. there is NO backslash ( \ ) between %~dp0 and the filename afterwards&lt;br /&gt;----&lt;br /&gt;&lt;br /&gt;Why do you ever need to run an msi/mst from a network share - for testing purposes of course...&lt;br /&gt;&lt;br /&gt;Sometimes because of a failed install or the whole script not executing or the ghastly 'I set the install job 2 hours ago and still no sign of it...'&lt;br /&gt;&lt;br /&gt;so, save some time, its precious...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-4211489576426944950?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/04/easy-way-to-refer-to-msi-and-its-mst.html</link><author>noreply@blogger.com (Manohar)</author><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-3388324189959424926</guid><pubDate>Fri, 19 Mar 2010 12:04:00 +0000</pubDate><atom:updated>2010-03-19T05:04:48.937-07:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Tips and Tricks</category><title>Secret Things VLC Media Player do</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S6Nn7N_zDHI/AAAAAAAAAng/XS1wl5ECnVo/s1600-h/vlc-media-player-v0-9-9.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S6Nn7N_zDHI/AAAAAAAAAng/XS1wl5ECnVo/s320/vlc-media-player-v0-9-9.jpg" vt="true" /&gt;&lt;/a&gt;&lt;/div&gt;here is list of those stuffs&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;1. Rip DVDs&lt;/strong&gt;: VLC includes a basic DVD ripper. You probably would never use it when there are better DVD rippers available, but it helps to know that you can in fact, get a decent quality DVD rip with VLC. To rip a movie follow these steps: Go to the Media menu and choose Convert/Save. Click on the Disc tab.&lt;br /&gt;* Here you can adjust the Starting Position and rip only specific titles or chapters.&lt;br /&gt;* Enter file name making sure to end with .MPG, and start ripping.&lt;br /&gt;* Click Save.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;2. Record videos&lt;/strong&gt;: With the new VLC, you can record videos during playback. The record button is hidden by default. To see it, click on View&amp;gt;Advanced Control. The record button will now appear. Clicking on the button while playing a movie or video will start recording. Clicking again will stop recording.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;3. Play RAR files&lt;/strong&gt;: Do you know VLC can play videos zipped inside RAR files? They play like normal video files and you can even use the seek bar. If the RAR file is split into several files, no problem. Just load the first part (.part001.rar ) and it will automatically take the rest of the parts and play the whole file.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;4. Play in ASCII mode&lt;/strong&gt;: VLC media player has an amusing ability, to playback movies in ASCII art. To enable ASCII mode, open VLC media player and click on Tools&amp;gt;Preferences. Open the section ?Video? section and under ?Output? select ?Color ASCII art video output? from the drop down menu. Save it. Now play any video file to enjoy the ASCII art.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;5. Listen to online radio&lt;/strong&gt;: VLC includes hundreds of Shoutcast radio stations. You just need to enable it through Media&amp;gt;Services Discovery&amp;gt;Shoutcast radio listings. Now, open the Playlist and browse through the stations.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;6. Convert Audio and Video formats&lt;/strong&gt;: In VLC you can convert video and audio files from one format to another. Several different formats are supported like MP4, WMV, AVI, OGG, MP3 etc. To access the converter:&lt;br /&gt;* Go to Media&amp;gt;Convert/Save.&lt;br /&gt;* Load the file you want to convert using the Add button and click Convert.&lt;br /&gt;* Now choose the output format and output file location.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;7. Download YouTube and other online videos&lt;/strong&gt;: First grab the URL of the YouTube video page. Now click on Media&amp;gt;Open Network stream. Paste the URL and click Play.&lt;br /&gt;Once VLC starts streaming the video, click Tools&amp;gt;Codec Information and at the bottom of the window you will see a Location box. Copy the URL and paste it on your browser?s address bar. The browser will now download the file which you can save it to your hard disk. Alternatively, you can record the video.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-3388324189959424926?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/03/secret-things-vlc-media-player-do.html</link><author>noreply@blogger.com (Manohar)</author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S6Nn7N_zDHI/AAAAAAAAAng/XS1wl5ECnVo/s72-c/vlc-media-player-v0-9-9.jpg' height='72' width='72'/><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-1163626426024662473</guid><pubDate>Wed, 24 Feb 2010 06:22:00 +0000</pubDate><atom:updated>2010-02-23T22:22:37.628-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Windows</category><category domain='http://www.blogger.com/atom/ns#'>Tips and Tricks</category><category domain='http://www.blogger.com/atom/ns#'>Downloads: Security</category><category domain='http://www.blogger.com/atom/ns#'>Desktop Related Solution</category><category domain='http://www.blogger.com/atom/ns#'>Downloads: Utilities</category><title>Get All information of Your PC.</title><description>The Belarc Advisor builds a detailed profile of your installed software and hardware, missing Microsoft hotfixes, anti-virus status, CIS (Center for Internet Security) benchmarks, and displays the results in your Web browser.&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S4TEhzTVhdI/AAAAAAAAAnU/mqA-2cUijQ8/s1600-h/belarc01_thumb.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" ct="true" src="http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S4TEhzTVhdI/AAAAAAAAAnU/mqA-2cUijQ8/s320/belarc01_thumb.gif" /&gt;&lt;/a&gt;&lt;/div&gt;All of your PC profile information is kept private on your PC and is not sent to any web server. &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Operating Systems&lt;/strong&gt;: Runs on Windows 7, 2008 R2, Vista, 2008, 2003, XP, 2000, NT 4, Me, 98, and 95. Both 32-bit and 64-bit Windows is supported.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Browsers: Runs on Internet Explorer, Firefox, Safari, Opera, and many others.&lt;br /&gt;&lt;br /&gt;File size: 2210 KB.&lt;br /&gt;&lt;a href="http://www.technize.com/?dl_id=254"&gt;Belarc Advisor&lt;/a&gt;&amp;nbsp;or &lt;a href="http://www.belarc.com/free_download.html"&gt;Original Link&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-1163626426024662473?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/02/get-all-information-of-your-pc.html</link><author>noreply@blogger.com (Manohar)</author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S4TEhzTVhdI/AAAAAAAAAnU/mqA-2cUijQ8/s72-c/belarc01_thumb.gif' height='72' width='72'/><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-8010912809053440234</guid><pubDate>Tue, 23 Feb 2010 12:05:00 +0000</pubDate><atom:updated>2010-02-23T04:09:30.085-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Graphics</category><category domain='http://www.blogger.com/atom/ns#'>Tips and Tricks</category><category domain='http://www.blogger.com/atom/ns#'>Hacking</category><category domain='http://www.blogger.com/atom/ns#'>Downloads: Utilities</category><title>Capture and download streaming media with Live Downloader</title><description>Live Downloader is a free software that makes it possible to capture the URLs of streaming video and audio from sites like Youtube, Vimeo, MySpace, DailyMotion etc and download the video (or audio) to your hard disk. The program is not limited to only these particular sites - it works across a majority of streaming media sites and Internet radio stations.&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S4PDQMxbX_I/AAAAAAAAAnE/OLLp5CYYyCA/s1600-h/live-downloader%5B2%5D.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" ct="true" src="http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S4PDQMxbX_I/AAAAAAAAAnE/OLLp5CYYyCA/s320/live-downloader%5B2%5D.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;a href="http://www.live-downloader.com/"&gt;Live Downloader&lt;/a&gt; keeps running in the background and monitors all traffic between your network adapter and the Internet. Whenever it detects any streaming video or audio, it will automatically display a download window using which you can download the stream or send it to a queue for later download. It will also show a small preview of the video. &lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_ZuFXd-S60ZQ/S4PDmKcOlYI/AAAAAAAAAnM/QtndQ-OpjX4/s1600-h/live-downloader-notifier%5B2%5D.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" ct="true" src="http://4.bp.blogspot.com/_ZuFXd-S60ZQ/S4PDmKcOlYI/AAAAAAAAAnM/QtndQ-OpjX4/s320/live-downloader-notifier%5B2%5D.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;strong&gt;The Good&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Supports a large number of streaming protocols &lt;br /&gt;Support all browsers: Firefox, Internet Explorer, Opera etc. &lt;br /&gt;Support large number of sites including Youtube, Dailymotion, MySpace and &lt;br /&gt;TV Show sites, movie sites as well as naughty sites like PornHub, YouPorn, Tube8 etc. &lt;br /&gt;Automatically names and tags your video and MP3 files with the correct names. &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;The Bad&lt;/strong&gt;&lt;br /&gt;Cannot manually add URL to download media files &lt;br /&gt;Could not get it to work on Windows 7&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-8010912809053440234?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/02/capture-and-download-streaming-media.html</link><author>noreply@blogger.com (Manohar)</author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S4PDQMxbX_I/AAAAAAAAAnE/OLLp5CYYyCA/s72-c/live-downloader%5B2%5D.png' height='72' width='72'/><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-1007276675931035685</guid><pubDate>Mon, 22 Feb 2010 07:37:00 +0000</pubDate><atom:updated>2010-02-21T23:37:34.259-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Tips and Tricks</category><category domain='http://www.blogger.com/atom/ns#'>Hacking</category><category domain='http://www.blogger.com/atom/ns#'>Downloads: Security</category><category domain='http://www.blogger.com/atom/ns#'>Downloads: Utilities</category><title>Safeguarding Removable Disk Data By Creating Encrypted Password Protected Hidden Partition</title><description>We often have to share our removable disk drives with friends and colleagues making our personal data prone to misuse and theft, to sort this out all we need to do is to create an hidden, encrypted and password protected partition on our USB drive for saving our personal data safely away from public eyes. &lt;br /&gt;Rohos Mini Drive is a free USB flash-drive encryption utility letting users create hidden and password protected partition on any removable storage device, the portable encryption tool offers “on-the-fly” encryption even in traveler mode securing data efficiently. &lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S4IyzCg8dHI/AAAAAAAAAms/Z7_HpoqQmAU/s1600-h/rohos-usb-data-protection-3.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" ct="true" src="http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S4IyzCg8dHI/AAAAAAAAAms/Z7_HpoqQmAU/s320/rohos-usb-data-protection-3.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;Using Rohos Mini Drive is very easy all you need to do is to create a hidden secured partition once on your drive and then use portable Rohos executable on your flash disk-drive to enter the correct password and access the content.&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;strong&gt;A simple step-by-step walk-through on how to create a secure password protected partition on your USB drive using Rohos Mini Drive :&lt;/strong&gt;&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;1.&lt;a href="http://www.rohos.com/rohos_mini.exe"&gt;Download and install Rohos Mini Drive&lt;/a&gt;, Plug-in your USB drive to the computer and run the application.&lt;br /&gt;&lt;br /&gt;2.Click on “Setup USB Key”.&lt;br /&gt;&lt;br /&gt;3.The program will auto-detect drive properties and suggest a configuration,however you can customize the partition size, disk letter and file system by clicking the [Change…] option.&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S4IzlG3o7bI/AAAAAAAAAm0/pyvm4AK-EOM/s1600-h/rohos-usb-data-protection-4.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" ct="true" src="http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S4IzlG3o7bI/AAAAAAAAAm0/pyvm4AK-EOM/s320/rohos-usb-data-protection-4.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S4IzpPVaAhI/AAAAAAAAAm8/WNh60qljg7I/s1600-h/rohos-usb-data-protection-5.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" ct="true" src="http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S4IzpPVaAhI/AAAAAAAAAm8/WNh60qljg7I/s320/rohos-usb-data-protection-5.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;4. Now enter a password and click on “Create disk”.&lt;br /&gt;5. Rohos Mini Drive will take some time and notify when the process gets completed.&lt;br /&gt;6. After the process of creating Rohos disk is completed you’ll see your disk details on Rohos Mini main window.&lt;br /&gt;7. Portable Application allows working with a password protected partition on any PC, you just click on “Rohos Mini” icon on the USB flash drive root folder and enter the correct password to access your secured data.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-1007276675931035685?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/02/safeguarding-removable-disk-data-by.html</link><author>noreply@blogger.com (Manohar)</author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S4IyzCg8dHI/AAAAAAAAAms/Z7_HpoqQmAU/s72-c/rohos-usb-data-protection-3.jpg' height='72' width='72'/><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-1008010970380259324</guid><pubDate>Thu, 18 Feb 2010 10:09:00 +0000</pubDate><atom:updated>2010-02-18T02:09:40.287-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Graphics</category><category domain='http://www.blogger.com/atom/ns#'>Tutorials</category><title>Aviary – Free Set of Editing Tools</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S30RnTvKlII/AAAAAAAAAmk/piXxmFnzHWQ/s1600-h/freeeditingtools.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" ct="true" src="http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S30RnTvKlII/AAAAAAAAAmk/piXxmFnzHWQ/s320/freeeditingtools.png" /&gt;&lt;/a&gt;&lt;/div&gt;Looking for a free online audio editor? What about a screen capture program? Or an image editor? Well, what if you had all those tools and more all on one site!? Aviary is a free site that you can use to edit images, generate color palettes, editor vector images, and lots more.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://aviary.com/"&gt;Aviary&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-1008010970380259324?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/02/aviary-free-set-of-editing-tools.html</link><author>noreply@blogger.com (Manohar)</author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S30RnTvKlII/AAAAAAAAAmk/piXxmFnzHWQ/s72-c/freeeditingtools.png' height='72' width='72'/><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-4726922182058893708</guid><pubDate>Tue, 16 Feb 2010 07:20:00 +0000</pubDate><atom:updated>2010-02-15T23:20:32.546-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>BlueScreen Error</category><category domain='http://www.blogger.com/atom/ns#'>Windows</category><category domain='http://www.blogger.com/atom/ns#'>Desktop Related Solution</category><title>Solving Blue Screen Errors and Popup Error Messages</title><description>On windows-based computers there are 2 general types of computer errors. The first being pop up errors that occur when a program crashes or when a program executes a command that the computer cannot process. The second type of computer error is often nicknamed the blue screen of death because just before the computer reboots itself, a blue screen appears.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The blue screen of death is most often caused by something called a device driver conflict, meaning that one of the pieces of software that controls a printer, scanner, modem, or other device has made a request that compromised the stability of the computer's basic functions. Both types of computer error are difficult to troubleshoot, but this article will attempt to give some basic guidance.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Troubleshooting Computer Error Popups&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Computer error pop-ups often occur as a result of a malfunctioning piece of software. Windows is designed to give each program a portion of the system's resources, and if a program oversteps these bounds the system will often terminate the program automatically to prevent it from destabilizing the entire system. When this occurs write down the computer error code and attempt a Google search using that error message as the search text.&lt;br /&gt;Quite often the search will lead to a forum post or knowledge base entry that shows that others have had the same problem in the past. If this is the case by doing a more thorough search it is often possible to find the specific cause of the error and occasionally a solution to the problem.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Blue Screen Computer Errors&lt;/strong&gt;&lt;br /&gt;The most frustrating computer errors are the blue screen errors that typically occur with device driver conflicts. Although blue screen errors can be caused by many different things, one of the first things to consider when troubleshooting this type of error is to think about what has changed recently with the computer. Has a new peripheral been installed?&lt;br /&gt;&lt;br /&gt;Has the computer recently installed a driver update for an existing printer or other device? If the computer was working fine and suddenly develops repeated blue screen of death style computer errors then something has changed that is causing the error. Remove the new device and see if the problem continues.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Like with pop-up errors, it may be tempting to write down the cryptic computer error message that flashes on the blue screen prior to the system rebooting. For the vast majority of fatal system errors this information will sadly not provide any real assistance toward solving the problem. In case of a fatal computer error the best troubleshooting course of action is to do as described in the previous paragraph, remove any new devices or drivers and if all else fails contact the computer's manufacturer.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-4726922182058893708?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/02/solving-blue-screen-errors-and-popup.html</link><author>noreply@blogger.com (Manohar)</author><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-4044283034099493880</guid><pubDate>Tue, 16 Feb 2010 06:30:00 +0000</pubDate><atom:updated>2010-02-15T22:30:57.224-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>BlueScreen Error</category><category domain='http://www.blogger.com/atom/ns#'>Tutorials</category><category domain='http://www.blogger.com/atom/ns#'>Windows</category><category domain='http://www.blogger.com/atom/ns#'>Desktop Related Solution</category><title>THE BLUE SCREEN OF DEATH</title><description>Users of windows system are sure to have experienced, at one point or another, the terrors of “The Fatal Exception”, commonly called the "Blue Screen Of Death", or BSOD. Although the BSOD has largely been thrown onto the software slag heap, in Vista, crashes haven't been totally banished. When windows encounters a condition that compromises safe system operation (i.e. a “bug”), the system halts. This condition is called a 'bug check'. It is also commonly referred to as a system crash, a kernel error, a system fault, or a Stop error. When Windows encounters such a serious error that forces it to stop running, it displays a BLUE SCREEN OF DEATH or just 'lovingly' called BSOD !&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;In Vista (and Windows 7), unlike XP, where the system was essentially manual, the Windows Error Reporting has been improved &amp;amp; streamlined. and improved in Windows 7 &amp;amp; Vista. One had to follow-up to see if a solution had become available. This was a rather painful process ! In Vista / 7, this entire reporting and follow-up process is automated. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;These days a Vista / 7 user is more often likely to see a message as follows : "Microsoft Windows Operating System is not responding." And users are given two possibilities. They can either "Close the program" or "Wait for the program to respond." One waits in the hope that the issue will be resolved; or else then one just closes the program and gets prepared to lose information. Atleast, these messages look less daunting. &lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S3oyabxdfoI/AAAAAAAAAmE/1khMcOdYjQY/s1600-h/notresp.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" ct="true" src="http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S3oyabxdfoI/AAAAAAAAAmE/1khMcOdYjQY/s320/notresp.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;The BSODs on the other hand were/are quite traumatic and frustrating, to say the least! &lt;br /&gt;&lt;br /&gt;The exact text of a Stop error varies, according to what caused the error. But the format is standardized and is made up of 3 parts:&lt;br /&gt;&lt;br /&gt;PART 1.&lt;br /&gt;Symbolic error name: This is the Stop Error message that is given to the OS and corresponds to the Stop Error number that appears. &lt;br /&gt;&lt;br /&gt;PART 2.&lt;br /&gt;Troubleshooting recommendations: This text applies to all Stop Errors of that particular type. &lt;br /&gt;&lt;br /&gt;PART 3.&lt;br /&gt;Error number and parameters: Its the bugcheck information. The text following the word STOP includes the error number, in hexadecimal notation, and up to four parameters that are typical of this error type.&lt;br /&gt;&lt;br /&gt;In general, there are not too many options for any type of recovery. normally, one tries to just "reboot" the pc in the hope that the BSOD occurred because of a rare condition of some driver which was overlooked in coding and testing. But if the BSOD persists, there are some tactics that may be employed to repair the system there are over 250 "documented" BSOD codes. &lt;br /&gt;&lt;br /&gt;Take for example, the most common BSOD :&lt;br /&gt;&lt;br /&gt;Bugcode 0xA - IRQL_NOT_LESS_OR_EQUAL&lt;br /&gt;This is a fairly common BSOD that occurs when a driver has illegally accessed a memory location while NT is operating at a specific IRQL. This is a driver coding error, akin to trying to access an invalid memory location. &lt;br /&gt;&lt;br /&gt;Parameters:&lt;br /&gt;1 - memory location that was referenced&lt;br /&gt;2 - IRQL at time of reference&lt;br /&gt;3 - 0 == read, 1 == write&lt;br /&gt;4 - code addressed which referenced memory&lt;br /&gt;Recovery/Workaround:&lt;br /&gt;There is none. This is a fatal error and is a driver coding error. &lt;br /&gt;&lt;br /&gt;Usually when a BSOD occurs, it stays for a second before the PC immediately restarts. This way we are unable to read what is written. To get around it, one has to disable the auto pc-restart option from the StartUp &amp;amp; System Recovery settings. Knowing the error code, can help identify the problem/solution.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Disable UAC. Control Panel &amp;gt; System And Maintenance &amp;gt; System &amp;gt; Advanced System Settings &amp;gt; Advanced tab &amp;gt; Under Startup And Recovery &amp;gt; Click Settings &amp;gt; Clear the Automatically Restart check box &amp;gt; click OK. Enable UAC.&lt;br /&gt;&lt;br /&gt;You can download The Blue Screen Of Death (BSOD) Primer from &lt;a href="http://www.sun.com/desktop/products/sunpci/bsod.pdf"&gt;here&lt;/a&gt; It opens as a pdf file in your browser. Click on 'save a copy' to save it. &lt;br /&gt;In a lighter vein; If you really fall in love with the BSOD, you can download the BSOD screensaver from &lt;a href="http://www.sysinternals.com/Utilities/BlueScreen.html"&gt;here&lt;/a&gt;. &lt;br /&gt;To create your own BSOD check here - procedure mentioned applies to XP. &lt;br /&gt;Incidentally &lt;a href="http://aumha.org/a/stop.htm"&gt;Aumha&lt;/a&gt; is a very good resource, which gives solutions to most BSOD's. &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;You can also get your BSOD auto-analysed at the &lt;/strong&gt;&lt;a href="http://oca.microsoft.com/en/404.aspx?aspxerrorpath=/en/Welcome.aspx"&gt;&lt;strong&gt;Microsoft® Online Crash Analysis&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;. If you experience a Blue Screen crash event, or Stop error, while using Microsoft Windows, you can upload the error report to this site for analysis. Microsoft will actively analyzes all error reports and prioritizes them based on the number of customers affected by the Stop error covered in the error report and try to determine the cause of the Stop error you have submit.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="color: #cc0000;"&gt;HOW TO DEBUG MEMORY DUMPS.&lt;/span&gt;&lt;/strong&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;To know how to debug Memory Dumps so that you can find out the cause for your BSOD, download and install the &lt;a href="http://www.microsoft.com/whdc/devtools/debugging/installx86.mspx"&gt;Microsoft Debugging Tools&lt;/a&gt;. Make certain that your pagefile still resides on the system partition, otherwise WIndows will not be able to save the debug files. There is more information on this here at &lt;a href="http://forums.majorgeeks.com/showthread.php?t=35246"&gt;Majorgeeks&lt;/a&gt; and &lt;a href="http://www.microsoft.com/whdc/devtools/debugging/debugstart.mspx"&gt;Microsoft.&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;&lt;span style="color: #cc0000;"&gt;&lt;strong&gt;TROUBLE-SHOOTING WINDOWS VISTA STOP ERRORS / BSOD's.&lt;/strong&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt;First &amp;amp; Foremost, see if a System Restore or Last Known Good Configuration is able to resolve this issue. &lt;br /&gt;&lt;br /&gt;Else, then run your ant-virus and anti-spyware and your PC Junk/Registry Cleaner. After this, Run the Windows Check Disk Utility. &lt;br /&gt;&lt;br /&gt;Then try to identify if you've made any software or hardware change or modification. &lt;br /&gt;&lt;br /&gt;In most cases, software is the victim and not the cause of BSOD's. So don’t rule out hardware problems. It could be damaged hard disks, defective physical RAM, overheated CPU chips or anything else !&lt;br /&gt;&lt;br /&gt;Check if you can see a driver name in the error details. If you can, then simply disabling, removing, or rolling back that driver to an earlier version can help solve that problem. Network interface cards, disk controllers and Video Adapters are the culprits, most often. &lt;br /&gt;Check your memory. Use Vista's Memory Diagnostic Tool. Go to Control Panel and type "memory" in the Search box. Under Administrative Tools, click Diagnose Your Computer’s Memory Problems. In the Windows Memory Diagnostics Tool, shown here, select one of the options. &lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_ZuFXd-S60ZQ/S3o2iHYBNdI/AAAAAAAAAmM/MgbYujkVLQc/s1600-h/mem.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" ct="true" src="http://2.bp.blogspot.com/_ZuFXd-S60ZQ/S3o2iHYBNdI/AAAAAAAAAmM/MgbYujkVLQc/s320/mem.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;Check your system BIOS carefully Is an update available from the manufacturer of the system or motherboard? Check the BIOS documentation carefully; resetting all BIOS options to their defaults can sometimes resolve an issue caused by overtweaking.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Check if you are you low on system resources? Sometimes a critical shortage of Disk Space or RAM can cause BSOD's. &lt;br /&gt;&lt;br /&gt;Check if system file has been damaged? Work in Safe Mode, as only the core drivers and services are activated. If your system starts in Safe Mode but not normally, you very likely have a problem driver. Try running Device Manager in Safe Mode and uninstalling the most likely suspect. Or run System Restore in Safe Mode. &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;For analyzing Crash Dumps, &lt;/strong&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/bb204861(VS.85,printer).aspx"&gt;&lt;strong&gt;this MSDN print-link&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt; , &lt;/strong&gt;&lt;a href="http://www.dumpanalysis.org/blog/"&gt;&lt;strong&gt;DumpAnalysis&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt; &amp;amp; &lt;/strong&gt;&lt;a href="http://www.nirsoft.net/utils/blue_screen_view.html"&gt;&lt;strong&gt;BlueScreenView&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt; Links may help you.&lt;/strong&gt; &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="color: #cc0000;"&gt;WHAT TO DO IF YOU SUSPECT THAT A DRIVER IS CAUSING BSOD's.&lt;/span&gt;&lt;/strong&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The Driver Verifier Manager &amp;amp; the Device Manager have been discussed &lt;a href="http://www.winvistaclub.com/t79.html"&gt;here&lt;/a&gt; in detail. However it is also being briefly touched upon below ! &lt;br /&gt;If you suspect that a buggy device driver is at fault for the BSOD's, call upon a lesser known but powerful trouble shooting tool called as the Driver Verifier Manager ! Enter verifier in the search bar and hit enter to bring up Verifier.exe . Run As Administrator. This tool helps you to actually identify the flawed driver. &lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S3o3wWVN6KI/AAAAAAAAAmU/8me9wu9f57k/s1600-h/dvm.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" ct="true" src="http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S3o3wWVN6KI/AAAAAAAAAmU/8me9wu9f57k/s320/dvm.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;Now select "Create Standard Settings". Next, select the type of &lt;a href="http://www.winvistaclub.com/t8.html"&gt;drivers&lt;/a&gt; you want to verify. Unsigned Vista Drivers are a likely cause of problems, as they are created for older versions of Windows. Click Next, till completion. &lt;br /&gt;&lt;br /&gt;Driver Verifier Manager works in the following manner. Instead of your machine throwing up a undecipherable BSOD at you, at any time, you can make Driver Verifier to stop your computer at start up, with a BSOD which will explain the actual problem, rather accurately! You can then choose to resolve the problem by either updating, rolling back or uninstalling the offending driver. &lt;br /&gt;Please do note that in the rare eventuality the the Driver Verifier Manager does find a non-conforming driver, there could be possibility that it may not be the offending one. So do exercise extreme caution. Regard the identified Driver/s with suspicious and exercise your best judgment in such case. &lt;br /&gt;Having narrowed down to the problematic Driver, you have 3 options : Update, Roll Back or Uninstall the Device Driver. &lt;br /&gt;To do that, open Device Manager. Open the properties dialog box for the device, and use the following buttons on the Driver tab to perform maintenance tasks: &lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S3o6O_2XcLI/AAAAAAAAAmc/jvslGvDqidM/s1600-h/devmgr.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" ct="true" src="http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S3o6O_2XcLI/AAAAAAAAAmc/jvslGvDqidM/s320/devmgr.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;strong&gt;Update Driver&lt;/strong&gt; : This will start the Hardware Update Wizard.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Roll Back Driver&lt;/strong&gt; : This will uninstall the most recently updated driver and will roll back your configuration, to the earlier version.&lt;br /&gt;&lt;strong&gt;Uninstall Driver &lt;/strong&gt;: This will uninstall completely the drivers files and registry settings for the selected hardware. &lt;br /&gt;Best to always create a system restore point first. &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="color: #cc0000;"&gt;15 MOST COMMON STOP ERRORS / BSOD's IN WINDOWS. &lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;STOP 0x000000D1 or DRIVER_IRQL_NOT_OR_EQUAL&lt;/strong&gt;&lt;br /&gt;Probably the most common BSOD ! Occurs when a driver has illegally accessed a memory location while NT is operating at a specific IRQL. This is a driver coding error, akin to trying to access an invalid memory location. Recovery/Workaround:Usually none. But these may help KB810093 , KB316208 &amp;amp; KB810980.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;STOP 0x0000000A or IRQL_NOT_LESS_OR_EQUAL&lt;/strong&gt;&lt;br /&gt;A kernel-mode process or driver attempted to access a memory location without authorization. This Stop error is typically caused by faulty or incompatible hardware or software. The name of the offending device driver often appears in the Stop error and can provide an important clue to solving the problem. If the error message points to a specific device or category of devices, try removing or replacing devices in that category. If this Stop error appears during Setup, suspect an incompatible driver, system service, virus scanner, or backup program. This KB314063 may show you the direction.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;STOP 0x00000050 or PAGE_FAULT_IN_NONPAGED_AREA&lt;/strong&gt;&lt;br /&gt;A hardware driver or system service requested data that was not in memory. The cause may be defective physical memory or incompatible software,especially remote control and antivirus programs. If the error occurs immediately after installing a device driver or application, try to use Safe Mode to remove the driver or uninstall the program. For more information, see KB894278 &amp;amp; KB183169.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;STOP 0x000000C2 or BAD_POOL_CALLER&lt;/strong&gt;&lt;br /&gt;A kernel-mode process or driver attempted to perform an illegal memory allocation. The problem can often be traced to a bug in a driver or software. It is also occasionally caused by a failure in a hardware device. For more information, see KB265879.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;STOP OX000000ED or UNMOUNTABLE_BOOT_VOLUME&lt;/strong&gt;&lt;br /&gt;Occurs if Windows if unable to access the volume containing the boot files. But if you get this message while updating TO Vista, check that you have compatible drivers for the disk controller and also re-check the drive cabling, and ensure that it is configured properly. If you're reusing ATA-66 or ATA-100 drivers, make sure you have an 80-connector cable, and not the standard 40-connector IDE cable. See KB297185 and KB315403.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;STOP 0x0000001E or KMODE_EXCEPTION_NOT_HANDLED&lt;/strong&gt;&lt;br /&gt;The Windows kernel detected an illegal or unknown processor instruction, often the result of invalid memory and access violations caused by faulty drivers or hardware devices. The error message often identifies the offending driver or device. If the error occurred immediately after installing a driver or service, try disabling or removing the new addition. &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;STOP 0x00000024 or NTFS_FILE_SYSTEM&lt;/strong&gt;&lt;br /&gt;A problem occurred within the NTFS file-system driver. A similar Stop error, 0x23, exists for FAT32 drives. The most likely cause is a hardware failure in a disk or disk controller. Check all physical connections to all hard disks in the system and run CheckDisk. KB228888 will help you. &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;STOP 0x0000002E or DATA_BUS_ERROR&lt;/strong&gt;&lt;br /&gt;Failed or defective physical memory (including memory used in video adapters) is the most common cause of this Stop error. The error may also be the result of a corrupted hard disk or a damaged motherboard.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;STOP 0x0000003F or NO_MORE_SYSTEM_PTES&lt;/strong&gt;&lt;br /&gt;Your system ran out of page table entries (PTEs). The cause of this relatively uncommon error may be an out-of-control backup program or a buggy device driver. For more information, see KB256004.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;STOP 0x00000077 or KERNEL_STACK_INPAGE_ERROR&lt;/strong&gt;&lt;br /&gt;The system has attempted to read kernel data from virtual memory (the page file) and failed to find the data at the specified memory address. This Stop Error can be caused by a variety of problems, including defective memory, a malfunctioning hard disk, an improperly configured disk controller or cable, corrupted data, or a virus infection. For additional information, click KB228753.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;STOP 0x0000007F or UNEXPECTED_KERNEL_MODE_TRAP&lt;/strong&gt;&lt;br /&gt;Most likely due to a Hardware failure, like defective memory chips, mismatched memory modules, a malfunctioning CPU, or a failure in your fan or power supply are the probable reasons for this BSOD. Can also occur if you have overclocked your CPU. The message gives more details. For more help see KB137539.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;STOP 0x000000D8 or DRIVER_USED_EXCESSIVE_PTES&lt;/strong&gt;&lt;br /&gt;This indicated that a poorly written driver is causing your computer to request large amounts of kernel memory. Troubleshooting suggestions are identical to those found in the STOP 0X3F message. KB256004 will help you&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;STOP 0X000000EA or THREAD_STUCK_IN_DEVICE_DRIVER&lt;/strong&gt;&lt;br /&gt;Could occur after you install a new video adapter or an updated (and poorly written) video driver. Replacing the video adapter or using a different video driver could help. See KB293078.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;STOP 0XC000021A or STATUS_SYSTEM_PROCESS_TERMINATED&lt;/strong&gt;&lt;br /&gt;Occurs if there is a serious security problem with Windows. A subsystem, such as Winlogon or the CSRSS is compromised; or due to a mismatch in system files; or if system permissions have been incorrectly modified. A common cause of this problem is some 3rd-party program. Try to identify any new program which you have installed and uninstall it.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;STOP 0XC00000221 or STATUS_IMAGE_CHECKSUM_MISMATCH&lt;/strong&gt;&lt;br /&gt;This indicates a damaged page file; or disk or file corruption; or a faulty hardware. The error will indicate the exact nature and the name of the damaged system file. You may have to use the Windows recovery Environment or a System Restore or Last Known Good Configuration to resolve this issue.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-4044283034099493880?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/02/blue-screen-of-death.html</link><author>noreply@blogger.com (Manohar)</author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S3oyabxdfoI/AAAAAAAAAmE/1khMcOdYjQY/s72-c/notresp.jpg' height='72' width='72'/><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-1173266114517013952</guid><pubDate>Mon, 15 Feb 2010 11:50:00 +0000</pubDate><atom:updated>2010-02-15T03:50:00.395-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Graphics</category><category domain='http://www.blogger.com/atom/ns#'>Tips and Tricks</category><category domain='http://www.blogger.com/atom/ns#'>Downloads: Utilities</category><title>How To Download Videos From YouTube To Your PC</title><description>There is a tool known as YouTube Downloader HD from which you can download YouTube videos without any plugin.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1) Go to YouTube Video Downloader HD official website.&lt;br /&gt;2) Download Youtube Video Downloader HD software (2 MB) on your PC.&lt;br /&gt;3) Install the software on your computer.&lt;br /&gt;4) Run the software.&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S3k0PMZTBFI/AAAAAAAAAls/-836Kpwue08/s1600-h/youtubevideodownloaderhd_thumb.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" ct="true" src="http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S3k0PMZTBFI/AAAAAAAAAls/-836Kpwue08/s320/youtubevideodownloaderhd_thumb.png" /&gt;&lt;/a&gt;&lt;/div&gt;5) Copy any video URL from your web browser and paste to Youtube Downloader HD.&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S3k0efe8HdI/AAAAAAAAAl0/1DHXT5kHFOE/s1600-h/youtubevideourl_thumb.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" ct="true" src="http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S3k0efe8HdI/AAAAAAAAAl0/1DHXT5kHFOE/s320/youtubevideourl_thumb.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;6) Paste the code in Video URL box given as shown in image below.&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S3k0oPmDx7I/AAAAAAAAAl8/tnqMqMjR7ZA/s1600-h/youtubedownloading_thumb.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" ct="true" src="http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S3k0oPmDx7I/AAAAAAAAAl8/tnqMqMjR7ZA/s320/youtubedownloading_thumb.png" /&gt;&lt;/a&gt;&lt;/div&gt;7) Browse the correct location to save the video and click on Start button. Video will start downloading.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Features of YouTube Downloader HD&lt;br /&gt;&lt;br /&gt;1) Download video without any browser addon.&lt;br /&gt;2) Download High Definition (HD) videos.&lt;br /&gt;3) Unicode support: Youtube Downloader HD can save movies whose names have non-standard characters (like Chinese, Japanese, Cyrillic, etc.&lt;br /&gt;4) Convert downloaded video to various formats.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-1173266114517013952?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/02/how-to-download-videos-from-youtube-to.html</link><author>noreply@blogger.com (Manohar)</author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S3k0PMZTBFI/AAAAAAAAAls/-836Kpwue08/s72-c/youtubevideodownloaderhd_thumb.png' height='72' width='72'/><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-2220004609793578880</guid><pubDate>Mon, 08 Feb 2010 10:57:00 +0000</pubDate><atom:updated>2010-02-08T02:57:34.516-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Windows</category><category domain='http://www.blogger.com/atom/ns#'>Tips and Tricks</category><category domain='http://www.blogger.com/atom/ns#'>Downloads: Utilities</category><title>Compare the Environment of Two Computers using ENVy</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S2_tw0NQxmI/AAAAAAAAAlk/qgqbnQis3cs/s1600-h/comparesettingstwocomputers.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" kt="true" src="http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S2_tw0NQxmI/AAAAAAAAAlk/qgqbnQis3cs/s320/comparesettingstwocomputers.png" /&gt;&lt;/a&gt;&lt;/div&gt;Ever wanted to compare the environment variables, Internet Explorer settings, network configuration, processes, installed software on two different machines? ENVy is a cool programs that lets you do exactly that! Great for IT pros or developers. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Click Here more details of &lt;a href="http://www.zorinsoft.com/"&gt;ENVy&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-2220004609793578880?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/02/compare-environment-of-two-computers.html</link><author>noreply@blogger.com (Manohar)</author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S2_tw0NQxmI/AAAAAAAAAlk/qgqbnQis3cs/s72-c/comparesettingstwocomputers.png' height='72' width='72'/><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-7938784151748200922</guid><pubDate>Mon, 08 Feb 2010 10:47:00 +0000</pubDate><atom:updated>2010-02-08T02:47:12.713-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Graphics</category><category domain='http://www.blogger.com/atom/ns#'>Downloads: Utilities</category><title>KoolMoves 7.4.1</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_ZuFXd-S60ZQ/S2_rJCyS0eI/AAAAAAAAAlU/qYhIuVUtxmo/s1600-h/kmboxes-hm.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" kt="true" src="http://4.bp.blogspot.com/_ZuFXd-S60ZQ/S2_rJCyS0eI/AAAAAAAAAlU/qYhIuVUtxmo/s320/kmboxes-hm.gif" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;strong&gt;KoolMoves 7.4.1&lt;/strong&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;KoolMoves is flash software for creation of text effects, banners, splash pages, animated clipart, games, navigation buttons, slide shows, media players, presentations, animated characters, cartoons, and entire web sites. &lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S2_rXIW57CI/AAAAAAAAAlc/AIcEwiqMUMo/s1600-h/1265495114_111457t.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" kt="true" src="http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S2_rXIW57CI/AAAAAAAAAlc/AIcEwiqMUMo/s320/1265495114_111457t.gif" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;10 MB : &lt;a href="http://rapidshare.com/files/346932926/KoolMoves_20v7.4.1.rar.html"&gt;Rapidshare&lt;/a&gt; - &lt;a href="http://www.megaupload.com/?d=JU5M9166"&gt;Megaupload &lt;/a&gt;- &lt;a href="http://hotfile.com/dl/27467790/2ea8b7b/KoolMoves252520v7.4.1.rar.html"&gt;Hotfile&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-7938784151748200922?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/02/koolmoves-741.html</link><author>noreply@blogger.com (Manohar)</author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_ZuFXd-S60ZQ/S2_rJCyS0eI/AAAAAAAAAlU/qYhIuVUtxmo/s72-c/kmboxes-hm.gif' height='72' width='72'/><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-4856663420781574685</guid><pubDate>Sat, 06 Feb 2010 11:46:00 +0000</pubDate><atom:updated>2010-02-06T03:46:29.828-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Tips and Tricks</category><category domain='http://www.blogger.com/atom/ns#'>Downloads: Utilities</category><title>AnyBizSoft PDF to Word Converter</title><description>AnyBizSoft PDF to Word Converter is a, well… PDF to Word converter, of course. It’s a commercial product that typically retails at $30 for a single license. But till March1, 2010, you can get a free serial key for this valuable software that unlocks the software for a lifetime.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The software’s interface is sparkling clean.&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_ZuFXd-S60ZQ/S21WLKYyqpI/AAAAAAAAAlM/NWL8BKxXr6k/s1600-h/pdf2word%5B2%5D.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" kt="true" src="http://2.bp.blogspot.com/_ZuFXd-S60ZQ/S21WLKYyqpI/AAAAAAAAAlM/NWL8BKxXr6k/s320/pdf2word%5B2%5D.png" /&gt;&lt;/a&gt;&lt;/div&gt;Click on the Add PDF button to add any number of PDF documents to the queue and customize the output destination. If you wish you can convert only selected pages of the PDF file. Once it’s ready press the big Convert button.&lt;br /&gt;Conversion will take a while depending on the size of the PDF files. In my test a 20 MB image heavy file took about 10~11 minutes. But the result was of excellent quality.&lt;br /&gt;AnyBizSoft PDF to Word Converter can convert PDF to Word 2010 (.docx) 2007(.docx), 2003(.doc) formats. It retains the original layouts, images and even hyperlinks in the generated Word documents. It also supports conversion of encrypted PDF files. &lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.anypdftools.com/pdf-to-word.html"&gt;AnyBizSoft PDF to Word Converter&lt;/a&gt; also integrates with Windows explorer context menu menu allowing direct conversion.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-4856663420781574685?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/02/anybizsoft-pdf-to-word-converter.html</link><author>noreply@blogger.com (Manohar)</author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_ZuFXd-S60ZQ/S21WLKYyqpI/AAAAAAAAAlM/NWL8BKxXr6k/s72-c/pdf2word%5B2%5D.png' height='72' width='72'/><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-708729828299202069</guid><pubDate>Sat, 06 Feb 2010 09:32:00 +0000</pubDate><atom:updated>2010-02-06T01:32:35.267-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Windows</category><category domain='http://www.blogger.com/atom/ns#'>Tips and Tricks</category><category domain='http://www.blogger.com/atom/ns#'>Hacking</category><category domain='http://www.blogger.com/atom/ns#'>Downloads: Utilities</category><title>GetDataBack for FAT &amp; NTFS V4.00</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_ZuFXd-S60ZQ/S202iwv3reI/AAAAAAAAAlE/C5jUSv3hq7I/s1600-h/s6noyr.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" kt="true" src="http://2.bp.blogspot.com/_ZuFXd-S60ZQ/S202iwv3reI/AAAAAAAAAlE/C5jUSv3hq7I/s320/s6noyr.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;GetDataBack for FAT &amp;amp; NTFS V4.00&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;GetDataBack is highly advanced data-recovery software that will help you to get your data back when your drive's partition table, boot record, Master File Table, or root directory is corrupted or lost, when a virus hits the drive, when files have been deleted, when the drive has been formatted, or when the drive has been struck by a power failure. GetDataBack can even recover your data when the drive is no longer recognized by the operating system or not only the root directory but all directory information is lost.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;5.5 MB : &lt;a href="http://rapidshare.com/files/346017777/ss.rar.html"&gt;Rapidshare&lt;/a&gt; - &lt;a href="http://www.megaupload.com/?d=1KN5US9K"&gt;Megaupload&lt;/a&gt; -&lt;a href="http://hotfile.com/dl/27202920/a659551/Runtime_Get_Data_Back_For_FAT_NTFS_v4.0.rar.html"&gt; Hotfile&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-708729828299202069?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/02/getdataback-for-fat-ntfs-v400.html</link><author>noreply@blogger.com (Manohar)</author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_ZuFXd-S60ZQ/S202iwv3reI/AAAAAAAAAlE/C5jUSv3hq7I/s72-c/s6noyr.jpg' height='72' width='72'/><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-989998157988720281</guid><pubDate>Sat, 06 Feb 2010 06:38:00 +0000</pubDate><atom:updated>2010-02-05T22:38:43.393-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Email Hacking</category><category domain='http://www.blogger.com/atom/ns#'>Hacking</category><title>GMAIL AIO 2010</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S20OHD5lC1I/AAAAAAAAAk8/fJ-b7Izw6Qs/s1600-h/9quaPbpM.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" kt="true" src="http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S20OHD5lC1I/AAAAAAAAAk8/fJ-b7Izw6Qs/s320/9quaPbpM.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;Useful apps for your Gmail account AIO. Hack, Customize and recover your Account &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Include: &lt;br /&gt;&lt;br /&gt;GMAIL DRIVE &lt;br /&gt;GMAIL HACKING &lt;br /&gt;GMAIL ICON CREATOR &lt;br /&gt;GMAIL DESKTOP STUDIO &lt;br /&gt;GMAIL ACCOUNT CREATOR &lt;br /&gt;GMAIL PASSWORD RECOVERY &lt;br /&gt;FAKE GMAIL PAGE CREATOR &lt;br /&gt;AND GMAIL ADDONS &lt;br /&gt;GMAIL DRIVE &lt;br /&gt;GMAIL 2 &lt;br /&gt;GMAIL LODER &lt;br /&gt;GMAIL NOTIFIER &lt;br /&gt;P2M &lt;br /&gt;&lt;br /&gt;Download: &lt;br /&gt;&lt;a href="http://hotfile.com/dl/26745331/173b669/GMAIL_aio_by_sam-cw.rar.html"&gt;http://hotfile.com/dl/26745331/173b669/GMAIL_aio_by_sam-cw.rar.html&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-989998157988720281?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/02/gmail-aio-2010.html</link><author>noreply@blogger.com (Manohar)</author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S20OHD5lC1I/AAAAAAAAAk8/fJ-b7Izw6Qs/s72-c/9quaPbpM.jpg' height='72' width='72'/><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-7224733658773979248</guid><pubDate>Sat, 06 Feb 2010 06:26:00 +0000</pubDate><atom:updated>2010-02-05T22:26:35.446-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Windows</category><category domain='http://www.blogger.com/atom/ns#'>Tips and Tricks</category><category domain='http://www.blogger.com/atom/ns#'>Hacking</category><title>How to login xp without password</title><description>Working and Tested..&lt;br /&gt;&lt;br /&gt;1. Place your Windows XP CD in your cd-rom and start your computer (it’s assumed here that your XP CD is bootable as it should be - and that you have your bios set to boot from CD)&lt;br /&gt;&lt;br /&gt;2. Keep your eye on the screen messages for booting to your cd Typically, it will be “Press any key to boot from cd”&lt;br /&gt;&lt;br /&gt;3. Once you get in, the first screen will indicate that Setup is inspecting your system and loading files.&lt;br /&gt;&lt;br /&gt;4. When you get to the Welcome to Setup screen, press ENTER to Setup Windows now&lt;br /&gt;&lt;br /&gt;5. The Licensing Agreement comes next - Press F8 to accept it.&lt;br /&gt;&lt;br /&gt;6. The next screen is the Setup screen which gives you the option to do a Repair. It should read something like “If one of the following Windows XP installations is damaged, Setup can try to repair it”&lt;br /&gt;&lt;br /&gt;Use the up and down arrow keys to select your XP installation (if you only have one, it should already be selected) and press R to begin the Repair process.&lt;br /&gt;&lt;br /&gt;7. Let the Repair run. Setup will now check your disks and then start copying files which can take several minutes. 8. Shortly after the Copying Files stage, you will be required to reboot. (this will happen automatically) you will see a progress bar stating “Your computer will reboot in 15 seconds”&lt;br /&gt;&lt;br /&gt;9. During the reboot, do not make the mistake of “pressing any key” to boot from the CD again! Setup will resume automatically with the standard billboard screens and you will notice Installing Windows is highlighted.&lt;br /&gt;&lt;br /&gt;10. Keep your eye on the lower left hand side of the screen and when you see the Installing Devices progress bar, press SHIFT + F10. This is the security hole! A command console will now open up giving you the potential for wide access to your system.&lt;br /&gt;&lt;br /&gt;11. At the prompt, type NUSRMGR.CPL and press Enter. Voila! You have just gained graphical access to your User Accounts in the Control Panel.&lt;br /&gt;&lt;br /&gt;12. Now simply pick the account you need to change and remove or change your password as you prefer. If you want to log on without having to enter your new password, you can type control userpasswords2 at the prompt and choose to log on without being asked for password. After you’ve made your changes close the windows, exit the command box and continue on with the Repair (have your Product key handy).&lt;br /&gt;&lt;br /&gt;13. Once the Repair is done, you will be able to log on with your new password (or without a password if you chose not to use one or if you chose not to be asked for a password). Your programs and personalized settings should remain intact.&lt;br /&gt;&lt;br /&gt;More Tricks and Hacks @ &lt;a href="http://techi-library.blogspot.com/"&gt;http://techi-library.blogspot.com/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-7224733658773979248?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/02/how-to-login-xp-without-password.html</link><author>noreply@blogger.com (Manohar)</author><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-2832596830117558771</guid><pubDate>Sat, 06 Feb 2010 06:15:00 +0000</pubDate><atom:updated>2010-02-05T22:15:04.057-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Hacking</category><title>Hack Twitter Using Twitter Bot</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_ZuFXd-S60ZQ/S20H93yv6hI/AAAAAAAAAk0/xb_vwkpTiZo/s1600-h/Twitterbot.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" kt="true" src="http://2.bp.blogspot.com/_ZuFXd-S60ZQ/S20H93yv6hI/AAAAAAAAAk0/xb_vwkpTiZo/s320/Twitterbot.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;Twitter is becoming an important marketing tool for online publishers and marketers. But it can be time consuming to keep your profile up to date and it often gets forgotten. I guess Everybody is waiting for a Solution. So Today I will give you a software which will automate all your twitter tasks.&lt;br /&gt;&lt;br /&gt;Twitter Bot can do a lot of amazing things without any need of User Intervention thats why it is called a Bot. Why one should have this software? I would say checkout the functions of this software and you will get your answer.&lt;br /&gt;&lt;br /&gt;Features&lt;br /&gt;1. Auto add followers: The twitter bot will add 500 new friends on a daily basis. Many of those follower may follow you in return.&lt;br /&gt;2. Auto Unfollow those who are not following you: It will automatically unfollow those who are not following you.&lt;br /&gt;3. Auto Follow those who follow you: You can return favor to your followers by following them and that by a click of a button&lt;br /&gt;4. Follow Top 100 People from your Country: You can target users from a particular Country based on Time Zones&lt;br /&gt;5. Auto Follow By Keyword Search: You can target user based on Specific Keywords.&lt;br /&gt;6. Auto Update your status: You can update your status every X minutes and these Updates will be fetched from a Text File.&lt;br /&gt;7. Auto reply: You can set a Message which will be replied automatically on arrival of a message.&lt;br /&gt;8. Multiple accounts handling: You can handle multiple Accounts. Twitter Bot can handle all of them in the background doing all the functions.&lt;br /&gt;9. Works with proxies or Real IP: The twitter bot can run behind proxies. You set a text file with a list of proxies in format IP:Port (ex. 123.123.123.123:80) and the twitter bot will first check to see which of them are working, and then it will use the working ones to login to your accounts and do the functions that you neet it to do.&lt;br /&gt;10. Extract and import your followers: You can extract the list of followers into XML or Text file.&lt;br /&gt;11. Schedule Messages: You can schedule the Bot to Update your Twitter status on a Specified Date and Time.&lt;br /&gt;12. Reply based on Keywords: You can set the Bot to reply based on the Keyword found in arrived Message.&lt;br /&gt;&lt;br /&gt;Conclusion&lt;br /&gt;After mentioning all these features I don’t need to say much about this Software. I would say just go and grab this software.&lt;br /&gt;&lt;br /&gt;Download&lt;br /&gt;To get your copy of Twitter Bot &lt;a href="http://thetwitterbot.com/?xyz=143"&gt;Click Here&lt;/a&gt; More Tricks and Hacks @ &lt;a href="http://techi-library.blogspot.com/"&gt;http://techi-library.blogspot.com/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-2832596830117558771?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/02/hack-twitter-using-twitter-bot.html</link><author>noreply@blogger.com (Manohar)</author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_ZuFXd-S60ZQ/S20H93yv6hI/AAAAAAAAAk0/xb_vwkpTiZo/s72-c/Twitterbot.jpg' height='72' width='72'/><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-349359147567713879</guid><pubDate>Sat, 06 Feb 2010 05:53:00 +0000</pubDate><atom:updated>2010-02-05T21:53:42.154-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Hacking</category><title>Crack into administrator account from limited account</title><description>Go to cmd type &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;c:\AT (time) /interactive “cmd.exe”&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;enter time in 24hr format&lt;br /&gt;means if you want to enter 5.00pm then enter 17:00&lt;br /&gt;then a new window of cmd will open at specified time&lt;br /&gt;&lt;br /&gt;In new window type &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;c:\net user&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;press enter&lt;br /&gt;after this u will see some names on ur screen&lt;br /&gt;notedown the name of admin acc&lt;br /&gt;then type&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;c:\net user&lt;/strong&gt; (&lt;strong&gt;name of admin acc u want to crack into&lt;/strong&gt;) *&lt;br /&gt;&lt;br /&gt;e.g if the name of admin acc is&amp;nbsp;john then type&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;c:\net user john *&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;then it will ask u for new password&lt;br /&gt;&lt;br /&gt;enter password of ur choice&lt;br /&gt;&lt;br /&gt;and u got the admin password&lt;br /&gt;&lt;br /&gt;More Tricks and Hacks @ &lt;a href="http://techi-library.blogspot.com/"&gt;http://techi-library.blogspot.com/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-349359147567713879?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/02/crack-into-administrator-account-from.html</link><author>noreply@blogger.com (Manohar)</author><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-7882478602355956653</guid><pubDate>Wed, 03 Feb 2010 05:09:00 +0000</pubDate><atom:updated>2010-02-02T21:09:37.795-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Mobile Tips</category><title>How to Unlock Your Cellphone for free</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_ZuFXd-S60ZQ/S2kEM_2BqwI/AAAAAAAAAkk/zUgs6yJLOr0/s1600-h/unlock_nokia_sim-300x225.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" kt="true" src="http://4.bp.blogspot.com/_ZuFXd-S60ZQ/S2kEM_2BqwI/AAAAAAAAAkk/zUgs6yJLOr0/s320/unlock_nokia_sim-300x225.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;strong&gt;What are Unlocked Cellphones? and Why anybody would want to Unlock it?&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;An Unlocked Cellphone is one that can be used on all networks operating on the frequency the phone is designed for. For example, in the UK there are four main networks, Vodafone, BT Cellnet, Orange and One2One. Vodafone and BT Cellnet operate on GSM900, while Orange and One2One operate on GSM1800. A UK dual band phone can operate on GSM900 and GSM1800, therefore being capable of working on all the networks.&lt;br /&gt;&lt;br /&gt;However, as the networks don’t want to lose you as a customer, when they supply the phone (on contract or pay as you go) it can be locked to only accept SIM cards from their network.&lt;br /&gt;&lt;br /&gt;If you wish to use a SIM from a different network, the phone needs to be unlocked.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;How do I know if my phone is locked or unlocked?&lt;/strong&gt;&lt;br /&gt;There are two ways to check if your phone is locked/unlocked. Firstly, if you have a working SIM from a different network, try putting that into the phone and switching it on. If the phone works and you can make calls on that network, congratulations, your phone is already unlocked. If a message appears, saying “SIM card not accepted” or similar, the phone is probably locked.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;How to Unlock your Cellphone?&lt;/strong&gt; &lt;br /&gt;It is very simple procedure. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1.&lt;a href="http://www.easy-share.com/1909019507/Nokia%20Unlock%20Code%20Generator.zip"&gt;Download&lt;/a&gt; &amp;amp; Install ” Unlock Code Calculator”&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S2kEz-K4LyI/AAAAAAAAAks/U_aWhbPhQPI/s1600-h/Cellphone-Unlocker.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" kt="true" src="http://3.bp.blogspot.com/_ZuFXd-S60ZQ/S2kEz-K4LyI/AAAAAAAAAks/U_aWhbPhQPI/s320/Cellphone-Unlocker.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;2.Start the software and Select your Cellphone Manufacturer and Cellphone Model&lt;br /&gt;&lt;br /&gt;3.Enter the 15 Digit IMEI Number of your Cellphone. You can get IMEI number for your Cellphone by entering *#06# in your Cellphone and press Enter.&lt;br /&gt;&lt;br /&gt;4.For Nokia Users you also need to select the Country and the Operator of your Cellphone.&lt;br /&gt;&lt;br /&gt;5.Press Calculate and it will generate a Code similar to #pw+CODE+n#.&lt;br /&gt;&lt;br /&gt;6.Now Press the Help button. Select your Cellphone Manufacturer and you will find the Steps of to use the above generated Code to unlock your phone.&lt;br /&gt;&lt;br /&gt;Note (For Nokia Users): You might be confused by the DCT-2, 3 and 4. Here I have categorized different Nokia models into DCT 2, 3 or 4. If your Cellphone is not listed below it might be possible that it use Nokia DCT1 or 5. The List below is not exhaustive. I have prepared it by collecting it from internet.&lt;br /&gt;&lt;br /&gt;Nokia DCT2: 3110, 8110, 8110i, 8146, 8148, 8148i, 9110, 9110i&lt;br /&gt;&lt;br /&gt;Nokia DCT3: 2100, 2190, 3210, 3285, 3310, 3315, 3320, 3330, 3350, 3390, 3395, 3410, 3610, 3810, nk402, nk503, nk702, 5110, 5110i, 5120, 5125, 5130, 5148, 5160, 5170, 5180, 5185, 5190, 5210, 5510, 6090, 6110, 6110i, 6120, 6130, 6138, 6150, 6150e, 6160, 6161, 6162, 6185, 6190, 6210, 6250, 6290, 7110, 7160, 7190, 7290, 8210, 8250, 8260, 8270, 8290, 8810, 8850, 8855, 8860, 8890, 9000, 9000i, 9110, 9110i, 9210 y 9290&lt;br /&gt;&lt;br /&gt;Nokia DCT4: N-GAGE, N-GAGE QD, 1100, 2110, 2300, 2600,2650, [NEM-2] (United states), 3108, 3100, 3120, 3200, 3220, 3300, 3510, 3510i, 3530, 3550, 3585, 3590, 3595, 3600, 3610, 3650, 5100, 5140, 6100,6170, 6200, 6220, 6230, 6260, 6310, 6310i, 6340, 6390, 6500, 6510, 6590, 6600, 6610, 6610i, 6630, 6650, 6800,[NSB-9] (United States),7200, 7210, 7210i, 7250, 7600, 7610, 7650, 7700, 8310, 8310i, 8350, 8390, 8910, 8910i, 9210, 9210i, 9290, 9500&lt;br /&gt;&lt;br /&gt;(Update) Alternate Download Link: &lt;a href="http://www.ziddu.com/downloadlink/8194135/NokiaUnlockCodeGenerator.zip"&gt;http://www.ziddu.com/downloadlink/8194135/NokiaUnlockCodeGenerator.zip&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;More Tricks and Hacks @ &lt;a href="http://techi-library.blogspot.com/"&gt;http://techi-library.blogspot.com/&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;If you liked my post then,&lt;br /&gt;&lt;br /&gt;Subscribe to this Blog via Email: &lt;br /&gt;&lt;br /&gt;Click here to Subscribe to FREE email updates&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-7882478602355956653?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/02/how-to-unlock-your-cellphone-for-free.html</link><author>noreply@blogger.com (Manohar)</author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_ZuFXd-S60ZQ/S2kEM_2BqwI/AAAAAAAAAkk/zUgs6yJLOr0/s72-c/unlock_nokia_sim-300x225.jpg' height='72' width='72'/><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-1228640714042999965</guid><pubDate>Thu, 28 Jan 2010 11:22:00 +0000</pubDate><atom:updated>2010-01-28T03:22:41.080-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Downloads: PC Games</category><title>Need For Speed Shift ( NFS ) Full PC Game</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_ZuFXd-S60ZQ/S2FyyvsmlXI/AAAAAAAAAjo/1mPD5GuIkSQ/s1600-h/2ijj68y.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" mt="true" src="http://4.bp.blogspot.com/_ZuFXd-S60ZQ/S2FyyvsmlXI/AAAAAAAAAjo/1mPD5GuIkSQ/s320/2ijj68y.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;strong&gt;Need For Speed Shift ( NFS ) Full PC Game ISO Repacked&lt;/strong&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;NFS Shift a new milestone in the development of the legendary racing series Need for Speed. This "need for speed" you have not seen! Illegal racing on the streets of the night cities in the past. Now you are waiting for more serious motor racing, where in the standings ignite serious passions, and cars on the track of a speed not available to any sports car on urban freeways! Need for Speed SHIFT focuses on spectacular and unprecedented realism. Here you do not just see the car and the track, but you feel every turn, every hill and every pebble under the wheel. By controlling the fireballs from the air because of the steering, you will get an unforgettable experience. The game perfectly conveys a sense of the driver, who rushes at great speed on a winding road. You rely a bit on the turns, throws up on the hills and relentlessly shakes, turns and shakes in the accident.&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_ZuFXd-S60ZQ/S2Fy-aQxDYI/AAAAAAAAAjw/r88fxa9_HWE/s1600-h/1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" mt="true" src="http://2.bp.blogspot.com/_ZuFXd-S60ZQ/S2Fy-aQxDYI/AAAAAAAAAjw/r88fxa9_HWE/s320/1.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_ZuFXd-S60ZQ/S2FzCjZKqrI/AAAAAAAAAj4/fyq_Ov7gPnU/s1600-h/2.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" mt="true" src="http://4.bp.blogspot.com/_ZuFXd-S60ZQ/S2FzCjZKqrI/AAAAAAAAAj4/fyq_Ov7gPnU/s320/2.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_ZuFXd-S60ZQ/S2FzHKA6-tI/AAAAAAAAAkA/l1ossE5vj54/s1600-h/3.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" mt="true" src="http://2.bp.blogspot.com/_ZuFXd-S60ZQ/S2FzHKA6-tI/AAAAAAAAAkA/l1ossE5vj54/s320/3.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;3.5 GB : Rapidshare - Megaupload&lt;br /&gt;&lt;/div&gt;Minimum system requirements:&lt;br /&gt;• Pentium 4 3.2 GHz&lt;br /&gt;• 1 GB of RAM (2 GB for Vista)&lt;br /&gt;• Video card with support for pixel shader version 3 and 256 MB of video&lt;br /&gt;• 10 GB of free space on hard drive&lt;br /&gt;• Operating system Windows XP SP3 or Windows Vista SP1&lt;br /&gt;&lt;br /&gt;Recommended system requirements:&lt;br /&gt;• Intel Core 2 Duo 2,5 GHz&lt;br /&gt;• 2 GB of RAM (3 GB for Vista)&lt;br /&gt;• Video card with support for pixel shader version 3 and 512 MB of video&lt;br /&gt;• 10 GB of free space on hard drive&lt;br /&gt;• Operating system Windows XP SP3 or Windows Vista SP1&lt;br /&gt;&lt;br /&gt;Download NFS Shift Rapidshare&lt;br /&gt;&lt;a href="http://rapidshare.com/files/319475773/Shift-egydown.iso.014"&gt;http://rapidshare.com/files/319475773/Shift-egydown.iso.014&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/319475718/Shift-egydown.iso.015"&gt;http://rapidshare.com/files/319475718/Shift-egydown.iso.015&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/319475663/Shift-egydown.iso.013"&gt;http://rapidshare.com/files/319475663/Shift-egydown.iso.013&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/319475518/Shift-egydown.iso.016"&gt;http://rapidshare.com/files/319475518/Shift-egydown.iso.016&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/319475259/Shift-egydown.iso.012"&gt;http://rapidshare.com/files/319475259/Shift-egydown.iso.012&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/319475172/Shift-egydown.iso.011"&gt;http://rapidshare.com/files/319475172/Shift-egydown.iso.011&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/319475170/Shift-egydown.iso.010"&gt;http://rapidshare.com/files/319475170/Shift-egydown.iso.010&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/319475156/Shift-egydown.iso.009"&gt;http://rapidshare.com/files/319475156/Shift-egydown.iso.009&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/319474611/Shift-egydown.iso.008"&gt;http://rapidshare.com/files/319474611/Shift-egydown.iso.008&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/319474578/Shift-egydown.iso.006"&gt;http://rapidshare.com/files/319474578/Shift-egydown.iso.006&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/319474563/Shift-egydown.iso.007"&gt;http://rapidshare.com/files/319474563/Shift-egydown.iso.007&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/319474492/Shift-egydown.iso.005"&gt;http://rapidshare.com/files/319474492/Shift-egydown.iso.005&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/319473923/Shift-egydown.iso.002"&gt;http://rapidshare.com/files/319473923/Shift-egydown.iso.002&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/319473916/Shift-egydown.iso.004"&gt;http://rapidshare.com/files/319473916/Shift-egydown.iso.004&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/319473915/Shift-egydown.iso.001"&gt;http://rapidshare.com/files/319473915/Shift-egydown.iso.001&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/319473906/Shift-egydown.iso.003"&gt;http://rapidshare.com/files/319473906/Shift-egydown.iso.003&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Download NFS Shift Megaupload&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=H0HTVM01"&gt;http://www.megaupload.com/?d=H0HTVM01&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=RVB9C79A"&gt;http://www.megaupload.com/?d=RVB9C79A&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=6AEA91OR"&gt;http://www.megaupload.com/?d=6AEA91OR&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=DL4HXJSV"&gt;http://www.megaupload.com/?d=DL4HXJSV&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-1228640714042999965?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/01/need-for-speed-shift-nfs-full-pc-game.html</link><author>noreply@blogger.com (Manohar)</author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_ZuFXd-S60ZQ/S2FyyvsmlXI/AAAAAAAAAjo/1mPD5GuIkSQ/s72-c/2ijj68y.jpg' height='72' width='72'/><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-6989381483496745254</guid><pubDate>Thu, 28 Jan 2010 11:11:00 +0000</pubDate><atom:updated>2010-01-28T03:11:02.515-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Downloads: PC Games</category><title>Football Manager 2010 Full PC Game</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S2FwfbywsdI/AAAAAAAAAjg/Mw4r7cmhcj4/s1600-h/2889mpd.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" mt="true" src="http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S2FwfbywsdI/AAAAAAAAAjg/Mw4r7cmhcj4/s320/2889mpd.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Football Manager 2010 Full PC Game RELOADED&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;Football Manager 2010 Implementing key improvements to the 2010 edition of the soccer management franchise, Football Manager 2010 features new tools and changes across the board including some big additions to improve ease of use, navigation and feedback from the game with the introduction of a brand new match tactics system, the debut of a Match Analysis tool, a completely new look and new User Interface among other features. &lt;br /&gt;&lt;br /&gt;2.3 GB : Rapidshare - Megaupload&lt;br /&gt;&lt;br /&gt;Download Football Manager 2010 Rapidshare&lt;br /&gt;&lt;a href="http://rapidshare.com/files/333871092/fm10-egydown.iso.002.html"&gt;http://rapidshare.com/files/333871092/fm10-egydown.iso.002.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/333871271/fm10-egydown.iso.001.html"&gt;http://rapidshare.com/files/333871271/fm10-egydown.iso.001.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/333871637/fm10-egydown.iso.004.html"&gt;http://rapidshare.com/files/333871637/fm10-egydown.iso.004.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/333871862/fm10-egydown.iso.003.html"&gt;http://rapidshare.com/files/333871862/fm10-egydown.iso.003.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/333872216/fm10-egydown.iso.006.html"&gt;http://rapidshare.com/files/333872216/fm10-egydown.iso.006.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/333872493/fm10-egydown.iso.005.html"&gt;http://rapidshare.com/files/333872493/fm10-egydown.iso.005.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/333872742/fm10-egydown.iso.008.html"&gt;http://rapidshare.com/files/333872742/fm10-egydown.iso.008.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/333873097/fm10-egydown.iso.007.html"&gt;http://rapidshare.com/files/333873097/fm10-egydown.iso.007.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/333873304/fm10-egydown.iso.010.html"&gt;http://rapidshare.com/files/333873304/fm10-egydown.iso.010.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/333873705/fm10-egydown.iso.009.html"&gt;http://rapidshare.com/files/333873705/fm10-egydown.iso.009.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/333873821/fm10-egydown.iso.012.html"&gt;http://rapidshare.com/files/333873821/fm10-egydown.iso.012.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/333874045/fm10-egydown.iso.014.html"&gt;http://rapidshare.com/files/333874045/fm10-egydown.iso.014.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/333874363/fm10-egydown.iso.011.html"&gt;http://rapidshare.com/files/333874363/fm10-egydown.iso.011.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/333874861/fm10-egydown.iso.013.html"&gt;http://rapidshare.com/files/333874861/fm10-egydown.iso.013.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Download Football Manager 2010 Megaupload&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=6FX6G1OH"&gt;http://www.megaupload.com/?d=6FX6G1OH&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=6V5RSNS0"&gt;http://www.megaupload.com/?d=6V5RSNS0&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=BLE3WTWE"&gt;http://www.megaupload.com/?d=BLE3WTWE&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-6989381483496745254?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/01/football-manager-2010-full-pc-game.html</link><author>noreply@blogger.com (Manohar)</author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_ZuFXd-S60ZQ/S2FwfbywsdI/AAAAAAAAAjg/Mw4r7cmhcj4/s72-c/2889mpd.jpg' height='72' width='72'/><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-85189534207045023.post-4903739022264056089</guid><pubDate>Thu, 28 Jan 2010 11:04:00 +0000</pubDate><atom:updated>2010-01-28T03:04:16.688-08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Downloads: PC Games</category><title>Counter Strike: Source + Play online hack</title><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_ZuFXd-S60ZQ/S2Fu2AiUFmI/AAAAAAAAAi4/gpn0tOXQSPQ/s1600-h/ou7hig.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" mt="true" src="http://4.bp.blogspot.com/_ZuFXd-S60ZQ/S2Fu2AiUFmI/AAAAAAAAAi4/gpn0tOXQSPQ/s320/ou7hig.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;strong&gt;Counter Strike: Source + Play online hack&lt;/strong&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Counter Strike: Source With a full complement of real world pistols, rifles and shotguns, Counter-Strike's battle of terrorists and counter-terrorists became the basic blueprint for many modern team-based online shooters. Now enhanced with the power of the Source engine, the game features drastically improved visuals, enhancements on classic maps, offline skirmish play with AI bots and more.&lt;br /&gt;&lt;br /&gt;1.7 GB&amp;nbsp; &lt;br /&gt;&lt;br /&gt;Download Counter Strike: Source Rapidshare&lt;br /&gt;&lt;a href="http://rapidshare.com/files/328567216/ccs-egydown.rar.001.html"&gt;http://rapidshare.com/files/328567216/ccs-egydown.rar.001.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/328567223/ccs-egydown.rar.002.html"&gt;http://rapidshare.com/files/328567223/ccs-egydown.rar.002.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/328567224/ccs-egydown.rar.004.html"&gt;http://rapidshare.com/files/328567224/ccs-egydown.rar.004.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/328567259/ccs-egydown.rar.003.html"&gt;http://rapidshare.com/files/328567259/ccs-egydown.rar.003.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/328567503/ccs-egydown.rar.005.html"&gt;http://rapidshare.com/files/328567503/ccs-egydown.rar.005.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/328567504/ccs-egydown.rar.006.html"&gt;http://rapidshare.com/files/328567504/ccs-egydown.rar.006.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/328567513/ccs-egydown.rar.008.html"&gt;http://rapidshare.com/files/328567513/ccs-egydown.rar.008.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/328567563/ccs-egydown.rar.007.html"&gt;http://rapidshare.com/files/328567563/ccs-egydown.rar.007.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/328567577/ccs-egydown.rar.010.html"&gt;http://rapidshare.com/files/328567577/ccs-egydown.rar.010.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/328567838/ccs-egydown.rar.009.html"&gt;http://rapidshare.com/files/328567838/ccs-egydown.rar.009.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Download Counter Strike: Source Megaupload&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=UHM1P48S"&gt;http://www.megaupload.com/?d=UHM1P48S&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=X5UXGABU"&gt;http://www.megaupload.com/?d=X5UXGABU&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/85189534207045023-4903739022264056089?l=techi-library.blogspot.com' alt='' /&gt;&lt;/div&gt;</description><link>http://techi-library.blogspot.com/2010/01/counter-strike-source-play-online-hack.html</link><author>noreply@blogger.com (Manohar)</author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_ZuFXd-S60ZQ/S2Fu2AiUFmI/AAAAAAAAAi4/gpn0tOXQSPQ/s72-c/ou7hig.jpg' height='72' width='72'/><thr:total>0</thr:total></item></channel></rss>
