How to use busybox dd command to flash an image in windows -


i trying write companion application windows , mac os/x flash embedded linux os microsd card single click. use busybox's dd command this. have tried use windows port of this, crashes on windows 10. here few reason's why way.

  • the users of these devices not technical, need 1 click ease of use.
  • the installer needs portable , packaged in way can run off of usb.

currently, have been trying run these commands in windows:

busybox dd bs=4m if=\path\to\img of=e: busybox dd bs=4m if=\path\to\img of=\\.\e: 

both of these return errors. know of way can use busybox dd flash image sdcard in windows?

i know there multiple ports of dd windows , behave different.

this 1 i'm using , works flawlessly in windows 10 using \\.\e: syntax: http://www.chrysocome.net/dd

however, needs run elevated rights ("as admin"), otherwise isn't allowed low-level access devices.


(probably not relevant you, maybe others: careful, dd version offers "special" kind of interpretation of \\?\ confusing. normally, \\?\ can used turn off path validation of win32 subsystem, can access objects in \?? namespace of kernel object manager, including globalroot, in order access kernel path \device\something use \\?\globalroot\device\something. here, dd parses these kinds of paths manually , directly interprets them kernel object manager paths, need use \\?\device\something dd!)


Comments

Popular posts from this blog

html - Styling progress bar with inline style -

java - Oracle Sql developer error: could not install some modules -

How to use autoclose brackets in Jupyter notebook? -