Windows 11 – 0x80070026 Reached the end of the file.
I've been plagued by the following error when copying small files to/from a NAS on my LAN using Windows 11 22H2. 0x80070026 Reached the end of the file.…
I've been plagued by the following error when copying small files to/from a NAS on my LAN using Windows 11 22H2. 0x80070026 Reached the end of the file.…
SSL/TLS protocol settings may be specified in the primary Nginx configuration file (usually located at /etc/nginx/nginx.conf), or in your site configuration files. Look for a line beginning with ssl_protocols. For…
A quick method to scan your network and enumerate the SSL Ciphers in use on systems is with nmap. nmap --script ssl-enum-ciphers -p 443 192.168.0.1/24 This will scan…
It can get a bit confusing. The below website summarizes the server releases. https://docs.microsoft.com/en-us/windows-server/get-started/windows-server-release-info There are two servicing models for Windows server - a long term servicing channel…
I'm not sure why systemd doesn't remove the service, but to do so you can run through the following commands. Also check /etc/init.d/[servicename] as there may be a…
Clear all the Windows Event Logs, resetting reliability history, from the command line. Command Line Method for /F "tokens=*" %1 in ('wevtutil.exe el') do wevtutil.exe cl "%1" Batch…
I've been tasked with resolving an issue that involves printing (my favorite /s). A console application used in Windows 10 and Windows 11 is not printing certain files…
One way to hide an application from Add/Remove programs is by settings a SystemComponent registry key for the application in the Uninstall path. For 32-bit applications, the Uninstall…
Input Validation Whitelist Protection Cacti Data Input methods that call a script can be exploited in ways that a non-administrator can perform damage to either files owned by…
Here are some methods to remove the ManageEngine DesktopCentral Agent. @echo OFF Rem Manage Engine Desktopcentral Agent Uninstallation String Rem This bat file will uninstall the Desktopcentral Agent…
When you run an elevated command prompt as administrator, the mapped drives are unavailable in the elevated command prompt. This issue also affects other applications that run in…
The easiest way to block the Windows 11 update on a Windows 10 system is by adding a policy via the Registry. In HKEY_LOCAL_MACHINE, navigate to SOFTWARE\Policies\Microsoft\Windows Create…
To test SMTP auth with StartTLS, I used the following method. Base64 encode the username and password. echo -ne "yourpassword" | base64 eW91cnBhc3N3b3Jk echo -ne "your@email.com" | base64…
I have an old Lenovo Yoga 2 (i5-5400u, 4GB RAM, 128GB SSD). This 2-in-1 system does not have an ethernet port and during Debian installation using the netinstall…
A small WordPress plugin to create a BOFH excuse using a shortcode anywhere on your WordPress website shortcodes are supported. Usage [[bofh]] Output Example [bofh] wp-bofhDownload Continue reading