developer747
developer747

Reputation: 15928

Is it possible to log all powershell commands run on a machine?

We have some .net applications running on a server that run powershell scripts. Is there a setting where we can log every single powershell command run on that machine, without modifying our existing applications? I already tried start-transcript . That command only captures the commands run in the current session.

Upvotes: 0

Views: 1524

Answers (1)

mjolinor
mjolinor

Reputation: 68273

I believe Microsoft calls what you're after "Over the Shoulder Transcription". It's described here, and will be available in WMF5.

Upvotes: 1

Related Questions