-1
A
回答
0
微軟對如何做到這一點用Visual Basic
https://msdn.microsoft.com/en-us/library/windows/desktop/ms684192(v=vs.85).aspx
下面的PowerShell會增加內存限制的文件。您將需要$的AppID和$ CLSID更改爲相應的標識符
$AppID = "{11111111-1111-1111-1111-111111111111}"
$CLSID = "{22222222-2222-2222-2222-222222222222}"
$comAdmin = New-Object -comobject COMAdmin.COMAdminCatalog
function ConfigurePoolLimits ($comAdmin , $MemoryLimit) {
Write-Host "Configuring Pool Limits"
$apps = $comAdmin.GetCollection("Applications")
$apps.Populate();
$changesMade = $false
foreach ($app in $apps) {
if ($app.Name -eq $AppName) {
Write-Host "Found Application $($app.Name)"
Write-Host "RecycleMemoryLimit is $($app.Value("RecycleMemoryLimit"))"
if ($app.Value("RecycleMemoryLimit") -ne $MemoryLimit) {
$changesMade = $true
Write-Host "Changing RecycleMemoryLimit to $($MemoryLimit)"
$app.Value("RecycleMemoryLimit") = $MemoryLimit
}
}
}
if ($changesMade) {
$apps.SaveChanges();
}
}
然後用2個參數
ConfigurePoolLimits $comAdmin 1000000
調用函數
相關問題
- 1. PowerShell的COM對象
- 2. 使用Powershell列出可用COM對象
- 3. 使用PowerShell和COM對象時出錯
- 4. 更改內存限制的影響
- 5. PowerShell中釋放COM對象
- 6. PHP內存限制不希望更改
- 7. 有很多COM對象的C#中過多的內存使用
- 8. PowerShell的COM對象的Windows Installer
- 9. 使用COM對象
- 10. 使用COM對象
- 11. 使用System.Dynamic來內省COM對象
- 12. TensorFlow對象檢測限制內存和CPU使用
- 13. COM對象生存
- 14. C#COM對象不會離開內存
- 15. POWERSHELL; Com對象的遞歸Get-Member
- 16. 帶參數的Powershell com對象
- 17. 限制對象修改
- 18. 限制ImageMagick內存使用
- 19. 限制內存使用量?
- 20. 限制MongoDB內存使用
- 21. 內存使用限制8
- 22. 使用PowerShell來包裝現有的COM對象
- 23. 用戶權限和COM對象
- 24. 更改集內的對象
- 25. Java - 使用的內存對於更少的對象更大
- 26. Powershell | COM對象Excel |打開前景?
- 27. PowerShell Windows安裝程序Com對象
- 28. 使用Powershell修改非AD LDAP對象
- 29. 克服Wordpress內存超限,無需更改服務器限制
- 30. 在PowerShell中創建/修改Excel電子表格而不使用Com對象?