PowerShell Logo Small

Enable-MMAgent



This is the built-in help made by Microsoft for the command 'Enable-MMAgent', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 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, page combining, and application prelaunch.

SYNTAX


Enable-MMAgent [-ApplicationLaunchPrefetching] [-ApplicationPreLaunch] [-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

-- Application prelaunching


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 ApplicationPreLaunch parameter to help improve application startup performance. Application prelaunch can speculatively launch applications that the user is
likely to use in the near future, thus reducing application switch time.


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

Online Version: http://go.microsoft.com/fwlink/?linkid=287365
Debug-MMAppPrelaunch
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.