Password protected folder

Learn how to password protect a folder without using any 3rd party software. If you have windows, you can do all that using VBS scripting.

Chipmunks Songs

Learn how to make funny voices and songs like in the movie - Alvin and The Chipmunks

Intro: Wolfram Alpha

Homeworks can be real hassle, and not all the times you can go to a teacher or a tutor to get help on your problem. Other website charge you to get help from them and you dont know that you are really getting out from them, so introducing Wolfram Alpha, that generates answers to your questions automatically, immediately and best: for FREE.

Costume TapTap

You cannot get the track of your choice in TapTap, but adding some effort to the ipod gives you a game with your favorite song to play with.
Showing posts with label windows. Show all posts
Showing posts with label windows. Show all posts

Aug 21, 2009

Password protect a folder.

Posted by Aayush at 9:05 PM 0 comments
I will not be responsible if you lose your files or folders by using this method.
There are various softwares on the market, using which you can completly password protect your folder and important stuffs inside it. But some of them might be malicious or too expensive for a regular person to dowload, so here is a tutorial on how to password protect a folder using VBS scripting(dont worry, you wont have to install anything if you already have windows).
  • First off, start a new page on notepad and paste the following code on it:
cls
@ECHO OFF
title Folder myfolder
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST myfolder goto MDLOCKER
:CONFIRM
echo Are you sure u want to lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren myfolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set /p "pass=>"
if NOT %pass%==password goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" myfolder
echo Folder unlocked successfully
goto End
:FAIL
echo Invalid password
goto UNLOCK2
:FAIL2
echo Invalid password
goto end
:MDLOCKER
md Personal
echo Folder created successfully
goto End
:UNLOCK2
echo Last chance to enter correct password to unlock folder
set /p "pass=>"
if not %pass%==password goto FAIL2
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Personal
echo Folder unlocked successfully
:End
  • Now change "myfolder" (line 3, 5, 16 and 25) into the name of your folder and change "password"(line 23) into your desired password.
  • Now go to File>Save As and locate where your folder is located.
  • Save the file as "lock.bat" and save and exit.
  • If you double click the file the first time, it will ask you "if you want to lock the folder or not?" Press Y if you want to, N if you dont want to.
  • Now your folder has disappeared, which means now it is protected from intruders. To restore the folder, double click your "lock.bat" and it will ask for your password. If you enter wrong password twice, it will automatically close the dialogue box and you will have to open it again.
Please remember to hide your "lock.bat" from places where other people can easily find it. Remember the location of the folder that you locked becuase you need to keep "lock.bat" back in that place (if you moved from original locaiton) to restore the folder.

Aug 6, 2009

How to control PC using Iphone

Posted by Aayush at 9:52 PM 0 comments
BEFORE WE START: THESE APPS WORK ON BOTH IPHONE AND IPOD-TOUCH AND DOESNT HAVE TO BE JAILBROKEN.

Iphone is full of endless possibilities, you just need the correct resources to make use of them. Using some of the 3rd party apps available on ITunes, you can have total control of a PC(when the user is logged in) and today, I am going to talk about two apps from Itunes.


What do download?
ITap is a app that turns your IPhone into a wireless keyboard/mouse for your PC or MAC. You can download the paid Iphone app here for $3.99 or the free lite version here

Remainder: lite version includes only volume control and none of the mouspad/keyboard. Even with the paid version, you cannot see the computer screen on iPhone.

How to setup?
After you download the apps on iphone, download the server client on your PC. Run and complete the installer, which will give you "iTap Receiver" program on your desktop or your Start Menu. To pair your computer with iPhone,open the app on iPhone and start the program on your computer. You should see your iPhone's name under "Devices running compatible version." Select your device and click on "Pair on Selected Device" If done successfully, you can use iPhone Screen as your Mouse Pad and also as a keyboard. Cool eh??

