Varyanica
Varyanica

Reputation: 409

how to get current running application in PoSh

How to get current running application in PoSh?

Upvotes: 0

Views: 321

Answers (2)

stej
stej

Reputation: 29449

Just use Get-Process to get the application.

Get-Process applicationName

Upvotes: 3

garik
garik

Reputation: 5756

SessionState.Applications (powershell 2.0 SDK)

Upvotes: 1

Related Questions