InvoiceNinja – Mailer problem
I maintain an InvoiceNinja instance and an error was reported when sending mail. Check the logs in storage/logs/laravel.log I see there is an error: Mailer Problem: scheme is not supported;…
I maintain an InvoiceNinja instance and an error was reported when sending mail. Check the logs in storage/logs/laravel.log I see there is an error: Mailer Problem: scheme is not supported;…
In ManageEngine ServiceDeskPlus MSP it is notifying receipients and senders when an inline image is dropped/not processed. To disable this notification, perform the following steps to update the…
If you're interested in modifying Android APK files—whether to explore their inner workings or customize them for personal use—this guide will take you through the essential tools and…
Windows Server 2025 went Generally Available (GA) a few days ago. I grabbed a copy from the Microsoft Evaluation Center and installed on my ESXi 8 server. Here…
Here's a quick snippet to get the IP, MAC address and Vendor using PowerShell in Windows with the native arp -a command and curl. It is based on…
I wrote a small .NET tool that will plot ping responses visually. It also allows me to save the chart graph as an image and also export the…
I hacked together a small tool in .NET that helps me quickly analyze the Component Based Servicing (CBS) log in c:\windows\logs\cbs\cbs.log for missing CSI Payloads. It will parse the log…
This PowerShell one-liner is a convenient way to monitor log files in real-time and quickly spot error messages. The script continuously reads the log and highlights lines that…
Photoshop Mix was sunset by Adobe in June 2024. This was one of the simplest mobile apps for iOS and Android that had been out since around 2016…
I’ve migrated this site from WordPress to Hugo. Here’s some notes on it. First, it takes less than 30 seconds to build the site and also for Pagefind…
This command is a neat way to automate extracting multiple zip files into directories named after the files themselves. It avoids the need to unzip files manually one…
Somehow the contacts for an email account amassed almost 7k entries. Upon manual review, it seemed there were at least 3 entries for each contact. Here’s a powershell…
Archived from: Wayback Machine You can use the Settings app to switch your Microsoft account to a local account. Important: Microsoft recommends using a Microsoft account, not a local…
I have taken a lot of photos over the years and things have just piled up and I've amassed about 2TB worth of images. In an effort to…
Here’s a one-liner in PowerShell to get the total size of all files found with wildcard pattern of *ORIGINAL*. [math]::round((get-childitem -path . -filter "*ORIGINAL*" -file -recurse | measure-object…