Mocha VNC:Another app from iTunes store which gives you absolute control of a PC is Mocha VNC which provides access to a VNC Server. Using your iPhone, you can connect to a Windows PC or Mac OS X and see the files, programs, and resources exactly as you would if you were sitting at your desk, just on a smaller screen.
What do download?
You can download the paid app for iPhone here for $5.99 or the free Mocha VNC lite here.
After downloading your selection of app into iPhone, download the VNC client server executable file into your computer. I downloaded the Enterprise Version from ThePirateBay. Click here fore more info on torrents download.

How to setup?
Just before you are done with the installation of VNC client, you will get "VNC Server Properties" Dialogue box. Make sure you configure your password in the first page and then click OK on the dialogue box and finish the installation. After you are done with your installation, search for "VNC Server (User Mode)" on your computer and open it. It will display a new icon on your taskbar. Right click on it and select "Status". Click on "Test" where it says "Details and Address". The first time you click start, it will say connection failed because you haven't port forwarded your router. Click here for more info on port forwarding.
For this software to run properly, you need to port forward your router into 5900 for Starting Port and 5900 in Ending Port. After port forwarding the router, click on Test>Start again and it should say "Connection Test Successful" and it will give you a IP-address which looks like (24.176.42.534)on which you need to connect. Dont close the dialogue box yet because you will use that ip-address on Mocha VNC that you downloaded on iPhone.

Open Mocha VNC on iphone and go to Menu>Edit Connections and select a row. Now put down the ip-address that you got earlier from testing the server. Put down 5900 on VNC Server Port and your password should be the one that you configured when you installed the software for the first. Give it a name just for yourself and then hit "Connect" on upper right side. It should say connecting to "[your ip address] and then VNC Negotiation and you will have your computer screen on your iphone. Now you can control the computer since you have the screen, type around or control volume using ITap.

Leave a comment if you have any problems while doing the setup.

Jul 8, 2009

How to make a folder icon

Posted by Aayush at 10:59 PM 0 comments
You can always download a fancy icon maker from the internet and make a icon from your picture, but what if you want to make a icon without using any sorts of extra softwares? I am going to teach you how to make a windows folder icon using a single and powerful native tool: Paint.
How to make a icon?
  • Go ahead and fireup MSPaint. How to start paint?
  • Open up the picture that you want to convert into icon.
  • Go to File>"Save As" and select the place where you want to save it.
  • On the filename section, change the file name into 'icon.ico' and "Save as type" into '24-bit Bitmap'
  • Press Save and you are done.
  • If you are on Vista, you might have to rename the file again into 'icon.ico' again. Watch the video.
How to implement the icon on a folder?
  • Now right click on the folder that you cant to change and select "Properties"
  • Go to "Customize" tab and then select "Change Icon"
  • Browse to the place where you saved the icon file and select it. Press OK and then VOILA!You are done.

Just remember never to delete or change to position of the 'icon.ico'.
Comment if you dont understand anysteps


Jun 24, 2009

How to make your computer load faster

Posted by Aayush at 8:26 PM 0 comments
If you have about a year old computer, with somewhat outdated drivers, your computer will take some time to load up completely. But if there is a problem, there is always a solution. And among solutions, there is a really fast way, buy a new computer, or kinda slow way, but keeps you going for another couple of days or months. Today, I am going to teach you how to make your computer load up faster.
  • Disable the unnecessary programs that load up when you boot your computer.
Go to Run>type "MSCONFIG", wait a couple of seconds and then go to "StartUp" tab and select "Disable All" except for your antivirus.
  • Increase your virtual memory
open notepad and type mystring=(80000000) and save it as ram.vbe in your desktop, you will see a script looking file
and double click on it to run the file.

You wont see any thing pop up, but you will notice the
difference.
  • Update your computer drivers.
Download a software called RadarSync. It automatically scans your computer hardware and gives you a list of hardwares whose drivers have been outdated and also gives you an option to download the recent version of those drivers. It helps you to keep your computer hardware fresh.

Jun 6, 2009

Cool Javascript Tricks/Codes

