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.
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.
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" }
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
Do you have a link to the vendor's website, download link, documentation, release notes etc?
Is this a single file installer?