Showing archive results for January 2016

Jan 17, 2016
Post comments count0
Post likes count0

Weekend Scripter: Find Information on the Hey, Scripting Guy! Blog

Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, talks about how to find stuff on the Hey, Scripting Guy! Blog. Microsoft Scripting Guy, Ed Wilson, is here. It is hard to imagine that it is 2016. It’s even harder to imagine that I have been writing the Hey, Scripting Guy! Blog since 2008! With the current pace of twice a day posts, 7 days a week,...

Scripting Guy!Windows PowerShellWeekend Scripter
Jan 16, 2016
Post comments count0
Post likes count0

PowerTip: Find Processes by Using Wildcard Characters

Doctor Scripto

Summary: Learn how to use wildcard characters and Windows PowerShell to find processes.  How can I use Windows PowerShell to easily see all processes that contain the letters SV in the process name?  Use the Get-Process cmdlet and a simple wildcard pattern, for example: gps *sv* Note   gps is an alias for Get-Process.

Scripting Guy!Windows PowerShellPowerTip
Jan 16, 2016
Post comments count0
Post likes count0

Weekend Scripter: PowerShell Saturday in Tampa,FL, March 19, 2016

Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, talks about Windows PowerShell Saturday in Tampa Florida on March 19, 2016. Microsoft Scripting Guy, Ed Wilson, is here. There are worse places to be in March than in Tampa, Florida. If you come to Florida, you might see the elusive and endangered Florida panther. You could see a bear. If you get out on ...

Scripting Guy!Windows PowerShellWeekend Scripter
Jan 15, 2016
Post comments count0
Post likes count1

PowerTip: Use PowerShell to Find Command Line of Processes

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
Post comments count0
Post likes count0

Working with Windows Startup Processes and PowerShell

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