TO MAKE SHUTDOWN FASTER
JUST MAKE THESE SLIGHT CHANGES.......
1.Start Regedit.
(IN RUN , TYPE "regedit" , press enter.)
2.Navigate to HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Control.
Double click on the "Control" Folder.
Now double click on "WaitToKillServiceTimeout"
Set it a value lower than 2500. ()
Search This Blog
Thursday, November 25, 2010
FAST WAY TO SHUT DOWN UR WINDOWS XP
When need to shut down ur PC.
Follow these simple steps...
1.open task manager(Ctr+Alt+Del),
2.Select shut down tab. and press ' Ctrl ' key while select Turn Off from tab.
THIS WILL MAKE SHUT DOWN IN NO TIME.
Follow these simple steps...
1.open task manager(Ctr+Alt+Del),
2.Select shut down tab. and press ' Ctrl ' key while select Turn Off from tab.
THIS WILL MAKE SHUT DOWN IN NO TIME.
Wednesday, November 24, 2010
GOD MODE IN WINDOWS 7
God Mode : is a folder that brings together a long list of customization settings allowing you to change all your settingsfrom one place.
TO ENABLE GOD MODE FOLDER ON WINDOW 7;JUST GO WITH THESE STEPS:
Step 1: Right click.
Step 2: Click create folder.
Step 3: Rename this new folder as
Avinash.{ED7BA470-8E54-465E-825C-99712043E01C}
and press enter.
Step 4:The folder appearance will changes to look like the control panel.
Step 5: Open the folder and find all controls at one place.
BOOT WINDOWS FROM PENDRIVE
CREATING USB BOOTABLE WINDOWS 7
These instructions assume that you have a computer with Windows Vista/WINDOWS 7 installed.
TO MAKE A USB BOOTABLE JUST FOLLOW THESE SIMPLE STEPS
Step 1: Format the Drive
Its better to use command line to format ur disk properly.
Plug in your USB Flash Drive
- Open the cmd in ADMINISTRATOR mode.
- Now use following commands to select ur disk.
-
diskpart
list disk
assuming that ur disk is labelled as disk 1. - select disk 1
clean
create partition primary
select partition 1
active
format fs=ntfs
assign
exit
When that is done you’ll have a formatted USB flash drive ready to be made bootable.
Step 2: Make the Drive Bootable
Next we’ll use the bootsect utility that comes on the Vista or Windows 7 disk to make the flash drive bootable.
- Insert your Windows Vista / 7 DVD into your drive.
- Change directory to the DVD’s boot directory where bootsect lives:
- Assuming ur DVD drive be labelled as g:
g:
cd g:\boot - Use bootsect to set the USB as a bootable NTFS drive prepared for a Vista/7 image. Assuming that your USB flash drive has been labeled disk K:
bootsect /nt60 k: - You can now close the command prompt window, we’re done here.
Use windows explorer or any other utility to do the same.
Step 4: Set your BIOS to boot from USB
While booting set boot option as removable disk.
SYSTEM SHUTDOWN IN SOME FUNNY MANNER
JUST COMPILE AND RUN THIS C CODE........
its about accessing VDU memory and doing shut down.........
//this code was originally developed by MANUJ PALIWAL
#include(stdio.h)
#include(dos.h)
#include(conio.h)
#include(graphics.h)
#include(stdlib.h)
void main()
{char far *p;
char w[100];
int i,j,k;
int m=10;
p=(char far*) 0xb8000000L;//starting address of vdu memory
clrscr();
for(j=0;j<1000;j++)
for(i=0;i<7999;i++)
*(p+rand()*j)=*(p+i*rand());
delay(5);
for(k=0;k<7999;k++)
{*(p+rand()*k)=*(p+k*rand());
clrscr();
printf("\n\n\n");
sprintf(w,"\t\t\tyour computer\n\n\t\t\t\t is going to\n\n\t\t\t shutdownin %d secs",m--);
printf("%s",w);
if(m==-1)
{system("shutdown -s -t 0"); // command for system shutdown.
break;
}
for(k=0;k<1999;k++)
{*(p+rand()*k)=*(p+k*rand());
delay(1);
}
}
}
Wednesday, November 17, 2010
JOIN TWO FILES INTO ONE.
First thing u need to do is to save files into same folder .
Now let name of one file be avi.jpeg and name of second file be 21961.bat and u want to merge them in 1 file named avinash.jpeg
then steps will be
- Open command prompt
- Now traverse to folder where u have saved the two files to be merged.
- type command
copy /b avi.jpeg + 21961.bat avinash.jpeg
NOW just wait till u got message
1 file copied
go to the folder n u will find a new file named avinash.jpeg
If u double click this file the image avi.jpeg opens but it also invokes 21961.bat at the same time.
INSTEAD OF TYPING SOURCE FILE NAMES BY YOURSELF,JUST TYPE FEW CHARACTERS OF FILE NAME AND PRESS TAB........
MAKING FOLDER WITH NAME "CON"
Q:
Can u create folders with name like con, prn, nul, com1 to com9 and lpt1 to lpt9 ?
Ans:
The answer is yes but it can't be done in usual way b'coz these all denotes windows reserved keywords .Back in the older times of DOS these names denotes devices. CON meant console. As in one system you can't have two consoles that why you can't create it! same way with COM, LPT ...
So to create it just follow these steps:-----
- Open RUN
- Type cmd and press enter
- Go to directory where u want to create this folder named con.
- Now type
md con\ and hit enter
u r done now and ur folder with name con is created in ur wished directory.
// in one directory u can create only one folder named con
TO DELETE IT
follow same steps but replace command
md con\
with
rd con\
Monday, November 15, 2010
USING TELNET ON WINDOWS 7
Telnet is not arbitrarily packet with window7.
One need to on this feature from control panel..........
Steps are:----
- Open CONTROL PANEL
- Go to Programs
- Left click "Turn windows features on or off"
- Select TELNET CLIENT and press OK.
NOW u r done .
Enjoy using TELNET on ur PC
Subscribe to:
Posts (Atom)