HN.zip

Windows recovery environment and bootable USB creator in 200kb

171 points by windozedev - 37 comments
torphedo [3 hidden]5 mins ago
Wow, this is the largest batchfile I've ever seen! And I thought my 200-ish line one from high school was pushing it. Honestly huge respect for having the dedication to go this far with batch. I knew about the pseudo-function-calling features and a little bit of the weird syntax, but just skimming there's a lot of stuff in here I haven't seen before. Usually people saying "X in Y KiB" are doing some crazy linker shenanigans, so this was refreshing.

Also, "Windows To Go" and "Windows To Stay" are really funny feature names.

Mogzol [3 hidden]5 mins ago
Speaking of large batch files, if anyone has ever softmodded a Wii, there is a good chance you used ModMii, which is by far the largest batch program I've seen. The main script [1] is a batch file that clocks in at over a megabyte. I used to be pretty into the Wii modding scene and remember talking with the author of that script about random batch things a few times. I can't imagine maintaining a file that big.

[1] https://github.com/modmii/modmii.github.io/blob/master/Suppo...

sunaookami [3 hidden]5 mins ago
Don't forget that it even has a GUI made with Wizard's Apprentice which is created and controlled by a similar large batch file: https://github.com/modmii/modmii.github.io/blob/master/Suppo... :D
nyanpasu64 [3 hidden]5 mins ago
It's sad that so many projects simply stopped updating a decade or more ago... the first 90% of work is building a USB loader and the second 90% is maintaining it, and neither the author nor I want to figure it out. I read online that SNEEK lets you screenshot games... it doesn't work (wrong filesystem? neek2o and sneek have a different feature set?). Also god all those Exception (DSI) and learning a decade later they were segfaults... yummy memory-unsafe embedded programming.

I found that ModMii leaked some global variables from a (failed) SNEEK install to a system menu mod('s help file), and being written in Batch certainly explains things...

sllabres [3 hidden]5 mins ago
I once knew a (very old) old accounting system that had to work around a 64kB limit and therefor used a programmatically generated set of many hundreds batch files batch files calling each other (not containing the program logic of course). But each of them was less than 100 lines long.

But 27 kLOC for the WII thing or 3 kLOC for the recovery tool which even looks a bit more convoluted then the WII thing sounds interesting to maintain. On the other hand, if it works, no dependencies no 200 MB binary blob.

Kwpolska [3 hidden]5 mins ago
"Windows To Go" is the official name for a former Windows feature.

Writing a Batch script of any length, let alone 3085 lines, is completely insane with PowerShell being part of the default install.

maccard [3 hidden]5 mins ago
I write tools for video game studios occasionally. You can’t double click a ps1 script and have it run, and you need to change the execution policy for powershell scripts to run. Those two hurdles for non technical people mean that we still write batch scripts
TiredOfLife [3 hidden]5 mins ago
But you can run .ps1 from .bat that you doubleclick.
maccard [3 hidden]5 mins ago
If you are writing a bat wrapper, you might as well write the wrapper in c# at that point (which I do for anything that requires a condition or a loop)
naikrovek [3 hidden]5 mins ago
The threshold you’ve chosen is crazy low, for me.

A condition or a loop? You’re writing everything in C# then. Everything worth writing, anyway.

kachapopopow [3 hidden]5 mins ago
That still has the same issue. Powershell will refuse to run scripts that are not signed by default.
andy81 [3 hidden]5 mins ago
You can use the -ExecutionPolicy argument to get around that.

It's not a security boundary, just something to stop users accidentally opening an email attachment like they will with bat/vbs.

ffsm8 [3 hidden]5 mins ago
Which is pointless if it's only for powershell.... But hey, security theater is kinda the MO of Microsoft if you think about rotating password policies which have a maximum password length etc
naikrovek [3 hidden]5 mins ago
Sign the powershell script. It’s not that large of a hurdle to get a code signing cert, though it certainly isn’t trivial.
Firehawke [3 hidden]5 mins ago
Not to get TOO far off topic, but you just reminded me of the 300+ line batch file I was using for my BBS back in the early 90s. Lots of errorlevel checks to handle door transitions, Fidonet, etc.

You could get some ridiculously complicated batch files if you really needed the added functionality.

efdee [3 hidden]5 mins ago
Wow, unexpected trip down memory lane. Thanks.

Press ESC twice for nostalgia.

windozedev [3 hidden]5 mins ago
Yeah, it's a wild batch file. The idea was to use live of the land commands for as much as I could get away with.
rosywoozlechan [3 hidden]5 mins ago
There's no license specified for what it's worth.
theGeatZhopa [3 hidden]5 mins ago
For what it's worth, there don't need a license be specified :)

