I am trying to create a script for use with Windows PE bootable USB key that will test the performance of the local hard drive. Since not every system has the same hard drive letters assigned to the local disks, I tired to have the script test them one by one accepting it if one fails. Here is the disk section of the script:
SETDISK "C:"
RUN DI_ALL
SETDISK "D:"
RUN DI_ALL
Now when I have a drive that has less than 0.52GB it pops up a warning message which stops the script till it is accepted I have tried the SUPPRESSWARNING ON before the commands but I still get the pop up. Is there anyway to stop these pop ups from happening?
SETDISK "C:"
RUN DI_ALL
SETDISK "D:"
RUN DI_ALL
Now when I have a drive that has less than 0.52GB it pops up a warning message which stops the script till it is accepted I have tried the SUPPRESSWARNING ON before the commands but I still get the pop up. Is there anyway to stop these pop ups from happening?
Comment