Skip to content

Instantly share code, notes, and snippets.

View jake9000's full-sized avatar
🌵
vibing

Jacob M jake9000

🌵
vibing
View GitHub Profile
@jake9000
jake9000 / bettersecretserver.js
Last active April 25, 2025 20:59
Secret Server: persistently enjoy 'include subfolders'
// ==UserScript==
// @name Secret Server Include Subfolders Always
// @namespace http://tampermonkey.net/
// @version 0.1.2
// @description Select 'include subfolders' every time you load a folder.
// @author github.com/jake9000
// @match *://vault.my.example.com*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// @run-at document-start
@jake9000
jake9000 / snip.md
Last active February 17, 2025 22:36
re-download your intune packages

When you upload a package to intune, that package is normally not retrievable.

If you ever need to re-acquire your own package from intune, replace the install command with a robocopy command to extract it.

robocopy . "C:\temp\export" /S /E /R:0 /W:0 /XJ

Then, trigger the install on some computer and check c:\temp for your loot.

@jake9000
jake9000 / typepaster.ahk
Created April 30, 2020 15:11
autohotkey: paste into anything anytime
#F12::
SendRaw, %Clipboard%
Return