LARSn Posted July 10, 2012 Report post Posted July 10, 2012 Hello to everyone! We have a lot of small remote offices in our company with expensive and slow Internet сonnection. So I need to install sccm clients in offline mode, because it will be difficult to download client package from my sccm2012 server. Is there any methods to offline client instalation? Quote Share this post Link to post Share on other sites More sharing options...
Peter van der Woude Posted July 10, 2012 Report post Posted July 10, 2012 Nothing more then just copying the client installation files to an USB device (or whatever) and manually start the installation with the commandline needed for your environment... Quote Share this post Link to post Share on other sites More sharing options...
LARSn Posted July 13, 2012 Report post Posted July 13, 2012 As I undertand, I shuold run "ccmsetup.exe" in cmd with specific switches. But I've spend for nothing few hours with manuals. Can you write to me the example of commandline for offline instalation? Quote Share this post Link to post Share on other sites More sharing options...
Peter van der Woude Posted July 13, 2012 Report post Posted July 13, 2012 Here you can find the parameters including lots of examples: http://technet.microsoft.com/en-us/library/bb680980.aspx 1 Quote Share this post Link to post Share on other sites More sharing options...
LARSn Posted July 16, 2012 Report post Posted July 16, 2012 Thank you. But I still have some questions. And the most important is next one. Could the computer recive the custom client policy during offline instalation (for example thru using "ccminstall.exe /source: ... ") without downloading this policy from MP, for example, could the computer assign policy from specific file? Cause I want to minimalize network traffic generated during client installation. Quote Share this post Link to post Share on other sites More sharing options...
Peter van der Woude Posted July 17, 2012 Report post Posted July 17, 2012 AFAIK it's not possible to save the ConfigMgr policies to a file and apply them to a client.... Quote Share this post Link to post Share on other sites More sharing options...
topcal Posted August 28, 2014 Report post Posted August 28, 2014 This script (link below) installs or uninstalls the SCCM Client 2007 or 2012. I've used PSAppDeployToolkit and other scripts from different sources to accomplish the task. The installation happens in an OFFLINE mode. CCMSETUP will not download the supporting files from the server but utilize the content in the FILES folder of the tool-kit. <ALL THINGS LOCAL> IMPORTANT: Copy the content of the CLIENT folder on the SCCM Server <\\SCCMServer\SMS_SiteCode\Client> and paste it into the FILES folder. Run with elevated permissions. IF running from a share; the computers 'SYSTEM' account should have read access to the FILES folder. The best way to do this is to give everyone read access to the package share. Download from Microsoft's Technet Website. After the SCCM client install, the script will wait for 60 seconds and then trigger a Machine Policy & Evaluation Cycle and a Hardware Inventory cycle. Logging is done to: C:\Windows\Logs\Software Copy the content of the CLIENT folder on the SCCM Server <\\SCCMServer\SMS_SiteCode\Client> and paste it into the FILESfolder. Install SCCM Client: Options: SMSCACHESIZE SMSMP SMSSITECODE FSP SMSSLP DNSSUFFIX The below command will SILENTLY installs the SCCM Client (Offline) .\Deploy-Application.EXE -DeploymentType Install -DeployMode silent -SMSCACHESIZE 10260 -SMSMP "FQDN-of-Management-Point" -SMSSITECODE "Your-Site-Code" -FSP "FQDN-of-Fall-back-Status-Point" The below command will INTERACTIVELY installs the SCCM Client (Offline) .\Deploy-Application.EXE -DeploymentType Install -DeployMode Interactive -SMSCACHESIZE 10260 -SMSMP "FQDN-of-Management-Point" -SMSSITECODE "Your-Site-Code" -FSP "FQDN-of-Fall-back-Status-Point" Uninstall SCCM Client: The below command will SILENTLY Uninstall the SCCM client. .\Deploy-Application.EXE -DeploymentType UnInstall -DeployMode Silent The below command will INTERACTIVELY Uninstall the SCCM client .\Deploy-Application.EXE -DeploymentType UnInstall -DeployMode Interactive Quote Share this post Link to post Share on other sites More sharing options...