KB Article #50855
Migration Scripts
Problem
Migration Scripts Required
Resolution
Execute Export_all.bat ( by double clicking )
Export_all.bat
call profile.bat
mkdir %p_runtime_dir%\exports
for %%A in ( site , lsite , appli , list , model , user , profile ) do echo Exporting %%A ... && pelbase export_%%A -f %p_runtime_dir%\exports\export_%%A.txt
pause
-----------------------------------------------------------------------------------------------
Place the exports folder from previous installation to new installation and execute import_all.bat
Import_all.bat
call profile.bat
for %%A in ( site , lsite , appli , list , model , user , profile ) do echo Importing %%A ... && pelbase import -%%A -if %p_runtime_dir%\exports\export_%%A.txt
pause