Organizr Docker Configuration docker-compose.yml version: "3" services: organizr: container_name: organizr entrypoint: - /init hostname: organizr image: organizr/organizr:...
Grafana Docker Configuration
Grafana Docker Configuration docker-compose.yml version: "3" services: grafana: container_name: grafana entrypoint: - /run.sh hostname: grafana image: grafana/grafana-ente...
Cloudflare DDNS Docker
Cloudflare DDNS Docker Usage Quick Setup: docker run \ -e API_KEY=xxxxxxx \ -e ZONE=example.com \ -e SUBDOMAIN=subdomain \ oznu/cloudflare-ddns Parameters --restart=always - ensure...
Powershell Custom Desktop Shortcut
Powershell Custom Desktop Shortcut Script to create a custom shortcut on the Desktop of client machines. custom-shortcut.ps1 $Shell = New-Object -ComObject ("WScript.Shell") $Favorite = $Shell.C...
Outlook Local Signature Removal
Outlook Local Signature Removal Login Script Script to be pushed out via Group Policy to delete any existing signature within Outlook locally. signature-removal.ps1 $TopFolder = 'c:\users' $Sig...
Psuedo-Ethernet WAN GUI Access
Psuedo-Ethernet WAN GUI Access Allows access to modem GUI over LAN Port configure set interfaces pseudo-ethernet peth0 link eth0 set interfaces pseudo-ethernet peth0 address 192.168.100.1/24 set ...
Commandline Static IP Assignment
Commandline Static IP Assignment Remotely edit the Static IP Address of a specific interface on a client machine. netsh interface ipv4 show address netsh int ip set address "Ethernet" static 192....
Commandline DNS Change
Commandline DNS Change Remotely edit the DNS of a specific interface on a client machine. netsh interface ipv4 show address netsh interface ip set dns name="Wi-Fi" static 1.1.1.1 netsh interface ...
Destiny 2 Wish Wall AHK Script
Destiny 2 Wish Wall AHK Script Requirements Divinity AutoHotKey 720p, 1080p, 1440p, or 2160p Usage Open .ahk file Stand on the middle of the Wish plate Aim at the center of the W...
VoIP Softphone Firewall Script
VoIP Softphone Firewall Script Script to automatically create an inbound firewall rule for a specified application softphone-firewall.ps1 $profiles = Get-ChildItem -Path 'C:\Users' -Directory Fo...