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

Wednesday, December 25, 2013

Pen drive virus – copy files without virus

Add caption


Pen drive virus always gives problems. Pen drive is the online device which helps to transfer files and also to take backup. To transfer a file we have to plugin the pendrive in another computer which may affected by virus. When your pen drive is plugged into a computer which was affected by virus, surely your pen drive will also affect by the virus. You can use antivirus to clear it, but it won’t remove the virus completely from the pen drive. The only way to remove the virus from the pen drive is formatting the pendrive. But by formatting the pen drive you may lose important files. So before formatting the pendrive you have to copy the files and transfer to local disk. If you open the removable hard disk folder surely the virus will affect your computer. There is nothing to worry you can copy the files from the pendrive without virus by using command prompt which does not allows the virus in computer. So it is a best way to copy the files from pendrive with virus to computer without making the computer to be affected by virus. This article will help you to 
copy files from pen drive and also to delete virus in pen drive. This will help to protect PC from pen drive virus.

Copy files without virus:-

To copy the files from pen drive without virus, first we have to perform two tasks
  1. Delete the virus in the folder
  2. copy the files

Pen drive virus:-How to delete virus using command Prompt:

To protect your pc from pen drive virus you can copy all the files using command prompt and format it.  But sometimes there is a chance for virus inside any folder in pen drive. So before copying the files it is better the look all the files in the pen drive and if virus found inside any folder you can delete it using command prompt.
  • Open Command Prompt and type the removable hard disk driver name. for example H:
  • “ATTRIB” is the best tool to check virus in any removable hard disk and also in flash drives
  • In the command prompt type  ”H: attrib”  and hit enter this will shows files and viruses in the pendrive. It is easy to identify virus in pendrive
  • Then type “attrib -s -h -r virus name” If the name of the virus is autorun.inf type ”attrib -s -h -r autorun.inf“ and hit enter this will makes the file as accessible in command prompt
  • If there is no more attributes in autorun.inf file you can delete it by using the command “del autorun.inf” Replace the autorun.inf file by your virus name
If you get any error as the file is using by some other application, Open task manager and stop that application.

Pen drive virus:-How to copy file using command prompt:

After deleting the virus from the folder in removable hard disk now you can copy the folder to your local disk using command prompt.
Open command prompt and type the removable hard disk driver name. For example H:
Then type “copy H:\File or Folder name D:\”  (D: is the destination folder in which you want to copy the files)
For Example  H:\cybertwitt.JPG D:\ 
To copy all the files in a folder type the folder path in command prompt for example: H:\Folder name hit enter then type “*.*(space) D:” (D is destination folder)
You all done. Now the file is copied to your local drive without virus.

Read More ->>

Tuesday, November 6, 2012

Windows 8 RC Product Key Free Download


DOWNLOADS

Windows 8 Release Preview 32bit English.iso

(2.5 GB)
Sha 1 hash — 0x8BED436F0959E7120A44BF7C29FF0AA962BDEFC9

Windows 8 Release Preview 64bit English.iso

(3.3 GB)
Sha 1 hash — 0xD76AD96773615E8C504F63564AF749469CFCCD57


▶  Windows 8 Product Key :
TK8TP-9JN6P-7X7WW-RFFTV-B7QPF

Read More ->>

Saturday, June 9, 2012

HOW TO SEE DELETED PICTURES ON FACEBOOK


Hi friends,As you all know that facebook is the largest community in the world along 800 millions users.People use facebok for making friends and want to see their pictures.But some time they deleted the pictures because they are deleted by the user.
Now the question arise How can we see others deleted pictures on facebook.Dont worry friends.Facebook photos can be seen even after the deletion. And you can see the private pics of other users.

How To See Deleted Pictures On Facebook

Facebook use CDN service as other big sites use for making their website loading speed fast.This CDN service allow us to see pictures on facebok even they are deleted on facebook

Steps To See Deleted Pictures:

  1. First find a picture for a experiment.
  2. Now right click on the picture and and 
  3. click on "copy image URL". Paste this address on notepad and wherever you want to save.
  4. Now delete the picture and trying to access the picture again.
           You find the error

    Now copy the link address from the notepad which we have saved and then open the link in browser. And You will see the photo which you have deleted before few minute and was unavailable to see.

How It works:

This is possible because of CDN service.The logic behind it is that when we delete some picture from facebook.It is deleted by the facebook database and server.But the picture we deleted on facebook is copied by many of facebook users.Because of large and millions of user in facebook which are still on fb.

Read More ->>

Friday, May 25, 2012

WAY TO HACK ANY PC



