Proxmox guest drivers

Proxmox guest drivers
For a Proxmox guest, whether its Windows or Linux, the VirtIO and Qemu-system drivers need to be installed. Full detailed guide: https://pve.proxmox.com/wiki/Windows_VirtIO_Drivers Windows Download the latest "virtio-win-XXX" package from Fedora Install the "virtio-win-gt-x64.msi" driver Install the (optional) "virtio-win-guest-tools.exe" driver Reboot the guest Linux Execute the commands below # Install the…

How to create a certificate request for Exchange 2019

How to create a certificate request for Exchange 2019
Change the script below and you'll have a signed certificate in no time for Exchange 2019. This also works for Exchange 2016, but there you can still use the GUI. # Vars $serverName = "YourServerName" $friendlyName = "FriendlyName" $exportable = "$True | $False" $subjectName = "c=COUNTRY, s=STATE, l=CITY, o=ORGANIZATION, ou=DEPARTMENT,…

Proxmox – BSODs after importing Hyper-V guest(s) during boot

Proxmox – BSODs after importing Hyper-V guest(s) during boot
So after migrating from Hyper-V to Proxmox I've encountered some issues for getting my Windows guests (server 2016/2019 and 2022) to boot properly. It seems that installing the VirtIO drivers prior exporting is not a workable solution. At least not for me. Similar issues were experienced with XCP-NG before I…

Upload user photos in Active Directory and Entra AD

Upload user photos in Active Directory and Entra AD
A simple PowerShell script that imports user photos into Active Directory. After an Entra AD Sync it will push the same images to towards Azure, Office 365 (Teams, Exchange, The user photos need to be 80x80 with a max filesize of 100kb! Important! $transcriptLog = "C:\Scripts\ImportThumbnail\log.txt" if (Test-Path $transcriptLog) {…