Tuesday, August 24, 2021

How to install a package in salesforce with package id

This post explains how to install a package in salesforce with package id. 

Steps:

1.) If you want to install the package in Sandbox org, Use this URL:
    https://test.salesforce.com/packaging/installPackage.apexp?p0=P_Id
    For production org, use this URL :
    https://login.salesforce.com/packaging/installPackage.apexp?p0=P_Id

2.) Replace P_Id in the URL with your package id and hit the URL.

3.) Enter valid username and password of the salesforce org.

Login to salesforce

4.) You will see the like :

Install package in salesforce

Select the option for which you want to install the package and click upgrade.

After some seconds the package will be installed on your org.


To verify that package is installed or not perform the following steps on your org:

  • Go to the setup.
  • Search for the package and click Installed Packages.
  • If the package was installed successfully, you will see the package here.

Installed packages in salesforce



Thanks, 
Lovesalesforceyes

No comments:

Post a Comment

Get selected radio button value in LWC

This post explains how to get selected radio button in LWC. Below is demo of output : To use the radio button in LWC you have to use the  li...