Although Ensim and cPanel have different directory structures but you can manually shift subdomain from Ensim to cPanel, check here how you can transfer it with following easy step.

*. First login to the ensim server from where you want to shift.
*. Go to subdomain directory for the domain you want to move: as
cd /home/virtual/domain.com/var/subdomain
*. Here you can see all the subdomains for this domain in the directory. Go
into each directory plus the html directory as
cd subdomainxx/html
* Now zip up the files
tar -czvf ../../subdomainname.tar.gz *
do the same procedure for all subdomains
you have to go up 3 levels to find the files due to symbolic
cd ../../..
*. FTP the files to the new server
ftp newserver
mput *.tar.gz
* On new server
Login to the domain’s cpanel account and create all the subdomains
* Go to the directory where the files were ftp uploaded.
cd /home/admin
* copy each file to the proper directory. You need to know the admin
username for the primary domain. If the domain user is bob123 and the
subdirectory (sudomain) is “forum” then you would copy the files like this:
mv forum.tar.gz /home/bob123/www/forum/
* After moving it to specific directory(sudomain) then unzip the files.
cd /home/bob123/www/forum/
tar -zxvf forum.tar.gz
rm forum.tar.gz
* Now change the permission and ownership for all files in that directory as
chown bobs123:bob 123 * -R
You will notice that all subdomain get transferred from ensim to cpanel