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

Remove Bloatware on a Windows 10 Default Installation

1. Run PowerShell as Administrator 2. Issue these commands to download the Windows10Debloater script: #…

MS Exchange 2010: Mailbox Repair

PowerShell snippet to initiate repair # set user alias or email addresses here:$userAliases="user1","user2"foreach ($user in…

Use DISM To Install Windows Features

Deployment Image Servicing and Management (DISM.exe) is a command-line tool that can be used to…