function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
salesforcelearner1salesforcelearner1 

post instal script

HI team,

I have a requirement to create a visualforce page after installing managed package in the Installed org. Can I do it using postinstall script?.
Raj VakatiRaj Vakati
I dnt think so ..  You can ask installaed org to create a manullay as part of post installation ... 


A post install script is an Apex class that implements the InstallHandler interface. This interface has a single method called onInstall that specifies the actions to be performed on installation.

Refer this link 

https://developer.salesforce.com/docs/atlas.en-us.packagingGuide.meta/packagingGuide/apex_post_install_script_intro.htm
 
A post install script is an Apex class that implements the InstallHandler interface. This interface has a single method called onInstall that specifies the actions to be performed on installation.