Facing issue in Installing UiPath Studio? Then please try the below and let me know your thoughts

If the .msi file doesn’t give you the option to Run as administrator, you can force the installation with elevated privileges using one of the following methods:

Method 1: Install via Command Prompt (Run as Administrator)

  1. Open Command Prompt as Administrator:
    • Press Windows + X and select Command Prompt (Admin) or Windows Terminal (Admin).
  2. Run the .msi file with elevated privileges:
    • In the command prompt, navigate to the directory where the .msi file is located. For example, if the file is in your Downloads folder:
      cd C:\Users\<YourUsername>\Downloads
      
    • Then run the installer with the following command:
      msiexec /i YourInstaller.msi
      
    • This will run the installer with elevated privileges.

Method 2: Modify the MSI Installer’s Properties

  1. Right-click the .msi file and select Properties.
  2. In the General tab, if you see an option at the bottom saying Unblock, check that option.
  3. After unblocking, try running the installer again.

Method 3: Use PowerShell to Run as Admin

  1. Open PowerShell as an administrator by pressing Windows + X and selecting Windows PowerShell (Admin).
  2. Use PowerShell to run the installer:
    Start-Process msiexec.exe -ArgumentList '/i "C:\Path\to\YourInstaller.msi"' -Verb runAs
    

This forces the .msi to run with administrative privileges.

Method 4: Change Group Policy (if applicable)

If this is a policy issue where your user account is restricted from running installers:

  1. Open the Local Group Policy Editor (Run gpedit.msc).
  2. Navigate to:
    • Computer Configuration > Administrative Templates > Windows Components > Windows Installer
  3. Look for the policy Disable Windows Installer and ensure it is not configured or disabled.

Method 5: Convert to .exe (as discussed earlier)

If these methods fail, converting the .msi to an .exe using the wrapper tools discussed in the previous message might give you the option to run the installer with elevated privileges.

Let me know which method you’d like to explore further!

Hello @raghu30691!

It seems that you have trouble getting an answer to your question in the first 24 hours.
Let us give you a few hints and helpful links.

First, make sure you browsed through our Forum FAQ Beginner’s Guide. It will teach you what should be included in your topic.

You can check out some of our resources directly, see below:

  1. Always search first. It is the best way to quickly find your answer. Check out the image icon for that.
    Clicking the options button will let you set more specific topic search filters, i.e. only the ones with a solution.

  2. Topic that contains most common solutions with example project files can be found here.

  3. Read our official documentation where you can find a lot of information and instructions about each of our products:

  4. Watch the videos on our official YouTube channel for more visual tutorials.

Hopefully this will let you easily find the solution/information you need. Once you have it, we would be happy if you could share your findings here and mark it as a solution. This will help other users find it in the future.

Thank you for helping us build our UiPath Community!

Cheers from your friendly
Forum_Staff