https://github.com/patatetom/powershellburner
PowerShell script intended to « burn » a raw disk image file on a removable USB drive
https://github.com/patatetom/powershellburner
burner iso-image powershell powershell-script raw-image usb usb-drive windows writer
Last synced: 7 months ago
JSON representation
PowerShell script intended to « burn » a raw disk image file on a removable USB drive
- Host: GitHub
- URL: https://github.com/patatetom/powershellburner
- Owner: patatetom
- Created: 2022-07-13T08:57:36.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-28T12:27:20.000Z (about 3 years ago)
- Last Synced: 2025-01-14T05:28:35.253Z (9 months ago)
- Topics: burner, iso-image, powershell, powershell-script, raw-image, usb, usb-drive, windows, writer
- Language: PowerShell
- Homepage:
- Size: 2.89 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PowerShellBurner
[`burn.ps1`](burn.ps1) is a PowerShell script intended to « _burn_ » a raw disk image file on a removable USB drive.
```console
> PowerShell -ExecutionPolicy ByPass -File path\to\burn.ps1 -Image path\to\raw\disk\image.img
```The disk image file will be automatically requested by PowerShell if it is not provided on the command line.
> _Low-level access to a disk requires administrative privileges._
>
> [`burn.ps1`](burn.ps1) has been tested with PowerShell version 5.1.18362.1474 (`$Host.Version`) under Windows version 10.0.18363.0 (`[Environment]::OSVersion.Version`).
>
> [`burn.ps1`](burn.ps1) relies on [`dd-removable.exe`](http://www.chrysocome.net/dd) which is embedded directly in the script in the form of a string variable corresponding to a zip archive encoded in base 64.
---
See also :
- [HDD Raw Copy](https://hddguru.com/software/HDD-Raw-Copy-Tool/)
- [Win32 Disk Imager](https://sourceforge.net/projects/win32diskimager/)