Looking for a way to include/embed text from a file on a page so that the short codes are processed

I have done this before with wp-include-file
you need to edit the file called wp-include-file.php in the plugin`s directory
look at line 144 and replace:

return $content;

with

return do_shortcode($content);

that`s it.

hope this helps.