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
| # Roundcube Docker Compose Stack with Traefik and Cloudflare | |
| # | |
| # Description: | |
| # Deploys Roundcube webmail (version 1.6.11-apache) along with a MySQL 8.0 database, | |
| # configured for Traefik reverse proxy using Cloudflare certresolver. | |
| # Includes a wide array of relevant plugins enabled for advanced mail features. | |
| # The domain is masked as domain.ltd for privacy; update your real domain accordingly. | |
| # Added extra_hosts for mail.domain.ltd assuming the mail server is on the same host as Roundcube. | |
| # | |
| # Environment: |
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
| # Passbolt Docker Compose Stack with Traefik Proxy and custom mail host | |
| # | |
| # Description: | |
| # Deploys Passbolt CE with MariaDB backend and Traefik reverse proxy (using Cloudflare cert resolver). | |
| # Includes persistent volumes for database, GPG keys, and JWT tokens. | |
| # | |
| # Usage: | |
| # - Configure environment variables in a .env file. | |
| # - Ensure Traefik is running with network 'traefik-net' created externally. | |
| # - Launch with `docker-compose up -d`. |
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 | |
| Reset Brave Browser usage statistics such as bandwidth saved and ads blocked. | |
| .DESCRIPTION | |
| This script reads Brave Browser’s preferences JSON file and resets user statistics (bandwidth and ad-block counters) to zero. | |
| It was created and tested on Windows 11 Pro 25H2 to fix corrupted or inflated Brave stats values. | |
| Brave must be completely closed before running this script, otherwise it will overwrite the changes upon exit. | |
| No administrative privileges are required. |
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 | |
| Clear all log files from AOMEI Backupper installation directories. | |
| .DESCRIPTION | |
| This script automatically detects the installed version of AOMEI Backupper | |
| by reading registry entries and cleans up all existing log files from the | |
| associated log directory. It helps free disk space and ensures that AOMEI | |
| Backupper runs with a clean log state, especially useful after numerous | |
| backup or sync operations. |
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 | |
| Reset Windows 11 icon and thumbnail caches to fix broken or outdated explorer thumbnails. | |
| .DESCRIPTION | |
| This script was created to fix broken taskbar or explorer thumbnails, particularly when shortcuts are renamed. | |
| It stops Windows Explorer, clears both icon and thumbnail cache databases, and restarts Explorer cleanly. | |
| This process can also solve other visual cache inconsistencies or shell display issues in Windows 11. | |
| .PARAMETER None |
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 | |
| Configure Windows Defender Firewall interactively to ensure compatibility with Fort Firewall. | |
| .DESCRIPTION | |
| This script provides an interactive interface to view and manage Windows Defender Firewall settings. | |
| It includes options to enable, disable, or reset firewall profiles via PowerShell or netsh commands. | |
| Created to disable Windows Firewall when Fort Firewall is used, preventing notifications. | |
| .PARAMETER None |
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 | |
| Disable Hypervisor-Enforced Code Integrity (HVCI) via registry to allow Fort Firewall installation. | |
| .DESCRIPTION | |
| This script checks for administrator rights and relaunches elevated if needed. | |
| It prompts for user confirmation before disabling HVCI by modifying the appropriate registry key. | |
| Disabling HVCI is necessary because Fort Firewall cannot be used when this protection is enabled. | |
| Designed to ensure safe configuration changes enabling Fort Firewall setup. |
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 | |
| Clear PowerShell 7 and Oh My Posh PSReadLine history without deleting history file. | |
| .DESCRIPTION | |
| This script empties the PSReadLine history file used by PowerShell 7 and Oh My Posh | |
| prompts, keeping the file intact to preserve permissions. | |
| Useful for removing command history while maintaining configuration integrity. | |
| .PARAMETER None |
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 | |
| Manage Brave browser features individually by toggling Brave Rewards, Wallet, VPN, and Leo AI registry settings. | |
| .DESCRIPTION | |
| This interactive script checks the current registry state of each Brave feature. | |
| It prompts the user for each feature to decide whether to disable it, remove the policy, or skip to next. | |
| Status is displayed in color-coded messages for clarity. | |
| .PARAMETER None |
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 | |
| Fix Windows Store errors and restore functionality to resolve installation or update issues. | |
| .DESCRIPTION | |
| This script repairs Microsoft Store and related system services by reverting privacy modifications | |
| made by tools such as privacy-script.bat from privacy.sexy. It addresses the common error | |
| 0x80004002 (E_NOINTERFACE) and other issues that prevent the Microsoft Store from installing or updating apps. | |
| The script re-enables essential services like Windows Update and Delivery Optimization, | |
| restores registry values, repairs connectivity checks, clears caches, and resets Store apps. |