UiPath 2023.4.0 download

Hi

Does anybody have the link or the msi file for UiPath’s 2023.4.0 version?

If yes, please share.

Thanks in advance :slight_smile:

@Anand_Parkash_Aggarwal
You can’t download an old Community Studio version, sadly. That only works if you are using the Enterprise version. There you can downgrade to the last 5 versions.

Okay. Is there a possibility to get this version in the Enterprise edition?

@Anand_Parkash_Aggarwal
Usually five versions are available please follow this video:

@Anand_Parkash_Aggarwal

If you need just Studio 2023.4.0, try this: https://download.uipath.com/versions/23.4/UiPathStudio.msi

Thanks!

Stumbled across this topic because I had a similar need. Turns out to exclude any guesswork a quick http head request with e.g. PowerShell brings the answer:

$response = Invoke-WebRequest -Uri  https://download.uipath.com/versions/23.4.0/UiPathStudio.msi -Method Head -UseBasicParsing
Write-Host $response.StatusCode #looking for 200

Wrapped in 3 nested loops for major, minor, patch and such a script confirms existence of about ~60 installer files for the UiPathStudio.msi since version 20 :slight_smile:
(And by the way, there are ~15 UiPathStudioCommunity.msi available as well.)

This is important information for me, because I am writing Chocolatey installer packages.
Thanks to Argin Lerit for supplying me with the basic URL structure.