Category: Debugging
-
Veeam Agent Windows: Push-Deploy Physical Box to Backup Repository
Physical Windows machine needs backing up to Veeam repository. Here’s the exact checklist: firewall ports, credentials, and the UAC registry key that blocks agent push-deploy. 20 minutes. Most of it hunting one setting.
-
Web Deploy IIS Authentication Troubleshooting – Fix ‘User Unauthenticated’ Errors
Step-by-step guide to diagnosing and fixing Web Deploy authentication failures on IIS. Covers WMSVC pass-through auth, IIS Manager Permissions, delegation rules, and creating local IIS Manager users as a workaround.
-

Title: How to Add a Windows 10 Machine as a Backup Repository in Veeam Backup & Replication
As an IT administrator, one of your top priorities is to ensure that your organization’s data is properly backed up and protected against data loss. Veeam Backup & Replication is a powerful backup and recovery solution that can help you achieve this goal. However, adding a Windows 10 machine as a backup repository in Veeam…
-
#include guards in C++
I was having issues with an ESP32 project. I needed an instance of which was sitting in <wifisetupmanager.h> I needed this in two files – <setup.h> and <endpoints.h>. Ok no big deal, lets add it 👍… not so fast!… When I added: In both files, I received the following error: src/wifisetupmanager.h:9:29: error: redefinition of ‘AsyncWiFiManager…
-
Debugging Angular with VS Code and Firefox
Everyone has their own preference when it comes to debugging. Here is what has worked well for me! This example is based on a new angular application. If you would like to know how to get started with angular – head over here: https://code.visualstudio.com/docs/nodejs/angular-tutorial If you would like to clone the repo and give it…