Skip to Main Content
Patch My PC Feature and Application Request

A community where customers and the community can provide feedback to make a better product for everyone! For more details on how we prioritize request, please see:

9 VOTE
Status NOTED
Created by Claudio Mendes
Created on Mar 30, 2022

Adobe Photoshop

adobe.com

  • ADMIN RESPONSE
    Apr 3, 2025

    Adding Adobe Creative Cloud products, such as Photoshop, into our catalog presents several challenges. These include requiring Adobe login credentials to access the binaries and handling the variability in options selected, along with managing and detecting custom configurations.

    On the bright side, customers can efficiently manage Adobe Creative Cloud apps by using our Custom Apps feature.

  • Attach files
      Drop here to upload
    • Admin
      Jason Bergner
      Reply
      |
      Apr 3, 2025

      Adding Adobe Creative Cloud products, such as Photoshop, into our catalog presents several challenges. These include requiring Adobe login credentials to access the binaries and handling the variability in options selected, along with managing and detecting custom configurations.

      On the bright side, customers can efficiently manage Adobe Creative Cloud apps by using our Custom Apps feature.

    • Kevin Woodin
      Reply
      |
      Oct 27, 2023

      When I searched Bard (Google)
      I had this but got 403 error when trying. Oviously it's locked down.

      # Get the current version of Photoshop installed on the system.$currentVersion = Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Where-Object{$_.DisplayName -like "*Adobe Photoshop*"} | Select-Object DisplayVersion # Get the latest version of Photoshop available for download.$latestVersion = Invoke-WebRequest -Uri "https://get.adobe.com/photoshop/updates/latest/" | Select-Xml -XPath "//app/@version" | Select-Object -ExpandProperty NodeValue # If the current version is older than the latest version, download and install the update.If ($currentVersion -lt $latestVersion) { # Download the update. (New-Object System.Net.WebClient).DownloadFile("https://get.adobe.com/photoshop/updates/latest/$latestVersion/Photoshop.exe", "$env:TEMP\Photoshop.exe") # Install the update. Start-Process "$env:TEMP\Photoshop.exe" -ArgumentList "/sAll /msi /norestart ALLUSERS=1 EULA_ACCEPT=YES" -Wait # Delete the temporary file. Remove-Item "$env:TEMP\Photoshop.exe" }

    • Jon Evans
      Reply
      |
      May 3, 2022

      Adobe Photoshop starts here: https://helpx.adobe.com/photoshop/kb/uptodate.html

      But you will need an Active CS to get in and grab the updates

    • Admin
      Adam Cook
      Reply
      |
      Mar 31, 2022

      Do you have a link to the vendor's website, download link, documentation, release notes etc?

      Is this a single file installer?

    • +4