Posted On March 31, 2019

Command line to stop, start, or restarting services

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Command line to stop, start, or restarting services
– Discover service names: #net start
– Restart specific service: net stop {service_name} && net start {service_name}
– Get CPU architecture: systeminfo | findstr /I type:

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Find Empty Directories

$directories="\\FILESERVER01\SHARE01" # Dynamic Credential method 1 $who = whoami if ($who.substring($who.length-2, 2) -eq "-admin"){$username=$who;} else…

How to Setup Applications & Scanners to Use Office 365 Online Exchange to Send Emails

Intro: There are three (3) methods: (1) SMTP client authentication, (2) Direct Send, and (3)…

PowerShell: Windows Performance Benchmarking

There are many 3rd party performance benchmark tools for Windows 10. Out of convenience, PowerShell…