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

PowerShell: How To Configure Static IP Address

$nicName='NIC1' $ipaddress='192.168.0.222' $cidrPrefix=24 $defaultGateway='192.168.0.1' $dnsServers=@('8.8.8.8','4.4.2.2') $disableIpv6=$true function setNic($nicName,$ipAddress,$cidrPrefix,$defaultGateway,$dnsServers,$disableIpv6=$true ){ $ifIndex=(get-netadapter|?{$_.Name -eq $nicName}).ifIndex New-NetIPAddress -InterfaceIndex $ifIndex…

Script to Disable User Accounts

accountsToDisable.txtorangeapplepeartermed user REM disableAccounts.batREM read accountsToDisable.txt and convert names into proper DN entries. Save result…

How to Fix Corrupted Windows System Files

Symptoms:- Blue Screens- Slow booting- You have too much free time- This appears out of…