Powershell – Execute Windows Update On All Windows Servers in Active Directory

A powershell script to run Windows Updates on all Windows Servers in Active Directory   Part 1: Build a list of all Windows Servers in Active Directory # # Get all Windows Servers (Windows Server version 2016/2019/2022) # $Computers = Get-ADComputer -Properties * -Filter { OperatingSystem -like “*Windows Server*” } …

Obtaining MSI productcodes via powershell

To obtain the productcode of an MSI installed application, you can search the Windows registry at the following locations: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall However, there is an easier way obtaining the productcodes of all installed applications through powershell by executing the following command: get-wmiobject Win32_Product | sort name | Format-Table IdentifyingNumber, Name, …

Microsoft FSLogix – Basic Installation and Configuration Notes

            Below are my notes to perform a basic installation/configuration of Microsoft FSlogix Download FSLogix https://aka.ms/fslogix_download FSLogix components Microsoft FSLogix Apps – FSLogixAppSetup.exe ==> !! Mandatory !! To be installed on the end-users clients machines installs core drivers and components for all FSLogix solutions Unattended …