Search This Blog

Monday, July 17, 2017

How to hide drive from cmd and How to make a boot able pen drive

How to hide drive from cmd:
Go to CMD: diskpart

:list volume
:select volume (number of volume; like 3)
:remove letter (name of volume; like e)

To retrieve :
select volume (number of volume; like 3)
:assign 

it will back successfully .

How to make a boot able pen drive: 
cmd: diskpart
:list disk
:select disk (number of your pen drive like; 1) (Please be careful to select disk, Disk 0 is always may hard disk) 
:clean ( to format all )
:create partition primary
:active
:format fs=fat32 quick
:assign

No comments:

Post a Comment

Restrict File Upload by File Type in Oracle Apex

If you want to restrict file upload by file type/extension/format you can follow the below steps.  Goto File Browser Item --> Advanced --...