Posted On March 31, 2019

Increase Windows Management Instrumentation Service Handle Quota Limit

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Increase Windows Management Instrumentation Service Handle Quota Limit
WMI.ps1
----------------------------------------------
$config = gwmi -Class "__ProviderHostQuotaConfiguration" -Namespace root
$config | select -Property * -ExcludeProperty __* | ft -AutoSize
$config.HandlesPerHost = 8*1024
$config.Put()
-----------------------------------------------
Source: https://learn.microsoft.com/en-us/archive/blogs/

Leave a Reply

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

Related Post

How To Link Containers Using Docker Compose

This yields several advantages:1. Direct linking between containers is architectually efficient to direct traffic between…

PowerShell: Impersonation to Download Files Through Proxy

Initial Script to without impersonation # Change these values to reflect your desired downloads[string]$fileSource =…

HTML: Tagging and Jumping to Sections of Page

Each element of an HTML document could be set with a unique ID so that…