To get it to display you need a signal to a PC or laptop, which is really stupid. It should work without a connection but I’ve had it fail to appear until I had a HDMI connection to a laptop.
Category Archives: IT Notes
Server 2022 Activate Directory – Exchange bits
For SMTP bits in AD you need the exchange tools. These are for my notes so make sense to me.
Your account needs to be in the enterprise admins and schema admins group.
You need to install the exchange bits so run this command but you also need to mount an exchange ISO. I used Exchange 2019
d:\Setup.exe /IAcceptExchangeServerLicenseTerms_DiagnosticDataON /PrepareAD /OrganizationName:”Contoso Corporation”
We’re not installing or setting up exchange, just need it to put in all the extra exchange stuff in AD for the mailNickname bits
If you don’t need any of the exchange fields you can ignore all this.
Server 2022 – Disable reboot warning
https://www.softwareok.com/?seite=faq-Windows-Server&faq=19
1.) Method: Group Policy
- Open Group Policy Editor :
- Press
Win + R, type gpedit.msc and hit Enter .
- Navigate to:
Computer Configuration → Administrative Templates → System . - Find the policy “Disable shutdown event logging” .
- Double click on it and set the policy to “Enabled” .
- Click OK and close Group Policy Editor.
Proxmox and Tailscales
Setting up Proxmox with Tailscale
https://tailscale.com/download/linux
curl -fsSL https://tailscale.com/install.sh | sh
Then
tailscale up –ssh
For SSL cert
https://tailscale.com/kb/1133/proxmox
sudo tailscale serve –bg https+insecure://localhost:8006
Display contents of a txt file in CMD
Use the type command
type filename.txt
Jellyfin Android App Stuck on Logo
Running it on CasaOS, which apparently uses docker images. Updated Jellyfin then the android app was just stuck at the logo. Cleared the app cache which fixed it.
Windows 10 official ISO vulnerable
Annoying that the arses at MS haven’t bothered to patch the Windows 10 ISOs to the Blacklotus Malware so the recent official ISOs are flagged when using Rufus to create an image. These are ISOs even from the official Microsoft Volume License ISOs. They are clearly attempted to force people move to Windows 11 because those ISOs don’t have the issues.

Disable Windows Defender permanently
Run gpedit from the start menu.
Go to Computer Configuration/Administrative Templates/Windows Components/Microsoft Defender Antivirus/
Set “Turn off Microsoft Defender Antivirus” to ENABLED. If you do this WON’T work, even with tamper protection off. Its supposed to enter a reg settings but doesn’t and when you open gpedit again you’ll see its not set again.
Instead I go to
Computer Configuration/Administrative Templates/Windows Components/Microsoft Defender Antivirus/Real-time Protection
And set “turn off real-time protection” to ENABLED. That seems to survive the settings change and turns of real time protection so you can do what you need when its incorrectly blocking files.
Download suspect files without running
Use HTTRACK
Point it to the file and if the site is still up, it will download but not run.
Python – getpass
Use
from getpass import getpass
I was just doing import getpass which will get you a syntax error: invalid syntax