Skip to content

Instantly share code, notes, and snippets.

View Joachim-Otahal's full-sized avatar

Joachim Otahal Joachim-Otahal

View GitHub Profile
@jborean93
jborean93 / Get-SnapshotPath.psm1
Created March 20, 2019 08:17
Get all the VSS snapshot paths for the path specified
# Copyright: (c) 2019, Jordan Borean (@jborean93) <jborean93@gmail.com>
# MIT License (see LICENSE or https://opensource.org/licenses/MIT)
# To use, copy the .psm1 file locally and run
# Import-Module -Name Get-SnapshotPath.psm1
# Get-SnapshotPath -Path "\\server\share"
Add-Type -TypeDefinition @'
using Microsoft.Win32.SafeHandles;
using System;
@FichteFoll
FichteFoll / extract_all_fonts.py
Last active February 12, 2024 03:34
This script extracts all font attachments of a Matroska file; easy to modify
#!/usr/bin/env python3
# This script extracts all font attachments of a Matroska file
# Requirements: mkvtoolnix executables
import subprocess
import re
import os.path
from collections import namedtuple