É possível montar / desmontar um disco rígido físico no Windows XP?

19

É possível montar / desmontar um disco rígido físico no Windows XP?

Idealmente, eu gostaria de poder fazer isso a partir da linha de comando para que eu pudesse ter arquivos em lote para fazer isso, por exemplo: mount.cmd unmount.cmd

Além disso, se as unidades puderem ser desmontadas, elas serão desativadas?

    
por tbone 22.05.2009 / 18:45

5 respostas

15

Experimente mountvol [drive:]path /d .

Para, tipo de informação mountvol /? (apenas mountvol ) em cmd.exe.

    
por 02.11.2009 / 07:55
9

Há uma discussão muito boa por cortesia de alguns desenvolvedores loucos , um pouco para baixo e trazem você para:

Microsoft provides a utility called devcon for free download. It's a "Command Line Uility Alternative to Device Manager". It can actually do many things that I won't get into here, but removing a plug & play device is a simple operation once you know the unique name of the device you want to manipulate.

After you've downloaded devcon, run "devcon status *" in a command window. This will generate a list of all the devices on your system. Look for the line which describes your device. In my case for my external hard drive the (very cryptic) line looks like this:

SBP2\MAXTOR&ONETOUCH&LUN0%bl0ck_qu0te%10B9F700AFC279 That full line is a bit much but any substring that remains unique will do. I have another maxtor drive on my system but nothing else that has the phrase "sbp2\maxtor" so I'll use that. The command to safely remove my external drive then becomes:

devcon remove sbp2\maxtor* The "*" at the end is a wildcard and matches the rest of the string.

    
por 22.05.2009 / 19:27
5
C:\Windows\system32\fsutil.exe volume dismount f:
    
por 29.05.2012 / 02:06
1

Supondo que não seja sua unidade principal, fazer um 'chkdsk / f' solicitará que você force uma desmontagem.

C:\WINDOWS>chkdsk /f e:
The type of the file system is NTFS.

Chkdsk cannot run because the volume is in use by another
process.  Chkdsk may run if this volume is dismounted first.
ALL OPENED HANDLES TO THIS VOLUME WOULD THEN BE INVALID.
Would you like to force a dismount on this volume? (Y/N) n

Pode haver maneiras mais elegantes de fazer isso, mas isso é rápido e fácil.

    
por 22.05.2009 / 18:52
1

Sim, existe uma ferramenta que pode fazer isso por você. É muito mais poderoso do que o recurso "Remover o hardware com segurança" das janelas verdes.

A ferramenta chama-se HotSwap!

Usando essa ferramenta, você pode até mesmo desmontar unidades conectadas ao SATA. E sim, ele gira o dispositivo.

Confirmado a trabalhar no Windows 10 e no Windows Server 2016.

    
por 03.08.2016 / 12:07