2
Powershell을 사용하여 USB 외장 드라이브 분리
powershell을 사용하여 외장 USB 드라이브를 분리하려고하는데 성공적으로 수행 할 수 없습니다. 다음 스크립트는 내가 사용하는 것입니다. #get the Win32Volume object representing the volume I wish to eject $drive = Get-WmiObject Win32_Volume -filter "DriveLetter = 'F:'" #call dismount on that object there by ejecting drive $drive.Dismount($Force , $Permanent) 그런 다음 컴퓨터를 …