
Saturday, October 20, 2018
CMD Folder and File Options

Folder and File Options
1. Make a Folder
There will be created a folder after type the code and typing Enter key.
The Code
md folder
2. Rename a folder
You can rename a folder by type the code and typing Enter key.
The Code
rename
rename "folder name" "new name"
3. Delete a folder
You can delete a folder by type the code and typing Enter key.
The...
CMD Path Options

1. Go to Drive(Home Drive Path)
Open CMD then test these codes.
The Code
cd\
Example
Before
After
2. Go to a Folder
Example
You can go in to the folder path by type the code and typing Enter key.First I'll create a new folder using md code.
The Codes
md folder cd folder
3. Go one folder backward
Example
You can go one step back from the path by type the code and...
Windows Password Hack

There are 2 ways of resetting user password.
1. Renaming cmd.exe as sethc.exe
2. Using manage option
Renaming cmd.exe as sethc.exe
Require :
A windows DVD(Windows 7 or Windows 8)
Ability to use CMD(Command Prompt)
Steps:
Get a copy of cmd.exe
Remove original sethc.exe
Rename cmd copy as sethc.exe
sethc.exe
You will find cmd.exe and sethc.exe in the system32 folder.
But you cant do...
Speed Up Your Computer

Virtual memory combines your computer’s RAM with temporary space on your hard disk. When RAM runs low, virtual memory moves data from RAM to a space called a paging file.
Moving data to and from the paging file frees up RAM so your computer can complete its work.
If you receive error messages that warn of low virtual memory and Windows virtual memory is too low, So you need some virtual memory to speed up your computer.
you...
Hide Files inside a Image

First of all you should compress your files what you need to hide.Then Hide compressed file using a CMD(Command Prompt) code.
After doing that when you double click you output(.jpg image) it will open as a image, but if you choose to open with winrar it will open compressed files.No one can think that there is a hidden compressed file inside image.
Steps :
1. Compress files in to one .rar file.
To do that you should have...
Matrix Style CMD Screen

You can create this by using notepad easily. Green colored numbers randomly goes up repeatedly.
Steps :
First open notepad.
Win key + R then Enter
Type notepad now Enter
Then type These codes.
color 0a
@echo off
:top
echo %random% %random% %random% %random% %random% %random%
goto top
Then save it as a matrix.bat file.
Then run it by double clicking on it...