PowerShell Logo Small

Enable-MMAgent



This is the built-in help made by Microsoft for the command 'Enable-MMAgent', in PowerShell version 3 - as retrieved from Windows version 'Microsoft Windows Server 2012 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Enables application launch prefetching, operation recorder API functionality, and page combining.

SYNTAX


Enable-MMAgent [-ApplicationLaunchPrefetching] [-AsJob] [-CimSession <CimSession[]>] [-OperationAPI] [-PageCombining] [-ThrottleLimit <Int32>]
[<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Enable-MMAgent cmdlet enables any or all of the following features:
-- Application launch prefetching
-- Operation recorder API functionality
-- Page combining


Specify the ApplicationLaunchPrefetching parameter to help improve application startup performance. Application launch prefetching causes the
memory manager agent to monitor the data and code that applications access. The memory management agent then uses that information to preload
the data and code into physical memory for subsequent startups.


Specify the OperationAPI parameter to help speed up operations that repeatedly access the same file data. Enabling this feature exposes the
Windows prefetching mechanism as a public interface.


Specify the PageCombining parameter to help reduce the physical memory that the operating system uses. Page combining causes the memory
manager to periodically combine pages in physical memory that have identical content.



<

RELATED LINKS

Get-MMAgent
Set-MMAgent
Disable-MMAgent

REMARKS

<

Examples


Example 1: Enable application launch prefetching

PS C:\> Enable-MMAgent -ApplicationLaunchPrefetching



This command enables application launch prefetching on the local computer.