Summary: Determine if you are running inside the Windows PowerShell console.
How can I find if I am running inside the Windows PowerShell console for my Windows PowerShell profile?
Look at the $host.name property. If it returns ConsoleHost, you are running in the Windows PowerShell console.
The following code shows how to do this:
if(($host.Name -match 'consolehost')) {$true}