Remove-MemoryDump - PowerShell Cmdlet
This PowerShell Cmdlet enables the user to delete the specified memory dump file from the specified server.
Note
This feature is only available in NCache Enterprise.
Remove-MemoryDump -Server [-FileName] [-Port] [-Credentials] [-NoLogo]
Examples of Remove-MemoryDump - PowerShell Cmdlet
- This PowerShell Cmdlet deletes the dump file created on server 20.200.20.11 with specified name.
Remove-MemoryDump -Server 20.200.20.11 -FileName demoCacheDumpFile.dmp
- This PowerShell Cmdlet deletes the dump file on server 20.200.20.11 with specified name without prompt to cancel it.
Remove-MemoryDump -Server 20.200.20.11 -FileName dumpFile.dmp -Force
Properties
Note
The parameters with an asterisk (*) on their names are the required parameters and the rest are optional.
Parameters | Data Types | Description | Default Value |
---|---|---|---|
-Server |
<String> |
Specifies the NCache server name/IP where NCache Service is running and the dump was created. | - |
-FileName |
<String> |
Specifies the name of memory dump file that is to be deleted. | - |
-NoLogo |
<SwitchParameter> |
Suppresses display of the logo banner. | False |
-Port |
<Integer> |
Specifies the server port where NCache server is listening. | 8250 |
-Credentials |
<pscredential> |
Specifies the user credentials required to authorize access for the specified operation. These credentials should belong to a user who has appropriate permissions at the node. | - |