Search This Blog

Friday, July 5, 2013

What about CON folder

Today I am open my facebook profile and View an interesting topic about CON folder in Windows OS.
“CON” name is the microsoft stuff. There are many reserved name in the operating system for accessing the shearing files folder. like con, lpt, com1, com2, com3 and many more. That why u can not create the folder of such name on desktop. But in dos system this is not happen, thats why dos create the folder of such name but its again a Virtual folder, when you see the properties of such folder it shows 0 bytes even it contain the data of MBs or GBs.

Read More>>

Make Bootable USB Drive with Windows Server 2008

A bootable USB Drive is a alternative way to install operating systems on netbooks without optical drives, or carrying around a Live OS with you at all times. It especially makes sense if you’re installing software on a machine that otherwise has no need for an optical drive:
Open “CMD”
C:\> diskpart

DISKPART> list disk

     Select the USB device from the list and substitute the disk number below
     when necessary

DISKPART> select disk 1
DISKPART> clean
DISKPART> create partition primary
DISKPART> select partition 1
DISKPART> active
DISKPART> format fs=fat32
DISKPART> assign
DISKPART> exit

xcopy Y:\*.* /s/e/f Z:\

Read More>>>