Unspecifyable, because it's worth.

userbinator [3 hidden]5 mins ago
AFAIK the "Windows Recovery Environment" is actually a stripped-down minimal version of Windows missing most of the normal userland and parts of the kernel, which people have extended and customised in various ways.
windozedev [3 hidden]5 mins ago
The overall design was inspired by the simple text based ui of clockworkmod recovery for android. There are zero dependencies as well.
robotnikman [3 hidden]5 mins ago
>clockworkmod recovery

Now there's something I haven't heard of in a while. I remember using it on the original Droid phone when messing with roms

holysheet [3 hidden]5 mins ago
One of the more impressive shell based tools that I've tried. Fitting into 200 kilobytes is an accomplishment in and of itself. Clever.
proneb1rd [3 hidden]5 mins ago
Insane. 3k loc shell script. I admire people that can maintain things like this. For me it’s unapproachable hot mess.
diggan [3 hidden]5 mins ago
Is it really that unapproachable? I confess, I also prefer files that aren't 3k lines long, but when I have to deal with them, I basically deal with them as I deal with many files, one tab/split per "area" I want to work with. So if I'm working with three areas, I have three splits open that are focused on each area, and jump between the splits. Basically the same as if it was three files.
firecall [3 hidden]5 mins ago
Looks cool, but what does this do that the standard Windows Recovery Environment Partition doesnt do?

Maybe situations where the standard recovery env is borked? Was that the case in the recent CrowdStrike debacle?

neRok [3 hidden]5 mins ago
> Was that the case in the recent CrowdStrike debacle?

Nah, it still worked fine on my work laptop and allowed to boot in to safe mode, which also worked (didn't crash).

theGeatZhopa [3 hidden]5 mins ago
The biggest 3. problems in resolving clownstrike debacle are to know what and where to delete (if you don't know, you also can delete everything as well), bitlocker locked hard drives and having a lot of VMs running on Windows out there.

The first problem, however, is more significant, but you even won't come to solving if you've encrypted filesystem. And then you have to do it for each and every device/VM. It's just too much.

if you could boot into safe mode, then you already knew what to do and what to delete. Just imagine - bsod - you don't know why. A hint may be shown ;)

4jck [3 hidden]5 mins ago
can I use this to install monitor drivers? make a bootable usb, add the installer onto the bootable usb and install the firmware? https://www.lg.com/au/support/product-support/cs-32GS95UE-B....

I thought about doing it through WINE, but that kinda scares me.

unfortunately my monitor received new firmware only installable through an exe, I only have my linux desktop

zxexz [3 hidden]5 mins ago
My process for this is usually: - Poke at the EXE for a few hours to days. Sometimes it's just a self-extracting executable and you can just find the raw firmware binary. Sometimes you have to spend a few days relearning the basics of R2/Ghidra, and eventually can grab the firmware. - Then, if you've found it, figure out how to load it. When you think you have an idea, make sure it's really late and you're deliriously tired, so you're SURE you can do it without bricking it. Plus, where's the fun in not bricking it? You can always take that random Pomona SOIC knockoff clip and start dumping random ROMs off whatever chips. - Finally, if you were awake enough to not fall for the previous step - scrap all the work you've done, and commit to spending a while figuring out how to create a bootable windows USB. Or, if you can't get that to work for one of the many possible reasons, borrow a windows laptop. But you're probably too tired for that at this point anyway, so create a windows VM in QEMU, and repeatedly restart your machine as you mess with configs to get passthrough working for whatever you need to get the VM to connect to the device. Launch the utility, start the EXE - it starts working. Get so excited, you accidentally disconnect everything halfway through. Somehow the monitor seems to still work, but you swear there's just something not quite right about it. A few years later, take out the SOIC clip again. (based on an agglomeration of my personal mishaps)

In all likelihood, yes - this project will likely allow you to do that perfectly fine! But I'd be prepared for the installer to be total bloatware that doesn't work or works for most of the process before something goes wrong.

ChoGGi [3 hidden]5 mins ago
If you're okay with third party software, you can make a bootable usb to update firmware from.

https://www.hirensbootcd.org/

windozedev [3 hidden]5 mins ago
There's a few ways you could do it, but it's a windows command shell script and only works under windows.
letaem77 [3 hidden]5 mins ago
What a name!
heraldgeezer [3 hidden]5 mins ago
Reminds me of stuff like hirens boot cd but this seems more complex to use
kosolam [3 hidden]5 mins ago
Eli5?
windozedev [3 hidden]5 mins ago
Extract the zip into a new folder. Insert a w10/w11 disc or mount an ISO. Enter basic mode, it will take you through the steps.
zx1000 [3 hidden]5 mins ago
Dude...