Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

192 total results found

Knowledge Base

Information on various topics

Code Snippets

Snippets of code from various sources

PowerShell
Bash
Windows Command Line

Apps Knowledge Base

Minecraft

Book of Minecraft Stuff

Minecraft

Docker

Microsoft Windows

Microsoft Windows

Windows Command Line

Windows Command Line

Linux

Code snippets for the Bash Shell

Linux
Bash

VirtualBox

Linux
VirtualBox

Linux

Linux related KBs

Linux

Pi-Hole

Linux
Pi-Hole

Proxmox

Linux
Proxmox

General Knowledge

KBs that don't fit anywhere else but are good to have

Ubiquiti

Ubiquiti

Vikunja

Vikunja is a Team and Project Based To-Do List

Vikunja

MySQL

Nginx Proxy Manager

Linux
Networking

PostresSQL

PostresSQL tips and tricks

Cloudflare

Cloudflare Stuff

Cloudflare
DNS

Jellyfin

Jellyfin Knowledge Base

Windows Server

Microsoft Windows

Windows Remote Desktop

Microsoft Windows

Windows RDS

Google Chrome

General Knowledge

Google Chrome

General

General Knowledge

Windows General

Microsoft Windows

General Microsoft Windows

CLI

Vikunja

SSH

Linux

Linux
SSH

Updates

Linux

Update and Updates related knowledge

General

Linux

Linux

Bash

Linux

Linux

Security

Linux

Linux
Security

Proxmox Host

Proxmox

Proxmox
Linux

Proxmox VMs

Proxmox

Proxmox Virtual Machines

Proxmox
Linux

LXC Containers

Proxmox

LXC Containers on Proxmox

Proxmox
Linux

Ubuntu Specific KB

Linux

KBs specific to Ubuntu

Linux
Ubuntu

How To Ban and Unban Players

Minecraft

As an administrator or OP of your server you must manage all of the banned players. This is different than using a whitelist as a banned player will never have access to the server. We recommend that you use this only in the event of someone that you are sure ...

Minecraft
Testing

Docker Cheat Sheet

Docker

Dockerfile A Dockerfile is a script used to build Docker images. It consists of a series of commands: FROM FROM image_name:tag Description: Specifies the base image used to build the new image. RUN RUN command Description: Executes a command in the new ...

Docker

Docker Image Prune

Docker

Remove unused images Usage docker image prune [OPTIONS] Options Option Short Default Description --all -a   Remove all unused images, not just dangling ones --filter     Provide filter values (e.g. until=) --force -...

Docker

Enabling Vaultwarden admin page

Docker

From This Page Enabling admin page IMPORTANT: It's heavily recommended to activate HTTPS before enabling this feature, to avoid possible MITM attacks. This page allows a server administrator to view all the registered users and to delete them. It also allow...

Vaultwarden
Docker

List Docker Containers

Docker

Docker provides various options to list and filter containers in different states or even options to customize the list output. In this tutorial, we're going to see how we can filter Docker containers in a variety of ways. Listing Containers In order to lis...

Docker

How to Update Portainer to the latest version

Docker

List Docker Containers The following article shows how to list containers in Docker. This will help to determine the container name for Portainer that is required in the following steps.List All Docker Containers Update Portainer Once the portainer containe...

Docker

Docker Container hostname

Docker

Add the following to a Stacks file hostname: {hostname} For a Docker Run command-h {hostname}

Docker

Composerize

Docker

URL: https://www.composerize.com/ This will turn the docker run command into a Stacks statement

Docker

Find All Domain Controllers

Windows Command Line

To be run from an elevated prompt Command Line: nltest /dclist:{Full Domain Name} PowerShell $DomainName = {Full Domain Name Get-ADDomainController -Filter * -Server $DomainName | Select-Object Hostname,Ipv4address,isglobalcatalog,site,forest,operatingsys...

PowerShell
Active Directory

Kill All Mobs

Minecraft

Quick and Dirty, use this command to kill all Mobs except a few. /kill @e [[type=!player,type=!armor_stand,type=!minecart,type=!wolf,type=!cat]   More can be found in the Minecraft Wiki - How to Kill all Mobs in Minecraft

Minecraft

Idle time out GPO for Remote Desktop Services sessions not working in Windows 2019 servers

Microsoft Windows Windows Remote Desktop

By default, the user’s RDP session in Windows may stay disconnected until the user or administrator terminates, or the computer is restarted. However, it is quite convenient since a user may connect to his old RDP session and go on working with running program...

Windows RDS
Group Policy

No RDS Licenses available

Microsoft Windows Windows Remote Desktop

Cause This generally is a message that is displayed on the client machine and is not really what it says. It is just that the client does not think it has a license for RDS To fix this issue To fix this, the following can be copied and pasted in a .reg file...

Windows RDS
Windows Command Line

Battery Test

Windows Command Line

WMIC PATH Win32_Battery Get EstimatedChargeRemaining Or powercfg /batteryreport /OUTPUT "c:\Admin\batteryreport.html"

Windows Command Line

Check the state of Windows Activation

Windows Command Line

slmgr.vbs /xpr   Typical Output:

Windows Command Line

Windows Command Line Firewall Commands

Windows Command Line

To Turn Off: NetSh Advfirewall set allprofiles state off NetSh Advfirewall set domainprofile state off To Turn On: NetSh Advfirewall set allprofiles state on NetSh Advfirewall set domainprofile state on To check the status of Windows Fire...

Windows Command Line
Networking

Copy files with permissions

Windows Command Line

xcopy x:*.* y:*.* /D /E /C /F /H /K /O /Y

Windows Command Line
xcopy
Microsoft Windows

Disable IPV6

Windows Command Line

Commands to disable IPV6 netsh interface teredo set state disabled netsh interface ipv6 6to4 set state state=disabled undoonstop=disabled netsh interface ipv6 isatap set state state=disabled

Windows Command Line
Networking

Disable LLMNR

Windows Command Line

From and elevated Command Line REG ADD “HKLM\Software\policies\Microsoft\Windows NT\DNSClient” REG ADD “HKLM\Software\policies\Microsoft\Windows NT\DNSClient” /v ” EnableMulticast” /t REG_DWORD /d “0” /f

Windows Command Line
Networking

Find Public IP from Command Line

Windows Command Line

nslookup myip.opendns.com resolver1.opendns.com

Windows Command Line
Networking

Get WiFi Password

Windows Command Line

List all known WiFi Networks   netsh wlan show profiles Show password for a known WiFi Network netsh wlan show profile name={wifiname} key=clear  

Windows Command Line
Networking