MS批次:检查驱动器正在使用(MS Batch: Check if drive is in use)

2019-09-19 12:37发布

我需要一个应用程序来检查驱动器(Z :)在使用(在使用例如,打开)。

我的批处理文件看起来是这样的:

Mount Z:
wait 15 minutes
check if drive Z: is in use

IF NOT: unmount Z:
ELSE: wait 15 minutes
repeat..

有没有这方面的任何命令? 谢谢!

Answer 1:

使用是否存在IF NOT EXIST组合:

:FindDrive
if exist Z:\nul goto Mounted
timeout /T 5
goto FindDrive
:Mounted

NUL是存在的每个文件夹中的一个“虚拟”的文件。 因此,如果C:\ anypath \ NUL存在,驱动器存在。



Answer 2:

@echo off
echo --------------------------------------------------
echo Checking if Y:\10.210.12.8\Rubicon Drive exist? Please wait...
echo IMPORTANT: DO NOT TOUCH THE COMPUTER DURING THIS PROCESS
echo --------------------------------------------------
Rem : Bill Kingsley

SET LOG=c:\Temp\logs

echo **********[%Date% - %Time%****************>%LOG%\Mapdrive.log

  IF EXIST Y:\  (
        echo. 
    echo The drive is already mapped. 
    echo ...Check if the mapp drive is accessible?....
        echo.
    dir y: >>%LOG%\Mapdrive.log
    if ERRORLEVEL 1 GOTO MAPDRIVE     
        GOTO SKIPPED
    ) ELSE (
      echo The drive has not yet been mapped.
      goto MAPDRIVE   
      )
goto end


:SKIPPED
echo.
Echo ******Mapped Drive Y is working Fine********
Echo.
Goto end

:MAPDRIVE
Net use Y: /d
net use Y: \\172.31.161.100\eBBS 
      dir Y: >> %LOG%\Mapdrive.log
  if errorlevel 0 goto SKIPPED
  if errorlevel 1 goto MAPDRIVE  
Goto end

:end 
echo ----------------------------------------
echo Maintenance check complete. check log in %LOG%
echo ----------------------------------------
rem exit


Answer 3:

如果你有你的电源选项正确设置它会从纺纱停止拍打,如果它不是在使用中。

在Windows 7中,在你开始寻找电源选项。 在当前的电源计划命中改变计划选择。 然后点击更改高级电源选项,进入到硬盘驱动器。

http://blog.laptopmag.com/windows-advanced-power-options-explained



文章来源: MS Batch: Check if drive is in use