Posted by Aayush at 10:38 PM 0 comments
These are pretty sick javascript codes/(hacks) if you call them. Copy the codes and paste them onto your browser and hit enter.
**SOME OF THEM MIGHT NOT WORK IN GOOGLE CHROME
Remember, you can always Press F5 (Refresh) in order to stop and come back to the website.
  • Calculator : 5+3+2+9-5-3-6+3: Makes a simple calculator that you can use using javacript.
javascript:alert(put your numbers and operation here)

  • "Flying Images": Automatically detects any images on the sites and starts flying them
javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.images; DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=(Math.sin(R*x1+i*x2+x3)*x4+x5)+"px"; DIS.top=(Math.cos(R*y1+i*y2+y3)*y4+y5)+"px"}R++}setInterval('A()',5); void(0);
  • Edit Websites: After you enter the code, you can edit the contents of the site, but it wont be permanent.
javascript:document.body.contentEditable='true'; document.designMode='on'; void 0
  • Fake Website identifier: Compares your site protocol and hostname and sees if they are same or not. You can use it as a phising site checker.
javascript:alert("The actual URL is:\t\t" + location.protocol + "//" + location.hostname + "/" + "\nThe address URL is:\t\t" + location.href + "\n" + "\nIf the server names do not match, this may be a spoof.");
  • Annoying Dialogue Box: Pops out a dialogue box that asks you to restart the browser.
    Press Ctrl+Alt+Delete and then go to application and then select your browser and click End Task on the bottom.

javascript:while(1){alert('Restart your brower to close this box!')}





Jun 2, 2009

Mac OSx theme For Vista

Posted by Aayush at 8:27 PM 0 comments
Are you bored with looking at the same dull Vista screen and the same dull "AERO" theme? Do you want to change your computing experience? I have the exact solution for your windows computer.
Check out VistaOSx.net . This site offers you a program which totally changes your desktop. I believe this site provides looks for windows vista only, not for XP. :(. But fear not people, Leopard XP provides just the right software for you. Just download the setup and then install on your computer. Restart and open the VistaOSX Theme.theme thats on your desktop and happy WindowsMacking. I made that up.
Features that I like:
> Aqua scroll bar
> New icon for start button
> New boot animation and image.
FAQ
>How do you change the theme back to default?
>Right click on desktop, go to properties/Personalize, go to themes, select a different theme.
>How do you uninstall the theme?
>Go to C:/VistaOx09 and then run "UntitledProject1.exe". Or you can run System Restore to a previous point.
>If you decide to remove the theme after 5 days (5 days is the limit for System Restore), then check out this guide
>Where is UntitledProject1.exe?
> Its hidden. See how to unhide

May 31, 2009

How to make an INVISIBLE icon on your computer.

Posted by Aayush at 1:23 PM 0 comments
This tutorial teaches you how to make an invisible icon on your computer.
  1. Go to the Desktop or any folders in your computer
  2. Right click on a empty space and select "NEW">"FOLDER". It will create a new folder.
  3. Now right click on the new folder and select "PROPERTIES"
  4. Go to "CUSTOMIZE" tab and then select "CHANGE ICON"
  5. You will now get a bunch of icons. If you slide towards right(6 or 7 clicks) then you will see some empty space. Select one of those icons. and then press "OK" and "OK" again on the other window.
  6. The icon is invisible, but now to hide the words on it, right click on it, and select "RENAME" and then type in ALT255 and then press ENTER.
And you are done.

You can drag drag your mouse around to see the invisible icon and you can rename the folder by re-doing last step.

FAQ
1) The name is not still invisible??
> Make sure you pressed "ALT" button on your keyboard and pressed 255, not type ALT255 from your keyboard.
2) Does this work on MAC?
> I dint know. why don't you test it for me??


**for some weird reason, I couldn't delete my invisible folder. so take precautions.

May 26, 2009

Another way to have fun with webcams and Iphone/Ipod Touch

