I am trying automate some commands using DISKPART. I am booting from a WinPE disk and running DISKPART -s scriptname.s . When I run my script it selects the correct disk and cleans it and quits. I've tried various combinations to try and get it to run the entire process and it just quits after cleaning the disk.
I am trying to get DISKPART to clean the disk, create 2 partitions. 1 - 100mb NTFS primary partition and 1 - NTFS primary paritition with remaining free space.
Could someone help me put together the correct script? I'm not opposed to making the script a batch file either. My script is listed below.
select disk 0
clean
CREATE PRIMARY PARTITION SIZE=100
CREATE PRIMARY PARTITION
SELECT PARTITION 1
FORMAT FS=NTFS QUICK
SELECT PARTITION 2
FORMAT FS=NTFS QUICK
Our community of experts have been thoroughly vetted for their expertise and industry experience.