Disable Simple TCP/IP Services (simptcp) with PowerShell

Simple TCP/IP Services (simptcp) is a feature in Windows that provides a set of basic networking services, such as echo, daytime, and quote of the day. However, there may be situations where you want to disable this feature for security or performance reasons. In this article, we’ll explore how to disable Simple TCP/IP Services using PowerShell.

$ServiceName=”simptcp”
if (Get-Service $ServiceName -ErrorAction SilentlyContinue) {
Stop-Service $ServiceName
Set-Service $ServiceName -StartupType Disabled
echo “The service $ServiceName has been disabled.”
}
else {
echo “The service $ServiceName is not installed.”
}

Leave a comment

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

two × three =