ちょっと古い環境が必要になって昔作ったVMを動かそうとしたところ、
The virtual machine configuration is read-only.
The virtual machine failed to start because the legacy configuration is no longer supported.
Upgrade the virtual machine or retry the operation on a compatible product
というメッセージが出て動かせませんでした。
メニューからもアップデート出来なかったのですが、vmxファイルの以下のように修正すると動かすことができました。
修正前
1 2 |
config.version = "7" virtualHW.version = "3" |
修正後
1 2 |
config.version = "8" virtualHW.version = "4" |
コメントを残す