This file contains hidden or 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
| <# | |
| .SYNOPSIS | |
| Repairs and configures Winget for enterprise environments (Intune/SCCM/RMM) with unified Standalone/Detect/Remediate modes. | |
| .DESCRIPTION | |
| This script is designed to be used in three modes, controlled by the $ExecutionMode variable: | |
| $ExecutionMode = "Standalone" # For manual/RMM/SCCM use (default) | |
| $ExecutionMode = "Detect" # For Intune detection scripts | |
| $ExecutionMode = "Remediate" # For Intune remediation scripts |
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>PayloadContent</key> | |
| <array> | |
| <dict> | |
| <!-- Configures the initial network connection APN --> | |
| <key>AttachAPN</key> | |
| <dict> |
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>PayloadContent</key> | |
| <array> | |
| <dict> | |
| <!-- Configures the initial network connection APN --> | |
| <key>AttachAPN</key> | |
| <dict> |
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>PayloadContent</key> | |
| <array> | |
| <dict> | |
| <!-- Configures the initial network connection APN --> | |
| <key>AttachAPN</key> | |
| <dict> |
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>PayloadScope</key> | |
| <string>System</string> | |
| <key>PayloadContent</key> | |
| <array> | |
| <!-- PAYLOAD 1: DNS SETTINGS (Quad9 ECS) --> | |
| <dict> |
This file contains hidden or 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
| #!/bin/sh | |
| # | |
| # Regenerate UniFi PXE override for netboot.xyz - with BIOS and UEFI support | |
| # Run at boot using on-boot-script-2.x | |
| # (see https://github.com/unifi-utilities/unifios-utilities/tree/main/on-boot-script-2.x) | |
| # for Ubiquiti UCG Fiber | |
| # | |
| OUT="/run/dnsmasq.dhcp.conf.d/99-pxe-netbootxyz.conf" |
This file contains hidden or 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
| <# | |
| .SYNOPSIS | |
| Analyzes Windows Wi-Fi profiles to extract SSID, Security, and Certificate Trust details. | |
| .DESCRIPTION | |
| This tool provides a detailed analysis of Wi-Fi connection profiles, specifically focusing on | |
| Enterprise (802.1X) security settings. It extracts the Trusted Root CA Thumbprint, Server | |
| Name constraints, and validates if the required certificates are present in the local machine store. | |
| It operates in three modes: |
This file contains hidden or 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
| #!/bin/bash | |
| # fix-ups-permissions.sh | |
| # Standalone script to fix USB permissions for NUT (Network UPS Tools) | |
| set -e | |
| if [ "$EUID" -ne 0 ]; then | |
| echo "ERROR: Please run as root or with sudo." >&2 | |
| exit 1 | |
| fi |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| # | |
| # encode-targetsize-43-crop.sh - Batch encode videos to NTSC 4:3 with hardware accel (multi-OS) | |
| # Targeting iGPUs (Apple Silicon, Intel HD, Intel Arc) | |
| # Uses VideoToolbox on macOS, VAAPI on Linux, and QuickSync on Windows. | |
| # | |
| set -euo pipefail | |
| # --- Default Settings --- | |
| VIDEO_BITRATE="1500k" |
This file contains hidden or 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
| // ==UserScript== | |
| // @name Extract Links (Universal, Configurable Patterns) | |
| // @namespace ergosteur | |
| // @version 2.9 | |
| // @description Universal lazy-scroll link extractor with config, HUD, stop button, and Tampermonkey menu | |
| // @match *://*/* | |
| // @grant GM_registerMenuCommand | |
| // ==/UserScript== | |
| (function () { |
NewerOlder