I use powershell as shell in Windows. When I\'m trying to launch some application who\'s dll dependencies are missing in PATH environment variable, then nothing happens, powersh
You could echo the %ERROR% variable, which stores errors until the PowerShell window is closed.
echo
%ERROR%
Update: In PowerShell, you could use the Get-Error command, or look at the $Error variable.
Get-Error
$Error