This is my first post i will be updating more and more soon with videos and images
for creating partition we need to create a diskpart script on DELL KACE
Go to library / pre-installation task
choose action / Add new disk part script
Diskpart script with 2 partitions |
select disk 0 clean create partition primary size=102400 select partition 1 format quick fs=ntfs label=OS active assign letter c create partition primary select partition 2 format quick fs=ntfs label=DATA assign letter d exit |
the above example create "C" partition size = 100GB with label "OS" and d partition size = rest of the available space with label "Data"
Diskpart script with 3 partitions C, D, E |
select disk 0 clean create partition primary size=102400 select partition 1 format quick fs=ntfs label=OS active assign letter C create partition primary size=102400 select partition 2 format quick fs=ntfs label=DATA assign letter D create partition primary select partition 3 format quick fs=ntfs label=BACKUP assign letter E exit |
the above example create "C" partition size = 100GB with label "OS", "D" partition size = 100GB with label "Data", E partition size = rest of the available space with label "BACKUP"
for more detail on disk part command visit http://technet.microsoft.com/en-us/library/cc766465(v=ws.10).aspx
Comments