Showing results for services - Scripting Blog [archived]

Sep 12, 2014
0
0

Why Are All These Services Starting?

Doctor Scripto
Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about using WMI to find out how services start.  Hey, Scripting Guy! I was looking at the processes on my workstation, and I see lots of things running. I suspect many of these are actually services. But I am wondering how I can use Windows PowerShell to find services that start automatically...

Scripting Guy!Windows PowerShellscripting techniques
Jul 31, 2014
0
0

Exclude Delayed Start Services when Checking Status with PowerShell

Doctor Scripto
Doctor Scripto

Summary: Windows PowerShell MVP, Mike Robbins, shows us how to use Windows PowerShell to check the status of Windows services and improve the accuracy of results. Microsoft Scripting Guy, Ed Wilson, is here. Welcome back guest blogger, Mike Robbins. Mike F Robbins is a senior systems engineer with 20 years of professional experience as an IT pro. ...

Scripting Guy!Windows PowerShellguest blogger
Nov 11, 2013
0
0

The Admin’s First Steps: Capacity Planning Part 2

Doctor Scripto
Doctor Scripto

Summary: Richard Siddaway talks about using Windows PowerShell to store data for capacity planning.  Hey, Scripting Guy! I’ve just starting learning PowerShell and I understand how to use it as a scripting language and shell. I’ve been told to start performing capacity planning for my servers, and I am wondering how I can use ...

Scripting Guy!Windows PowerShellscripting techniques
Nov 4, 2013
0
0

The Admin’s First Steps: Capacity Planning Part 1

Doctor Scripto
Doctor Scripto

Summary: Richard Siddaway talks about using Windows PowerShell to collect data for capacity planning.  Hey, Scripting Guy! I’ve just starting learning Windows PowerShell and I understand how to use it as a scripting language and shell. I’ve been told to start performing capacity planning for my servers and was wondering how I can ...

Scripting Guy!Windows PowerShellscripting techniques
Oct 13, 2013
0
0

PowerTip: Use PoweShell to Start Service on Remote Machine

Doctor Scripto
Doctor Scripto

Summary: Learn how to use Windows PowerShell to start a service on a remote machine. How can I start a service on a remote machine? To start a service on a local machine:Get-Service -Name bits  | Start-serviceBut if you try to use the same technique on a remote machine, it tries to start the service on your local machine:Get-Service...

Windows PowerShellscripting techniquesPowerTip