This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Your Steam game IDs | |
var gameIDs = [1549970, 440, 730]; // Replace with your game IDs | |
// Get the session ID from cookies | |
var sessionID = document.cookie.match(/sessionid=([^;]+)/)[1]; | |
// Function to add games to the wishlist | |
async function addToWishlist(gameIDs) { | |
for (let i = 0; i < gameIDs.length; i++) { | |
let appID = gameIDs[i]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
:: Script to enable High Performance power plan | |
:: Works on Windows 10 and Windows 11 | |
:: Run as Administrator | |
:: Set the High Performance power plan | |
powercfg -s 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c | |
echo. | |
echo High Performance power plan has been enabled. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
:: Script to remove "Some settings are managed by your organization" message | |
:: Works on Windows 10 and Windows 11 | |
:: Run as Administrator | |
:: Delete registry keys from HKEY_CURRENT_USER | |
reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies" /f | |
reg delete "HKCU\Software\Microsoft\WindowsSelfHost" /f | |
reg delete "HKCU\Software\Policies" /f |