tags:

views:

40

answers:

2

How to get current running application in PoSh?

+2  A: 

Just use Get-Process to get the application.

Get-Process applicationName
stej
+1  A: 

SessionState.Applications (powershell 2.0 SDK)

igor