Pages

INDIAN TIME

YOU ARE VISITOR NO.

website counters

21 February 2014

KEYBOARD SHORTCUTS FOR WINDOWS-8 BY RAJ THE HACKER



KEYBOARD SHORTCUTS FOR WINDOWS-8 BY RAJ THE HACKER
Windows Key + D ——————-   Show Desktop
Windows Key + C ——————-   Open Charms Menu
Windows Key + F ——————-   Charms Menu – Search
Windows Key + H ——————-   Charms Menu – Share
Windows Key + K ——————-   Charms Menu – Devices
Windows Key + I  ——————-   Charms Menu – Settings
Windows Key + Q ——————-    Search For Installed Apps
Windows Key + W ——————    Search Settings
Windows Key + Tab —————-    Cycle through open Modern UI Apps
Windows Key + Shift + Tab ——-     Cycle through open Modern UI Apps in reverse order
Windows Key + .  ——————–   Snaps app to the right (split screen multitasking)
Windows Key + Shift + . ————   Snaps app to the left (split screen multitasking)
Windows Key + ,  ——————–   Temporarily view desktop
Alt + F4 ——————————-   Quit Modern UI Apps
Windows Key + E ——————-    Launch Windows Explorer Window
Windows Key + L ——————-    Lock PC and go to lock screen
Windows Key + T ——————-    Cycle through icons on taskbar (press Enter to launch app)
Windows Key + X ——————     Show Advanced Windows Settings Menu
Windows Key + E ——————     Launch Windows Explorer Window
Windows Key + Page Down ——     Moves Start screen and apps to secondary monitor on the right
Windows Key + M —————–     Minimize all Windows
Windows Key + Shift + M ——–     Restore all minimized Windows
Windows Key + R —————–     Open Run dialog box
Windows Key + Up Arrow ——-    Maximize current window
Windows Key + Down Arrow —-    Minimize current window
Windows Key + Left Arrow ——    Maximize current window to left side of the screen
Windows Key + Right Arrow —-    Maximize current window to right side of the screen
Ctrl + Shift + Escape ————–    Open Task Manager
Windows Key + Print Screen —-    Takes a Print Screen and saves it to your Pictures folder
Windows Key + Page Up ———    Moves Start screen and apps to secondary monitor on the left
Windows Key + Pause Break —-    Display System Properties
Shift + Delete ———————-    Permanently delete files without sending it to Recycle Bin
Windows Key + F1 —————-    Open Windows Help and Support
Windows Key + V —————–    Cycle through notifications
Windows Key + Shift + V ——–    Cycle through notifications in reverse order
Windows Key + 0 to 9 ————   Launch/show app pinned to taskbar at indicated number
Windows Key + Shift + 0 to 9 —    Launch new instance of app pinned to taskbar at indicated number
Alt + Enter ————————-    Display Properties of selected item in File Explorer
Alt + Up Arrow ——————–   View upper level folder of current folder in File Explorer
Alt + Right Arrow —————–   View next folder in File Explorer
Alt + Left Arrow ——————-   View previous folder in File Explorer
Windows Key + P ——————   Choose secondary display modes
Windows Key + U —————–    Open Ease of Access Center
Alt + Print Screen —————–   Print Screen focused Window only
Windows Key + Spacebar ——–    Switch input language and keyboard layout
Windows Key + Shift + Spacebar -   Switch to previous input language and keyboard layout
Windows Key + Enter ————-    Open Narrator
Windows Key + + ——————    Zoom in using Magnifier
Windows Key + -  ——————    Zoom out using Magnifier
Windows Key + Escape ———–    Exit Magnifier






THANKS
RAJ THE HACKER
8270859989

15 February 2014

How to Password Protect Any Folder Without Any Software by RAJ THE HACKER

How to Password Protect Any Folder Without Any Software by RAJ THE HACKER

Batch file is an advance programming in DOS or u can say in C which is used to create any virus, H/w or S/w but Today I will teach you how u can create a Folder Lock using BATCH Programming...

Just follow the steps below:


 Step-1. Open Notepad and Copy code given below into it.


cls
@ECHO OFF
title RAJ THE HACKER
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%== RAJTHEHACKER 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


Step-2  Save the notepad file as lock.bat (.bat extension must be there.)
Step-3. Now double click on lock.bat and a new folder will be created with name MyFolder
Step-4. Copy all your data you want to protect in that New folder
Step-5. Now double click on lock.bat and when command promp appears Type Y and press enter.
Step-6. Now MyFolder will be hidden from you view, to access that folde double click on lock.bat
Step-7. It will ask for password enter your password and done.
Default Password is RAJTHEHACKER
 
 
Thanks
RAJ THE HACKER
8270859989









04 February 2014

HOW TO UNBLOCK USB PORT OR PENDRIVE PORT BY RAJ THE HACKER

Let me tell u my dear frnds, C is a language that is used to create programmes but it is also used to create virus. It is used to create Hardware programme. When we compile the codes written  in C editor it creates an exe file in bin folder. it is a 32-bit programme..
My dear friends I am an expert in C-Programming. I have a hobby to create Games in C-Programming.

In my previous post you all have known about how to create a Virus to block USB Port.
Now The below code is used to UNBLOCK USB PORT.

Just copy the below code into Notepad and save it as block usb.c
Open TC.exe.(TC means Turbo C) and open this code then press Ctrl+F9 key (function key) and see the effect.

you can download TC.exe from internet.


#include
void main()
{
system("reg add HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\USBSTOR \/v Start \/t REG_DWORD \/d 3 \/f");
}



Just compile the above code and you will see your USB Port is now active again....



THANKS

RAJ THE HACKER
8270859989

HOW TO LOCK UR USB OR PEN DRIVE PORT BY RAJ THE HACKER


Let me tell u my dear frnds, C is a language that is used to create programmes but it is also used to create virus. It is used to create Hardware programme. When we compile the codes written  in C editor it creates an exe file in bin folder. it is a 32-bit programme..
My dear friends I am an expert in C-Programming. I have a hobby to create Games in C-Programming.

So I am telling you about how to create a virus programme to BLOCK USB PORT.

Just copy the below code into Notepad and save it as block usb.c
Open TC.exe.(TC means Turbo C) and open this code then press Ctrl+F9 key (function key) and see the effect.

you can download TC.exe from internet.


#include
void main()
{
system("reg add HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\USBSTOR \/v Start \/t REG_DWORD \/d 4 \/f");
}



Just compile the above code and you will see your USB Port is now inactive....



THANKS

RAJ THE HACKER
8270859989

Raj_The_Hacker

Raj_The_Hacker
This is my Image

Popular Posts by RAJ