Ccmsetup Install Command Line

Posted on

May 29, 2016. You can deploy the SCCM client several ways, the most common being through SCCM, manual install via the ccmsetup.exe. This article describes how to install and uninstall the client manually. Uninstalling the client is pretty straight forward. Open a command prompt (elevated privileges).

  1. Ccmsetup Install Command Line Tools Mac
  2. Ccmsetup Repair Command Line
  3. Sccm Ccmsetup Command Line
Active1 month ago

I'm trying to deploy SCCM on Hyper-V to push updates to Windows 10 clients. When I try to manually install the SCCM client on Windows 10, the installer does nothing.

I've tried connecting to the server via the command line and running ccmsetup.exe in this way, and I've tried copying the entire client folder to the client PC and running the setup this way. The only thing that happens is that Windows is asking for administrator rights, and when I click 'yes', nothing happens.

I checked the task manager to see what happens, and ccmsetup.exe appears in my process list. However, it disappears a few seconds later.

marijnrmarijnr

Ccmsetup Install Command Line Tools Mac

Ccmsetup install command line tools mac

1 Answer

This is because you're not supplying any information to the executable to install the client. The minimum you need for most cases are the following:

Ccmsetup Repair Command Line

Ignore the brackets above during CMD, but

  • [1] - The name of your Management Point server - e.g. SMSMP01
  • [2] - The SITE Code for your SCCM estate. e.g. S01
  • [3] - The name of your Fallback Status Point, e.g. SMSFP01Adding /logon will abort the installing the client if one already exists on the machine

Gives you: CCMSetup.exe /mp:SMSMP01 SMSSITECODE=S01 FSP=SMSFP01

Sccm Ccmsetup Command Line

When the client is already installed, you can repair it by simply double-clicking the ccmsetup.exe as you were...

I got this from an MS Docs page, which has more in-depth information:https://docs.microsoft.com/en-us/sccm/core/clients/deploy/about-client-installation-properties

PresPres

Not the answer you're looking for? Browse other questions tagged windows-10windows-server-2012-r2sccm or ask your own question.