Note: PC, to be hacked, must be logged on.----
1) go to start>run.
2)in run, type cmd.
3)command prompt will appear.
4)type"net users" in command (without " ")


It will show all accounts on that PC

5)then type
6)net users "account name" *
7) "account name" is the account u wanna hack, but without inverted commas
8)it will ask for password.. enter password (while typing password, cmd will not show the password)
9)confirm the password and hit enter


THAT'S ALL......... account is hacked......... PASSWORD CHANGED
Read More ->>

Lock File(s) on Windows Without Using Any Software


How many times have you wished of a software using which you can hide or lock files,  restricting its access to other unwanted users. Although there are various software available in market using which you can easily lock/hide files but, i personally dont trust them because most of them are bloatware or spyware.
In this post i am going to share a simple yet powerful way of locking and hiding important files using a the following method. Follow the instructions to make you own Locker ( Without any software !! ) :
  • Open notepad.
  • Copy the following code in notepad file :





    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 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 Locker "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%==YOUR PASSWORD HERE 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
    goto End
    :FAIL
    echo Invalid password
    goto end
    :MDLOCKER
    md Locker
    echo Locker created successfully
    goto End
    :End






  • Change the “YOUR PASSWORD HERE” with your password.
  • Save it as batch file ( with extension .bat ) For eg. Locker.bat
  • Now you will see a batch file. Double click it to create a folder locker ( A new folder named Locker would be formed at the same location )
  • Thats it you have now created your own locker and that too without using any software !
  • Brings all the files you want to hide in the locker folder.
  • Double click the batch ( As created above ) file to lock the folder namely Locker.


If you want to unlock your files, simple double click the batch file again and you would be prompted for password ( In DOS window ). Enter the password and enjoy access to the folder.
Read More ->>

Make ur keyboard a live disco




his code when executed makes your Caps, Num, Scroll lock keys flash..
very attractive...i have tried it..trust me

Instructions:

*paste the code in notepad
*Save as disco.vbs
*Run the file
*to stop, launch task manager and then under "Processes" end wscript.exe

This piece of code makes your keyboard a live disco...

