Flash Accel PowerShell cmdlets : Reset Flash Accel device cache

Reset Flash Accel device cache
The Reset-FADevice cmdlet resets the cache for data devices managed by Flash Accel.
Syntax
Reset-FADevice

[
-ComputerName String]
[
-Credential PsCredential]
[
-Disks String []]
[
-NaaIds String []]
[
CommonParameters]
Description
The Reset-FADevice cmdlet resets the cache for data devices managed by Flash Accel. To reset the cache for devices on a remote computer, use the ComputerName parameter. The command uses WMI to gather data remotely and locally.
Parameters
-ComputerName String
Specifies a remote Windows computer on which you want to run the command. If you do not use this parameter, the command runs on the local computer. The value can be a fully qualified domain name or an IP address. When the remote computer is in a different domain from the local computer, you must use a fully qualified domain name.
-Credential PsCredential
Specifies a user account that you want to use to run this command. An administrative-level user account is required. If you do not use this parameter, the command runs under the user account with which you are currently logged in. Enter a user name, such as "User01", "Domain01\User01", or "User@example.com". You can also enter a PSCredential object, such as an object that is returned by the Get-Credential cmdlet. When you enter a user name, you are prompted for a password.
-Disks String []
List of data disks for which the cache needs to be reset, such as "disk0,disk1". If the Disks or the NaaIds parameter is not specified, the operation is performed on all devices. Separate disks with a comma.
-NaaIds String []
List of NaaIds of the data disks for which the cache needs to be reset, such as "6000c2a4caae4b29aa930b1e41708d69". If the Disks or the NaaIds parameter is not specified, the operation is performed on all devices. Separate NaaIds with a comma.
This cmdlet supports the following common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer and OutVariable. For more information, enter:
get-help about_commonparameters
Example 9. Example: Reset the cache for two disks
The following cmdlet resets the cache for disk0 and disk1 on the local computer:
Reset-FADevice -Disks disk0,disk1
Parent Topic: Flash Accel PowerShell cmdlets