Showing results for processes - Scripting Blog [archived]

Jan 15, 2016
0
1

PowerTip: Use PowerShell to Find Command Line of Processes

Doctor Scripto
Doctor Scripto

Summary: Learn how to use Windows PowerShell to find the command line of processes.  How can I find the command line that was used to launch a process that is running on my system?  Use the Get-CimInstance cmdlet, the Win32_Process WMI class, and the CommandLine property: gcim win32_process | select commandli...

Scripting Guy!Windows PowerShellPowerTip
Jan 15, 2016
0
0

Working with Windows Startup Processes and PowerShell

Doctor Scripto
Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, talks about using Windows PowerShell to examine startup processes in Windows 10. Microsoft Scripting Guy, Ed Wilson, is here. This morning I am playing with the Xbox One Smart Glass app on Windows 10. I have used the app since it was in beta, and I just got my Xbox One. But I have started using the ...

Scripting Guy!Windows PowerShellWMI
Aug 18, 2015
0
0

PowerTip: Find Processes with High Priority

Doctor Scripto
Doctor Scripto

Summary: Learn how to use Windows PowerShell to find processes that have a high priority.  How can I use Windows PowerShell to quickly see what processes have a high priority or an above normal priority?  Open Windows PowerShell with Admin rights, use the Get-Process cmdlet to return processes, and filter       &n...

Scripting Guy!Windows PowerShellPowerTip
Sep 19, 2014
0
0

Use PowerShell to Repeatedly Terminate Specific Processes

Doctor Scripto
Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about using Windows PowerShell to terminate processes that start at random times.  Hey, Scripting Guy! I have a question that I hope you can answer. It seems that there are several processes that keep starting on my computer running Windows 8.1. That eat up lots of resources, and I cannot...

Scripting Guy!Windows PowerShellscripting techniques
Sep 17, 2014
0
0

Use PowerShell to Monitor for Process Startup

Doctor Scripto
Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about using Windows PowerShell to monitor for process startup. Microsoft Scripting Guy, Ed Wilson, is here. This morning, I spent a decent amount of time answering an email from a former colleague. I will actually share his email and my reply this coming weekend. In the meantime, I was playing arou...

Scripting Guy!Windows PowerShellscripting techniques