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:
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" }
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?