Posted On March 31, 2019

Increase memory allowance for WMI

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Increase memory allowance for WMI

Run: wbemtest.exe >> click Connect >> Namespace = root >> Connect >> click Enum Instances >> enter __ProviderHostQuotaConfiguration=@ >> OK >> HandlesPerHost from 4096 to 16384 | increase MemoryPerHost from 536870912 (or 512MB) to 2147483648 (2GB) | increase MemoryAllHosts from 1073741824 (1GB) to 3221225472 (3GB) >> Save Object >> Close >> Exit

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Check Windows Computers for Specific KB’s

# Check for specific KBs $kbs='KB5010790','KB5010419' $computernames=@('WINDOWS001','WINDOWS002') $regexIP = [regex] "\b(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\b" $names=foreach($computername in $computernames){ if($computername…

How to turn on automatic logon in Windows XP that is joined to a domain

Start - Run - regedit - [enter] Locate the following registry key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\Winlogon Double-click DefaultUserName,…

PowerShell: Checking Duplicating Identifiers Among ADFS Relying Party Trusts

function getDuplicatingIfd{ write-host "Checking each relying party trust for any duplicates of identifiers..." $trusts=Get-AdfsRelyingPartyTrust $allTrustNames=$trusts.Name…