Key Activation to VAMT with error “The specified product key is invalid, or is unsupported by this version of VAMT”

Resolution: Install the latest Windows Kit and do the following Copy the files under C:\Windows\System32\spp\tokens\pkeyconfig from WS2019 machine Past them on this Path C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\VAMT3\pkconfig How to create GPO to push Product key update from KMS Read More …

Windows Server 2012 R2 powershell script to generate report for installed Hotfix-Update for Bulk Servers

=============================================================== function Hotfixreport { $computers = Get-Content C:\serversHF.txt $ErrorActionPreference = ‘Stop’ ForEach ($computer in $computers) { try { Get-HotFix -cn $computer | Select-Object PSComputerName,HotFixID,Description,InstalledBy,InstalledOn | FT -AutoSize } catch { Write-Warning “System Not reachable:$computer” } } } Hotfixreport > “$env:USERPROFILE\Desktop\Hotfixreport.csv” Read More …