Posted by Aayush at 7:08 PM 1 comments
We all know how cool gadgets can take away time when you are bored. Yet today, I present another cool way to have fun with webcams and Iphone/Ipod touch. This is more fun in Ipod Touch since it doesnt have a camera and Iphone already has a camera and other camera apps in app store .
First off, tools and softwares required:
  • Wireless internet [a must]
  • Ipod Touch/ Iphone
  • A regular webcam
  • Jumi App on Ipod Touch/Iphone
  • Cam Splitter 3.0 [Freeware]
  • ManyCam 2.4 [Freeware]

To start off, install a app called JumiCam Lite .This app allows you to view your webcam live from your wireless network. Then you can download the client version for the software and install in the computer where your webcam is connected to. You can also visit Jumitech.com for more information on setup of your device.

Next, download a software called CamSplitter 3.0 . It allows you to stream your webcam into two different softwares/programs without blocking the webcam. Install the program on your computer and then run it, but make sure you are not running JumiCam.

Now, download ManyCam 2.4 and install it on your computer. This will allow you to webcast your webcam in various designs and fun ways.

Now is the most important part. You are going to setup the devices to work together to create a fun time.

  • First start CamSplitter and select your device.
  • Then start JumiCam and make sure you are seeing webcast on your Ipod.
  • Then start ManyCams and then go to Sources Tab. Then Click on CamSplitter.
It is recommended to restart your Iphone/Ipod Touch and your computer for proper connection between them.
Now you can see the images on your Ipod and your Computer and from ManyCam, you can change backgrounds or add effects on your face brag among your friends with it. You can also play a video on the computer and then watch the video on ipod but sound cannot be transmitted.:(.. So have fun with this software. Feel free to leave a comment if you dont understand any of the steps..

May 25, 2009

How to auto-login using Face Detection system

Posted by Aayush at 5:08 PM 0 comments

I just found this software, keylemon and it allows a person to log into his windows user account using face detection system. It works just like finger print scanner, but instead it uses your face. YOU MUST HAVE A WEB CAM FOR THE PROGRAM TO RUN PROPERLY. But remember, this software is not foolproof. Anyone can use a photo of the person in order to log-in, so remember, this is only an option, not recommended for everyone due to security purposes.

The free version has total 30 usages and full version is about $19.95.

May 17, 2009

How to make a fake virus

Posted by Aayush at 5:40 PM 0 comments
** ONLY FOR EDUCATIONAL PURPOSES. I WONT BE RESPONSIBLE FOR ANY TROUBLE YOU GET INTO AFTER DOING ALL THIS. PROCEED AT YOUR OWN.
Do you have anyone that you feel uses your computer too much? Well then here is the right solution for you. Make a Fake Virus that automatically shuts down the computer when the user clicks the icon. Lets start.
  1. Right click on your desktop and select NEW>SHORTCUT.
  2. Type shutdown -s -t 10 (10 can be any number in seconds that you want your computer to shutdown in) on the location box and click next.
  3. Change the default name into something else. Lets say Internet Explorer.
  4. You will have a new icon on your desktop saying Internet Explorer.exe
We are done with making the fake part, now the part where we change the design so it looks realistic.
  1. Right click on the new icon that we just made and select PROPERTIES.
  2. On SHORTCUT tab, select CHANGE ICON.
  3. If you get a Pop up, just click OK and move on.
  4. Once you get change Icon dialogue box, select browse
  5. Reach your My computer/ C:/ Program Files/ Internet Explorer and select iexplore.exe
  6. then you will get bunch of other icons. select one of them and click OK.
Your icon image has changed and when you double click on the button, It will say, Computer will shutdown is less than a minute, in vista. and in XP, it shows a dialogue box with the timer on.
After you do all this, you can send it to your friends too. make then download the icon and open it. the computer shutsdown automatically. More information can be found in shutdown command if you go to START>RUN> and type CMD or for vista, just type CMD on the search bar in Start Menu.and type shutdown/? it will show you more options on how to change the display pattern.,

Once again, THIS IS ONLY FOR EDUCATIONAL PURPOSES. NO HARMS INDENTED ON ANYONE



 

Computer Tutorials Copyright 2009 Reflection Designed by Ipiet Templates Image by Tadpole's Notez