Advanced Search
Search Results
34 total results found
Home Lab Documentation
This book documents the architecture, configuration, and ongoing management of my personal home lab — a self-hosted environment that mirrors real-world enterprise infrastructure. It serves both as a technical reference for myself and as a showcase of my skills...
Lab Scripts Repository
This shelf contains a curated collection of books with scripts used throughout the home lab environment. It includes system setup, automation, software deployment, network configuration, and monitoring scripts. Each book is categorized by platform or purpose t...
Home Lab Overview
This environment reflects my hands-on experience with deploying, securing, and managing modern infrastructure components. It also provides a controlled space to test updates, troubleshoot issues, and evaluate new technologies before applying them in production...
Home Lab Applications and Services
This book documents the services, configurations, and infrastructure deployed in my home lab. Built on Proxmox VE, this environment allows me to test, deploy, and manage enterprise-like systems, including identity platforms, monitoring tools, collaboration app...
SCCM Lab Setup Guide
In this project, I established a comprehensive SCCM (System Center Configuration Manager) lab environment to facilitate advanced software deployment, management, and reporting. The setup involved configuring SCCM on both Microsoft Azure and a local machine usi...
System Setup Scripts
This book contains scripts used for initial system configurations and automation in the home lab environment. It includes shell, PowerShell, and helper tool scripts for: Ubuntu/Debian package updates Firewall settings Creating virtual networks (...
Tanium
This book contains all scripts related to Tanium installation, configuration, and automation tasks within my lab environment. Contents May Include: Agent deployment scripts Sensor and package creation Module configuration helpers Scheduled tas...
Tanium Packages
This chapter contains a collection of Tanium Packages used for deploying and executing tasks across managed endpoints. Each package includes detailed instructions, command-line parameters, and associated scripts—primarily in PowerShell—to automate administrati...
Tanium Sensors
This chapter is dedicated to storing and documenting all Tanium Sensors created or collected for use within a lab or production environment. Sensors are lightweight scripts used to retrieve real-time endpoint data and can be custom-built to gather specific inf...
Tanium Modules
This chapter documents all the Tanium Modules enabled in the environment, providing an overview of their purpose, configuration notes, and integration use cases. Each page includes practical tips, feature highlights, and module-specific considerations to suppo...
Description
Welcome to my Home Lab documentation! This book serves as a centralized knowledge base for the design, configuration, and ongoing management of my personal IT infrastructure. It includes detailed notes, guides, troubleshooting steps, and configurations for the...
Virtualization: Proxmox VE
This page outlines how I installed, configured, and currently use Proxmox VE as the foundation of my home lab virtualization platform. It includes steps for installing Proxmox, setting up storage, creating virtual machines and LXC containers, and using templat...
Home Lab Hardware Specifications
This section outlines the physical hardware powering my virtualization environment. It includes both compute and network components that support VM hosting, containerization, and service reliability. 🖥️ Primary Host (Proxmox Node) pve Primary Node for all ...
BookStack Installation on Ubuntu 24.04
📄 Description: This page documents the complete process for installing BookStack, a self-hosted wiki and knowledge base, on a fresh Ubuntu 24.04 server using PHP, Nginx, and MariaDB. This service is used as my primary knowledge repository. ref. https://www.b...
PairDrop Installation via Proxmox VE Helper-Scripts
This guide covers installing PairDrop in an LXC container using the community-built Proxmox VE Helper-Scripts. These scripts make deploying apps like PairDrop fast, standardized, and repeatable. 🧰 Step-by-Step Instructions To create a new Proxmox VE PairDr...
Audiobookshelf Installation via Proxmox VE Helper Scripts
Audiobookshelf is a self-hosted audiobook and podcast server with a web UI and apps. This guide shows how to deploy it in an LXC container using the Proxmox VE Helper-Scripts. 🧰 Step-by-Step Instructions To create a new Proxmox VE Audiobookshelf LXC, run the...
Snipe-IT Installation on Ubuntu 24.04
This guide explains how to install Snipe-IT, a self-hosted IT asset management system, on Ubuntu 24.04 using Nginx, MariaDB, and PHP 8.3. Ref. https://snipe-it.readme.io/docs/installation 📦 1. Update the System sudo apt update && sudo apt upgrade -y 🌐 2. I...
Paperless-ngx Installation on Debian 12 (Using Official Script)
Paperless-ngx is a document management system for indexing, OCRing, and organizing scanned documents and PDFs. This guide walks you through setting it up on Debian 12 using the official installation script via Docker Compose. Paperless provides an interactive...
Create a Virtual Internal VS with NAT Network in Hyper-V
Step-by-Step Instructions This guide walks you through creating a Hyper-V Internal Virtual Switch with NAT support for use in labs or test environments — useful for setting up isolated virtual networks. 🔧 1. Open PowerShell as Administrator All commands bel...
Initial VM Configuration
Steps after Virtual Machine Installation: Rename all virtual machines Configure each server: Open Server Manager > Local Server Disable IPv6 Rename the server Disable IE Enhanced Security Configuration Disable Windows Update:...
Domain Controller Setup
Install AD DS and DNS: Go to Server Manager > Manage > Add Roles and Features Add "Active Directory Domain Services" and "DNS Server" Promote the server to a Domain Controller: Choose "Add a new forest", name it (e.g., lab.com) Opt...
Firewall Configuration via GPO
On the Domain Controller: Open Group Policy Management Create new GPO: SCCM Firewall Policy Edit the GPO: Allow RDP: Computer Config > Policies > Admin Templates > Windows Components > Remote Desktop Services > RD Session Host > Connec...
Prepare AD for SCCM Publishing
Click Set up a Configuration Manager lab for detailed setup instructions and access to all necessary download links for the lab. Extend the AD Schema run: extadsch.exe Check C:\extadsch.log for success Create System Management Container...
SCCM Server Prerequisites
Click Set up a Configuration Manager lab for detailed setup instructions and access to all necessary download links for the lab. Install Required Features: IIS, .NET 3.5, .NET 4.7, BITS, RDC, WSUS, Windows Auth, ASP.NET 3.5, IIS 6 WMI Compatibility, IIS ...
WADK, WinPE & Admin Console
Click Set up a Configuration Manager lab for detailed setup instructions and access to all necessary download links for the lab. Install: Windows ADK: Deployment Tools, USMT only WinPE Addon SCCM Admin Center To download and install Config...
Post-Installation Tasks
Click Set up a Configuration Manager lab for detailed setup instructions and access to all necessary download links for the lab. A. Discover Resources: Enable all AD Discovery Methods (Forest, Group, System, User) Disable Network Discovery (not need...
Creating a Tanium Package with a PowerShell Script
Prepare Your PowerShell ScriptCreate and save your script, e.g., Name.ps1. Access the Tanium ConsoleGo to:Administration > Content > Packages Create a New PackageClick “Create Package” to open the package configuration window. Configure the ...
Remove Folder via URL-Encoded Path
This PowerShell script is designed to remove a folder when its path is provided in a URL-encoded format. It can be especially useful in automation pipelines or tools where folder paths are passed as encoded parameters. Features Accepts a folder path as a...
Start-Cleanup Function
This PowerShell function automates disk cleanup tasks to help reclaim space on the C: drive, targeting common sources of junk like Windows temporary files, the SoftwareDistribution folder, IIS logs, user temp folders, and more. A detailed log is created in $en...
Run DISM and SFC for System Repair
This PowerShell script performs a two-step process to repair system integrity issues on Windows. It first runs the DISM tool to restore the system image and then executes SFC to scan and repair system files, only if DISM completes successfully. ⚙️ Features ...