Add-BCDataCacheExtension

Add-BCDataCacheExtension

Increases the amount of cache storage space that is available on a hosted cache server by adding a new cache file.

Syntax

Parameter Set: Percentage
Add-BCDataCacheExtension [[-Percentage] <UInt32> ] [[-Path] <String> ] [-AsJob] [-CimSession <CimSession> ] [-Force] [-PassThru] [-ThrottleLimit <Int32> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: SizeBytes
Add-BCDataCacheExtension [[-Path] <String> ] -SizeBytes <UInt64> [-AsJob] [-CimSession <CimSession> ] [-Force] [-PassThru] [-ThrottleLimit <Int32> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

Detailed Description

The Add-BCDataCacheExtension cmdlet adds a new data cache file to increase the amount of cache storage space that is available on a hosted cache server. Data cache files can be spread across multiple disks to maximize performance.

Parameters

-AsJob

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-CimSession<CimSession>

Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a New-CimSession or Get-CimSession cmdlet. The default is the current session on the local computer.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Force

Runs the cmdlet without prompting for confirmation.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-PassThru

Sends items from the interactive window down the pipeline as input to other cmdlets. By default, this cmdlet does not generate any output.
To send items from the interactive window down the pipeline, click to select the items and then click OK. Shift-click and Ctrl-click are supported.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Path<String>

Specifies the location where the data cache file is created.

Aliases

none

Required?

false

Position?

3

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Percentage<UInt32>

Specifies the size of the cache file as a percentage of the disk space.
For example, if the value of 15 is provided, then the data cache file has a maximum size of fifteen percent of the disk space on the hard drive where the file is created.

Aliases

none

Required?

false

Position?

2

Default Value

5

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-SizeBytes<UInt64>

Specifies the size of the cache file in bytes.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-ThrottleLimit<Int32>

Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of 0 is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Confirm

Prompts you for confirmation before running the cmdlet.

Required?

false

Position?

named

Default Value

false

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Required?

false

Position?

named

Default Value

false

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see    about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Inputs

The input type is the type of the objects that you can pipe to the cmdlet.

  • None

Outputs

The output type is the type of the objects that the cmdlet emits.

  • Microsoft.Management.Infrastructure.CimInstance#root\StandardCimV2\MSFT_NetBranchCacheDataCacheExtension

    The Microsoft.Management.Infrastructure.CimInstance object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (#) provides the namespace and class name for the underlying WMI object.

Examples

EXAMPLE 1

This example creates a data cache extension in the default location reserving 5% of the drive.

PS C:\> Add-BCDataCacheExtension

EXAMPLE 2

This example adds a data cache extension in the C:\datacache directory reserving 10% of the drive C.

PS C:\> Add-BCDataCacheExtension –Path C:\datacache –Percentage 10

Get-BCDataCacheExtension

Remove-BCDataCacheExtension