如何在批处理文件中运行Diskpart?

时间:2016-11-22 09:48:15

标签: batch-file cmd

我创建了文本文件,其中包含dispart命令,我从中运行它 批处理文件使用以下代码:

array(
    ......
    'components'=>array(
        ......
        'db'=>array(
            'class'=>'CDbConnection',
            'connectionString'=>'mysql:host=localhost;dbname=testdb',
            'username'=>'root',
            'password'=>'password',
            'emulatePrepare'=>true,  // needed by some MySQL installations
        ),
    ),
)

希望,这样可以正常工作,但有些东西我不希望它再次发生,而且当Dispart.exe打开时。它正在打开最大化。 那么如何使其开放最小化?

1 个答案:

答案 0 :(得分:0)

.bat文件中使用此命令:

start /min diskpart

希望这会有所帮助。祝你好运!