Skip to content

Instantly share code, notes, and snippets.

@twilson90
twilson90 / EFI Partition Creation Guide for Windows 10
Last active September 6, 2021 09:30
EFI Partition Creation Guide for Windows 10
Boot with Windows Install Disk / Recovery Tool USB
Advanced Options -> Command Prompt:
Enter the following (hashtags are comments, not part of the command):
diskpart
list disk
select disk N # N refers to the disk which contains the deleted the EFI System partition.
list partition
Site Updates:
- [General] Minor styling improvements.
- [General] Disabled automatic 30 day log out.
- [Admin] Fixed bug whereby scheduled posts were not sending subscribers notifications.
- [Live] Popout menu with options for each comment:
Information: Display detailed metadata about the comment and the author, including IP-based geo-location (accurate).
Report: Flag an inappropriate comment for moderation.
- [Live] Improved comment moderation system.
- [Live] Restored toggle button cycle for aspect ratio 4:3 (Cropped).
- [Live] New option 'Comment Limit'. Default (256), Max (512)
var fs = require("fs-extra");
(async()=>{
var buffers = [];
buffers.push(await fs.readFile("flashplayer_18_sa2.exe"));
var swf = await fs.readFile("wrapper.swf");
buffers.push(swf);
var end = [0x56, 0x34, 0x12, 0xFA];
var sizeTemp = swf.length;
while (sizeTemp>0) {
var fs = require("fs-extra");
function make_title_buffer(s) {
return Buffer.from(s.split("").join("\0"));
}
var flash_player_version = 18;
var orig_title = `Adobe Flash Player ${flash_player_version}`
var orig_title_buffer = make_title_buffer(orig_title);
var new_title = "Wasted Youth, Part 1";