Set wshShell =wscript.CreateObject("WScript.Shel
l")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop



Read More ->>

Use VLC as Video Cutter


  • Friends ,everybody knows very well about VLC media player .this is fantastic software to watch all kind of  videos format ,music etc . . .Do you know that you may use VLC players as a video cutter .This is not a trick .its a function ,which is included in VLC player .Do you wana try it ?ok ,just follow these steps






  • Launch VLC media player and activate Advanced controls located under the View menu .
  • After activate the advanced controls you will see four extra buttons above the normal play/pause button . We will use the first button from the left called the record button .
  • Now play your desire video ,who you want to cut .
  • Just click on record button ,from where you want to
  • cut the video .
  • Click again record button to stop the recording/cutting .
  • That's it .its so simple .
Read More ->>

20 Registry Hacks to make your PC more awesome


Right-clicking on everything is a good way to learn about hidden Windows functionality.
Exploring the lesser-known Control Panel applets is another useful technique, and browsing the command line applications in Windows' System32 folder can be interesting. But let's be realistic. There's nothing that quite compares to the Registry. It's packed with useful settings that can improve performance, fix security holes and change even the most fundamental Windows behaviour for the better. And many of these features simply can't be accessed in any other way. Be careful, though: the Registry has more than its fair share of traps. If you're not cautious, you could cause more problems than you solve. But with a little care you can get on with creating a better system that's tailored towards your needs. Here are 20 great Registry hacks that
everyone should know about.

1. Improve security
If strangers have physical access to your PC, it's easy for them to plug in a USB flash drive and make copies of your data. If you're using Windows XP SP2 or later, though, there's a simple way to prevent this from happening.
Go to 'HKLM\SYSTEM\CurrentControlSet\Control\StorageDevicePolicies', create a DWORD value called 'WriteProtect' and set it to 1. You'll be able to read USB drives, but not write to them any more.

2. Tame UAC
Windows Vista's User Account Control raises so many alerts that many people just turn it off. But do that and you'll also lose useful features like IE's protected mode. If you really can't live with UAC, try disabling the alerts for administrators: you won't get any more hassle, but UAC will run in the background and you'll still get its other features. To do this, set
'HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System\
ConsentPromptBehaviorAdmin' to  .
You can restore normal UAC behaviour by setting it to 2.

3. Change the owner
Install Windows on your PC and you'll be asked to enter your name, which is then stored as the
registered owner (run WinVer to see this on your system). If you've got a second-hand PC, you probably want to change the name stored as the registered owner. There's no obvious way to do this, and that's where the Registry comes in. Browse to 'HKLM\SOFTWARE\Microsoft\WindowsNT\CurrentVersion' and you'll see both a
'RegisteredOwner' and 'RegisteredOrganization' value. Double-click either to change them.

4. Sort files properly
Sorting filenames in Explorer can be a problem. By default, it will place 'File_v2.txt' before 'File_v15. txt': that's not ASCII ordering, but it seems to be sensible. But what if the 'v' refers to a version number, and actually File_v15.txt should come first? Suddenly Explorer's default system doesn't work at all. To restore regular ASCII file ordering, go to
'HKLM\Software\Microsoft\Windows\Currentversion\Policies\Explorer', create a DWORD value called 'NoStrCmpLogical' and set it to 1. Delete the key to restore the standard Explorer approach.

5. Troubleshoot startup
If Windows is taking its time to start up or shut down, there might be a problem. To find out what's going on, go to
'HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System', create a DWORD value called 'verbosestatus' and set it to 1. Restart your PC and Windows will tell you what it's getting up to.

6. Manage folder types
Windows Vista's Explorer will 'intelligently' choose your folder type based on its contents. But this means that a Download folder will change to a Music folder if you grab a few MP3s. To fix this, go to 'HCU\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell', delete the 'Bags' subkey and then create a new Bags key in the same location. Create a key called 'AllFolders' beneath Bags, and a key called 'Shell' below that. Click it to open 'HCU\Software\Classes\LocalSettings\Software\Microsoft\Windows\Shell\ Bags\AllFolders\Shell'. Rightclick the right-hand pane, choose 'New | String Value' and call this 'FolderType'. Then double-click FolderType and set its value to 'NotSpecified'. You'll still be able to change the folder type, but Vista will no longer assign one. (See steps 10 to 20 here if you need more help.)

7. Easy encryption
Some versions of Windows have always allowed you to encrypt files, but it's an awkward process; you must right-click the file, select 'Properties', click the 'Advanced' button, check 'Encrypt contents to secure data' and then press 'OK' twice. For a simpler alternative, go to
'HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced', create a new DWORD called 'EncryptionContextMenu' and set it to 1. Now you can just right-click a file and select 'Encrypt'.

8. Access folders fast
Get speedy access to any folder by pinning it to the Start menu. Run REGEDIT, go to
'HKCR\Folder\shellex\ContextMenuHandlers', right-click 'ContextMenuHandlers' and click 'New | Key'. Type '' (as ever, without quotation marks) and press [Enter]. Now hold down [Shift], right-click a folder and select 'Pin to Start Menu'.

9. Speed up copy times
Vista gives a high priority to your soundcard, so you should get glitch-free audio no matter what you're doing. This can cause slower network copy speeds, however. To tweak this, browse to
'HKLM\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\Multimedia\
SystemProfile'. Try setting 'NetworkThrottlingIndex' to more than 10 – 50 or 60 should be effective – then reboot and test your network speeds again. Read more here.

10. Fix the drive listing
If Explorer no longer lists your DVD drive (or thinks that it's a DVD-ROM and can't burn discs), go to 'HKLM\System\CurrentControlSet\Control\Class\' and delete the 'UpperFilters' or 'LowerFilters' settings. This usually works, but it may break whatever application caused the problem in the first place. If a program stops working, check to see if it has an update, then reinstall it.

11. Access display settings quickly
Right-click the desktop in Windows Vista and you can't directly access the display settings. Windows 7 will fix this, but in the meantime go to 'HKCR\Directory\Background\Shell', right-click 'Shell', select 'New | Key' and call it 'Display Settings'. Double-click '(Default)' in the right-hand pane and enter 'Display Settings' in the Value Data box. Now right-click Display Settings in the left-hand pane, select 'New | Key' again and call this key 'command'. Double-click this new key's (Default) value and enter this text: 'rundll32 shell32.dll,Control_ RunDLLDESK.CPL,@0,3'. (That's a zero following the @ sign, and take care to use the right cases.) Click 'OK' and right-click the desktop to see the new Display Settings option.

12. Multiple Live Messenger log-ins
By default, Windows Live Messenger only lets you log into one account at a time. To rectify this situation, go to 'HKLM\Software\Microsoft\WindowsLive\Messenger', create a DWORD value called 'MultipleInstances' and set it to 1. Delete the value to restore things to the way they were beforehand.

13. Clean the menus
You've uninstalled an application, but it's left you a gift: several now-useless right-click context menu entries. To fix this, go to 'HKCR\*' and 'HKCR\Directory'. Expand the shell, then the
'shellex\ContextMenuHandlers' keys and look for any keys beneath these that relate to your unwanted command. On our PC, the key 'HKCR\*\shellex\ContextMenuHandlers\7-Zip' links to the 7-Zip context menu, for instance, so to get rid of that we would right-click the 7-Zip part in the left-hand pane and click 'Delete'. But be careful – only delete a key if you're really sure it's the right one.

14. Speed up backups
Windows XP's NTBACKUP improves its performance by maintaining a list of system files it knows you won't want to back up (such as the paging file). Add your own files and folders that you're not bothered about and you'll get even better results. View the list at 'HKLM\SYSTEM\CurrentControlSet\Control\BackupRestore\FilesNotToBackup'.

15. Change the default installation folder
Most installations default to the Program Files folder, but if you want to point this elsewhere, navigate to 
'HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion', change the 'ProgramFilesDir' entry to point at your chosen folder and reboot.

16. Rename drives
Add a memory card reader to a PC and Explorer will often cram the Computer folder with similar sounding drive names ('Removable Drive D:', 'Removable Drive E:' and so on), making it difficult to tell them apart. But it doesn't have to be that way. If drive G: is a CompactFlash slot, say, then a few Registry tweaks can change it to read 'CompactFlash(G:)', making things much clearer. Start at 'HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer' and create a key called 'DriveIcons'. Within that, create a key with the drive letter ('G' in this example), and within that, create a new key called 'DefaultLabel'. Double-click this key's (Default) value entry, give it the name 'CompactFlash' (or whatever you like) and click 'OK'. Restart Explorer or press [F5] to see the change.

17. Wipe the page file
Windows stores memory pages in its paging file as you work. That's fine unless an intruder gets access to your system. If so, they may then be able to browse the paging file and extract confidential information. To avoid this, go to 'HKLM\SYSTEM\CurrentControlSet\Control\SessionManager\MemoryManagement',
set the 'ClearPageFileAtShutdown' value to 1 and reboot. Windows will now wipe the page file every time it shuts down, lengthening the process but increasing your security.

18. Crash on cue
Blue-screen crashes are usually bad news, but occasionally you might want to initiate one yourself. You might need to test Windows' error reporting, for example. There's a Registry trick that can help achieve this.
Go to 'HKLM\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters', create a DWORD called 'CrashOnCtrlScroll' and set it to 1. Reboot your computer, and to crash it just hold down the right [CTRL] and press [Scroll Lock] twice. Use this sparingly: it's a crash like any other, and there's a chance of hard drive corruption. To be safe, delete the CrashOnCtrlScroll value when you're done.

19. Save CPU time
The average PC has several programs wanting to use the processor at any one time, and so Windows allocates each a period of CPU time – a 'quantum' – before moving to the next. By default this is very short, which makes for a responsive PC, but it sometimes means that Windows wastes time just switching between processes. The solution? You can try what Windows Server does: set up your system to use a long quantum. Set  'HKLM\SYSTEM\CurrentControlSet\Control\PriorityControl\Win32PrioritySeparation' to 16 (hex). Longer quantums mean fewer switches between programs and so less wasted time. It can push some programs too far, though, and you might begin to notice games lagging or video playback becoming less smooth. If you spot any problems, just restore the original Win32PrioritySeparation value (probably 26 hex).

20. Disable AutoRun
Windows' AutoRun feature is a potential security risk because it automatically runs code when you
connect removable devices to your PC. If you can put up with the inconvenience of doing things manually then it's safest to disable it. On some systems, this can only be done from the Registry. To do so, go to 'HKLM\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\IniFileMapping' and create a key called 'Autorun.inf'. Next, double-click the new key's (Default) value and enter the new value '@SYS:DoesNotExist'. Now delete the Registry key 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MountPoints2'.
Windows now won't automatically run any code on CDs, DVDs or removable drives; you will have to manually launch it.
NOTE: Be very careful while doing this. Always make a backup of the Registry. DO NOT PLAY WITH IT as it can crash the whole system.
Read More ->>

Remove Unwanted Memory from pc

How to Remove Extra Unwanted Spaces From C drive

  • >Press Win + r (RUN)
  • >type cleanmgr.exe
  • >Select C: drive
  •  
or
  • run (press win+r)
  • type
  • %temp%

Now delete all File ignore or skip those file which is not able delete
Done
Read More ->>

Total Pageviews

Powered by Blogger.

Labels

Antivirus (2) Cool Tricks (4) Facebook (11) Gaming (1) Google tricks (12) Hacking (2) Notepad Tricks (5) Softwares (3) Windows (14)

Contributors

Search This Blog