From b2699772a7ba86f34aa7202f0a03f78cbcad1eb6 Mon Sep 17 00:00:00 2001 From: Tess Gauthier Date: Thu, 17 Mar 2022 19:07:55 -0400 Subject: [PATCH] add examples of msi commands --- Install-Win32-OpenSSH-Using-MSI.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Install-Win32-OpenSSH-Using-MSI.md b/Install-Win32-OpenSSH-Using-MSI.md index c75e18a..2cd9032 100644 --- a/Install-Win32-OpenSSH-Using-MSI.md +++ b/Install-Win32-OpenSSH-Using-MSI.md @@ -14,6 +14,12 @@ The commands to run, are as follows: * To install only the SSH Server `msiexec /i REMOVE=Client` +## Examples: +* Installing SSH Client & openssh.msi is in the working directory: +`msiexec /i openssh.msi REMOVE=Server` +* Installing SSH Server & openssh.msi is in C:\users\public\downloads\: +`msiexec /i C:\users\public\downloads\openssh.msi REMOVE=Client` + To verify that OpenSSH was installed properly, check the status of the SSH Service. In PowerShell, run: `Get-Service -Name ssh*`