Stop-NCacheManagementCenter
This PowerShell cmdlet stops the NCache Management Center on the target machine. The default URL is http://localhost:8251.
Stop-NCacheManagementCenter [-Server] [-Credentials] [-NoLogo]
Examples
- This command stops the NCache Management Center on local server.
Stop-NCacheManagementCenter
- This command stops the NCache Management Center existing on server 20.200.20.11.
Stop-NCacheManagementCenter -Server 20.200.20.11
- This command stops the NCache Management Center existing on servers 20.200.20.11 and 20.200.20.12.
Stop-NCacheManagementCenter -Server "20.200.20.11,20.200.20.12"
- This command stops the NCache Management Center on local server using security credentials.
Stop-NCacheManagementCenter -Credentials(Get-Credential john_smith)
Properties
Note
The parameters with asterisk (*) on their names are the required parameters and the rest are optional.
| Parameters | Data Types | Description | Default Value |
|---|---|---|---|
-Server |
<String> |
Specifies a server name where the NCache Service is running. | IP of the local machine |
-Credentials |
<pscredential> |
Specifies the user credentials required to authorize access for the specified operation. These credentials should belong to a user with the appropriate permissions at the node. | - |
-NoLogo |
<SwitchParameter> |
Suppresses display of the logo banner. | False |