A. You create a partition by using the Bmpart utility within an ADS task sequence. The operation passes the partition's size to the Bmpart utility as a command parameter. However, if you want to create a partition that uses the remaining free space, specify the -c switch and no size parameter, as the following sample portion from an ADS task sequence shows:
 <task description="Partition Remainder of Disk" doesReboot="false"><br>    <command>/BMONITOR/bmpart.exe</command><br>    <parameters><br>       <parameter>\device\harddisk0</parameter><br>       <parameter>-init</parameter><br>       <parameter>-c</parameter><br>    </parameters><br> </task>
0 comments
Hide comments