Created
August 19, 2023 02:14
-
-
Save fragtion/56e1d50d19015612bd6327f9522679b4 to your computer and use it in GitHub Desktop.
vmware-fix-physicaldrive-error
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The operation on file \\.\PhysicalDrive failed ... | |
Fix: | |
1) Physical disk should be offline in the host OS. | |
2) Clear readonly attribute with diskpart | |
``` | |
diskpart | |
list disk | |
select disk 5 | |
attributes disk | |
attributes disk clear readonly | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment