Manipulate Windows Process Input/Output Stream with Powershell? -
is there builtin functionality powershell allows examine system processes in great detail, , view/manipulate i/o stream? there community modules? has worked process streams , know of references such work?
the standard cmdlets provided powershell allows basic operations on processes. get-process cmdlet returns running processes objects detailed information process. can modules process loaded using parameter -module. can use start/stop process cmdlets manage list of running processes.
however, returned objects give information may search for. get-process returns objects system.diagnostics.process, while get-process -module returns objects system.diagnostics.processmodule.
Comments
Post a Comment