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

Setup Virtual DMZ and Trust Zones with PFSense

I. Setup Route at Core Router1. Configure subnet, ip helper address, and default route---------- Example…

PowerShell: Check Windows Computers for Specific KB’s

# Check for specific KBs $kbs='KB5010790','KB5010419' $computernames=@('WINDOWS001','WINDOWS002') $regexIP = [regex] "\b(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\b" $names=foreach($computername in $computernames){ if($computername…

Securing Windows Remote Desktop Services

secpol.msc > Local Policies > User Rights Assignments > double-click "Allow Log on through Remote…