Based on the provided reference, the steps describe how to open Service Manager, not the standard Windows Server Manager tool, using the command prompt. The reference outlines a process specific to a particular Service Manager installation.
Here's how to launch the Service Manager application using the command prompt, according to the reference provided:
Steps to Launch Service Manager via Command Prompt
To access the Service Manager application as detailed in the reference, you need to execute specific commands in the Windows command prompt. Follow these steps:
-
Open Command Prompt:
- Click the Start button.
- Navigate through Programs and Accessories.
- Select Command Prompt. Alternatively, you can type
cmd
in the Start search bar and press Enter.
-
Change Directory to Installation Folder:
- The Service Manager application requires you to be in its specific installation directory to run the executable.
- Use the
cd
command to change the current directory to theRUN
folder within your Service Manager installation path. For example, if Service Manager is installed atC:\Program Files\ServiceManager
, you might type:cd "C:\Program Files\ServiceManager\RUN"
- Note: The exact path will depend on where Service Manager was installed on your system. The reference provides an example like "...".
-
Execute the Launch Command:
- Once you are in the correct directory, type the following command:
sm -httpPort:13080 -httpsPort:13081
- This command
sm
is the executable for Service Manager, and the flags-httpPort:13080
and-httpsPort:13081
specify the ports it should use for HTTP and HTTPS connections.
- Once you are in the correct directory, type the following command:
-
Press Enter:
- After typing the command, press the Enter key to execute it.
Following these steps will launch the Service Manager application using the parameters specified in the command.
Important Distinction
It's crucial to note that these steps are for opening Service Manager, a specific application installation described in the reference, and not the built-in Server Manager tool included in Windows Server editions or available as a Remote Server Administration Tools (RSAT) feature for Windows 10. The standard Windows Server Manager tool is typically accessed via the Start menu or its executable (ServerManager.exe
), which does not require changing directories to a specific installation path and running a command like sm
.