You need to use quotes around the temp table name and you can delete the temp table directly after using drop table ....
select *
into #myTempTable -- creates a new temp table
from tMyTable -- some table in your database
exec tempdb..sp_help '#myTempTable'
drop table #myTempTable