HOME
  Security
   Software
    Hardware
  
FPGA
  CPU
   Android
    Raspberry Pi
  
nLite
  Xcode
   etc.
    ALL
  
LINK
BACK
 

2023/10/20

Windowsで USBメモリ等のリムーバブルメディアの EFI領域をマウントする方法 Windowsで USBメモリ等のリムーバブルメディアの EFI領域をマウントする方法

(How to Mount USB stick Removable media's EFI partition in Windows)

Tags: [Windows], [無人インストール]




● Windowsで USBメモリ等のリムーバブルメディアの EFI領域をマウントする方法

 How to Mount USB stick Removable media's EFI partition in Windows

 注意:マウントしたドライブは「管理者権限」でアクセスできます。
 (テキストエディタで中のファイルを編集する場合はテキストエディタを管理者権限で起動する必要が有る)

 Windows上で Hackintoshの OpenCoreや Clover等の EFIの中身をいじれるので便利です。

●その1(一番簡単)
 管理者権限の Windows PowerShellで下記を実行する
 「管理者権限の Windows PowerShell」は Win + Xキーで「Windows PowerShell(管理者)」で開きます。
 Zドライブにマウント(割り当て)する例
Add-PartitionAccessPath -DiskNumber 4 -PartitionNumber 1 -AccessPath "Z:"

マウントを解除は下記
Remove-PartitionAccessPath -DiskNumber 4 -PartitionNumber 1 -AccessPath "Z:"
※ -DiskNumber 4の数字は「ディスクの管理」の数字と同じです
 「ディスクの管理」は Win + Xキーで「ディスクの管理(K)」で開きます。


●その2(DiskPartの操作に慣れている必要が有る)
 DiskPartでマウントする方法
 ※ Partitionを指定する方法は「The operation is not supported on removable media.」でマウントできませんが、Volumeを指定する方法はマウントでるっぽい。
DISKPART> list vol

DISKPART> sel vol 3

DISKPART> assign letter=z


●その3(対象の USBメディアがどれか?を見た目で確認できない場合が有る)
 mountvolでマウントする方法
mountvol /?
 で沢山表示するので、「これだ!」と思うものを指定します。

mountvol z: \\?\Volume{12345678-1234-0000-1111-ffffffffffff}\



Tags: [Windows], [無人インストール]



[HOME] | [BACK]
リンクフリー(連絡不要、ただしトップページ以外は Web構成の変更で移動する場合があります)
Copyright (c) 2023 FREE WING,Y.Sakamoto
Powered by 猫屋敷工房 & HTML Generator

http://www.neko.ne.jp/~freewing/software/mount_removable_media_efi/