answersLogoWhite

0

You can allocate unallocated disk space by creating a primary or secondary partition (or both if you have enough space). Start->Control Panel->Administrative Tools->Computer Management->Storage->Disk Management, right click on the unallocated space->Create partition and then follow instructions.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What takes up less disk space on the computer?

Compressed files are used to save disk space.


Where swap space reside?

It resides in the Disk(hard disk).


How much disk space will Arma 2 and all of the add-ons necessary for day z through steam need as well as 7 days to die?

Arma 2 and its necessary add-ons for DayZ typically require around 10-15 GB of disk space. Additionally, 7 Days to Die requires approximately 12-20 GB of space, depending on updates and installed content. In total, you should allocate about 25-35 GB of disk space for both games and their associated add-ons. Always check the latest requirements on Steam for the most accurate information.


What variable declaration tells the operating system to allocate space?

In RAM


A variable declaration tells the operating system to allocate space?

In RAM


What kinds of partitions can be created on a dynamic disk?

If there is an unallocated space on your disk, you can create partition directly with this unallocated space; if there is no unallocated space on your disk, you should first shrink a comparatively larger partition to get an unallocated space, then create partition


What is function of disk space analyzer?

A disk space analyzer is a software utility for the visualization of disk space usage by getting the size for each folder (including sub-folders) and files in a folder or drive.


Which has maximum space storage ROM or hard disk?

hard disk


How much MB of data can be stored in a floppy disc?

It depends...when you see a hot girl... Your floppy disk might turn into a hard drive which is really big, but then it depends :)


What unit is the smallest unit of disk space that stores data and information?

It all depends on how your disk is formatted.


Why it is showing error no space in hard disk?

The space on the hard disk is full delete some data from the hard drive it will be ok or add more hard disk in the system


How can we create an unsized array to c programme?

Use a pointer... int a*; a = malloc(sizeof(int)*100); //allocate space for 100 elements free(a); a = malloc(sizeof(int)*1000); // allocate space for 1000 elements free(a);