Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Deploy Adobe Creative Cloud Application

Community Beginner ,
Nov 01, 2018 Nov 01, 2018

Hello there, I am packaging up the Current Adobe Creative Cloud App Version 4.7.0.400 and I need the Silent Install Switch.

I have tried the following Set-up.exe --silent and it keeps popping up the Adobe Sign In Windows. So please share with me what is the silent switch to install this application silently?

Also I have a side question, if the Adobe Creative Cloud application is installed on users system who has No Admin Rights, will they be able to log into the application and download/install for example Acrobat without Admin Rights?

Thank You

Josh

39.7K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Adobe Employee , Nov 02, 2018 Nov 02, 2018

Thanks.

Okay, I would recommend to build a package using the Creative Cloud Packager tool. You can have a package with just the CC Desktop App and it will give you much more functionality.

You can get CCP from the Licensing Website or the Admin Console. You can also build a package directly on the Admin Console.

Packaging User Guide

Translate
Engaged ,
Nov 02, 2018 Nov 02, 2018

For the second part of your question : You can create a Self Service package - Deploy, deliver, and update apps in Adobe Creative Cloud for enterprise deployments

I'll let others handle the first question.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Nov 02, 2018 Nov 02, 2018

That parameter will install a package silently. However when the CC Desktop App is launched it will still ask for a sign-in. It is designed for a named-user license assigned to an individual.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Nov 02, 2018 Nov 02, 2018

Thanks for the feedback, but the issue is with deploying the application. Even for test purpose when I run the Set-up.exe --silent, instead of installing the application, it launches the Sign-In Window. If the switch suppose to install silently, why is this happening?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Nov 02, 2018 Nov 02, 2018

Hi,

Could you supply some additional detail?

How have you made your package? What method are you using for deployment? Do you install with elevated admin privileges? What environment are you deploying to?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Nov 02, 2018 Nov 02, 2018

So I have download the current version Adobe Creative Cloud off Adobe Website and I am packaging it up using PowerShell. Here is the command I am using in PowerShell Execute-Process -Path "Set-up.exe" -Parameters "--silent"

Once my package is working correctly, I will be using SCCM 2012 to deploy the application to Software Center and yes it does install with Elevated Admin Privileges.

We mostly use Windows 10 in our Environment 

Thank You

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Nov 02, 2018 Nov 02, 2018

Thanks.

Okay, I would recommend to build a package using the Creative Cloud Packager tool. You can have a package with just the CC Desktop App and it will give you much more functionality.

You can get CCP from the Licensing Website or the Admin Console. You can also build a package directly on the Admin Console.

Packaging User Guide

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Nov 02, 2018 Nov 02, 2018

Thank you for the feedback that was the common answer that I have been getting while researching this topic online. Lol the only problem is that I don't have access to that tool. Reaching out to my internal contacts and see if I can get access to the application.

And you are correct that there are a lot of options available when it comes to packaging up the applications and what I am trying to achieve I believe is doable with the CCP Tool.

Thanks for the information!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Aug 09, 2019 Aug 09, 2019

I know this post is coming up on a year old, but I ran into this issue as well. To silently install Adobe CC without having to use the Package Tool and get rid of the sign-in window, you can do the following:

  1. Set-up.exe --silent
  2. End the "Creative Cloud.exe" process.

I run a PowerShell script to end the process after the install:

$ErrorActionPreference = "SilentlyContinue"

Stop-Process -Name "Creative Cloud" -Force -ErrorAction SilentlyContinue | out-null

I do this for my MDT deployment of Windows 10 Enterprise 1903. I don't have access to the Package Tool or Admin Console because I'm not part of the IT of my university that handles that. However, we do our own deployments within my entity and I need to install Adobe CC to save time with post-deployment configuration. I add this PowerShell script after the app installs. Run that script after every reboot as well.

On a related note, I also do the same with GlobalProtect to get rid of the connection window that pops up. Example:

Stop-Process -Name PanGPA -Force -ErrorAction SilentlyContinue | out-null

Wait-Process -Name PanGPA -Timeout 30

Stop-Service -Name PanGPS -NoWait -Force -ErrorAction SilentlyContinue | out-null

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
May 21, 2024 May 21, 2024

This solution doesn't appear to work or I'm doing something wrong. How does the installation complete without logging in? I still get the login screen despite running set-up.exe --silent 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Jun 06, 2024 Jun 06, 2024
LATEST

@Joseph36504943n152 If you are an admin and have access to the admin console, kindly create a package which acts as an offline package and no need to sign in for the deployment. 
Here is the help article for more details: https://helpx.adobe.com/enterprise/using/create-nul-packages.html

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines