Skip to content

Instantly share code, notes, and snippets.

View manciuszz's full-sized avatar

MMWorks manciuszz

View GitHub Profile
@manciuszz
manciuszz / FakeSecureBoot.md
Last active February 12, 2026 16:23
Quick guide explaining how to configure a custom UEFI Boot Menu entry that loads the `FakeSecureBoot` driver.

FakeSecureBoot UEFI Menu Setup Guide

This guide explains how to configure a custom UEFI Boot Menu entry that loads the FakeSecureBoot driver using a UEFI Shell script before launching Windows. This allows you to spoof Secure Boot "Enabled" status while keeping it physically disabled in the BIOS, without relying on external USB sticks or manual interaction with a UEFI shell.

1. Prerequisites

  • Secure Boot: Must be Disabled in BIOS.
  • BitLocker: If enabled, have your Recovery Key ready or suspend BitLocker protection.
  • Architecture: 64-bit UEFI system.

2. Required Files

@manciuszz
manciuszz / DeserializeExport.cmd
Created September 19, 2025 03:10
External Deserializer for Vivetool.exe /Export /Filename:features.bin
<# :
@echo off
powershell /nologo /noprofile /command "&{[ScriptBlock]::Create((cat """%~f0""") -join [Char[]]10).Invoke(@(&{$args}%*))}"
exit /b
#>
Add-Type -Language CSharp -TypeDefinition @"
using System;
using System.IO;
using System.Runtime.InteropServices;
@manciuszz
manciuszz / LatestDisplayerDriverUninstallerDownloader.cmd
Created August 8, 2025 17:34
Self-executing latest DDU (Display Driver Uninstaller) tool downloading script.
<# :
@echo off
powershell /nologo /noprofile /command "&{[ScriptBlock]::Create((cat """%~f0""") -join [Char[]]10).Invoke(@(&{$args}%*))}"
exit /b
#>
Function Get-LatestDDUVersion {
$pageUrl = 'https://www.wagnardsoft.com/display-driver-uninstaller-DDU-'
Write-Host "Fetching latest DDU versions from $pageUrl..."
@manciuszz
manciuszz / README.md
Last active July 15, 2025 01:51
Chromium Version 140.0.7291.0 - Manifest V2 support

Want to use those Manifest V2 extensions on the latest version? Look no further.

  1. Enable chrome://flags/#temporary-unexpire-flags-m139
  2. Enable chrome://flags/#allow-legacy-mv2-extensions
  3. ???
  4. Profit.

Badge

@manciuszz
manciuszz / geekbenchLeaderboards.js
Last active July 31, 2025 18:51
A simple script to fetch the 'leaderboards' from Geekbench using JavaScript
{
const PARAMETERS = {
OS: "Windows",
CPU: "10875H"
};
const getScores = function(page) {
return Array.from(page.querySelectorAll('.list-col-inner > .row')).map((row) => {
const model = row.querySelector('.list-col-model').innerText;
const scores = Array.from(row.querySelectorAll('.list-col-text-score')).map((score) => parseInt(score.textContent));
@manciuszz
manciuszz / spotUrlReplacer.userscript.js
Last active March 30, 2025 20:49
Discord's Spotify song link replacer with available alternatives userscript using Songlink/Odesli services.
// ==UserScript==
// @name Spotify Preview to Full Song Replacer
// @version 1.0
// @author MMWorks
// @include https://discord.com/channels/*
// @connect api.song.link
// @grant GM.xmlHttpRequest
// @grant unsafeWindow
// ==/UserScript==
@manciuszz
manciuszz / CVarsDump.json
Last active September 16, 2024 17:08
Star Wars Jedi: Survivor (Patch 9) Complete UE 4.26.2 Default CVars Dump
This file has been truncated, but you can view the full file.
{
"": {
"Flags": [
"Unregistered",
"CreatedFromIni",
"SetByScalability"
],
"Helptext": "IAmNoRealVariable",
"type": "String",
"value": "0"
@manciuszz
manciuszz / AutoExecutor.ahk
Last active September 6, 2024 21:42
Fast 'shell:startup' and Task Scheduler Auto Application Startup replacement using AutoHotkey
#NoEnv
#SingleInstance Force
#NoTrayIcon
SetBatchLines, -1
SetKeyDelay, -1, 1
SetMouseDelay, -1
SetWinDelay, -1
SetControlDelay, -1
@manciuszz
manciuszz / Optimized-Steam.ahk
Created April 6, 2023 01:43
Fast No-Browser STEAM Client Launcher using AutoHotkey
#NoEnv
#NoTrayIcon
ListLines Off
SetBatchLines, -1
Process, Priority,, H
SetWorkingDir %A_ScriptDir%
argumentList =
(
@manciuszz
manciuszz / OpenSymlink.reg
Created March 31, 2023 17:40
Windows 10/11 - Add 'Open real file location' context menu item.