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

Sample Multi-Site Metadata

SimpleSAML PHP module requires that each site to be configured with a $metadata entry. Below…

PowerShell: Quickly Test Connectivity from a List of Sources toward a Destination on a Specific Port

# testRemotePort.ps1 $connectFrom=@' windows1 windows2 '@ $connectTo=@' \\servername\sharename '@ $testPort=445 $sources=@($connectFrom -split "`n")|%{$_.Trim()} $destinations=@($connectTo -split…

PowerShell: Get Available RAM Slots

# getRamSlotsAvailable.ps1 $computername=$env:computername function getRamSlotsAvailable{ param($computername=$env:computername) write-host "Computer name: $computerName" $slots = Get-WmiObject -Class "win32_PhysicalMemoryArray"…