After updating TLS you will need to restart these services.

 If you are updating the TLS (Transport Layer Security) protocol on a Windows server, there are several services that you may need to restart in order for the changes to take effect. These services include:


Windows Update service: This service is responsible for checking for and installing updates on the server. Restarting this service ensures that any updates related to TLS are applied.


IIS (Internet Information Services): If you have web applications running on the server that use SSL/TLS, you may need to restart IIS after updating TLS to ensure that the new protocol is used by the web server.


Remote Desktop Services: If you use Remote Desktop to connect to the server, you may need to restart the Remote Desktop Services to ensure that the new TLS protocol is used for secure communication.


Active Directory Certificate Services: If your server is running as a certificate authority or if you use certificates issued by a CA on the server, you may need to restart the Active Directory Certificate Services to ensure that the new TLS protocol is used when issuing or renewing certificates.


It's important to note that the exact services that need to be restarted may vary depending on the specific updates you are applying and the configuration of your server. It's always a good idea to review the documentation provided with the updates and consult with your IT department or a qualified professional to ensure that the necessary services are restarted properly.

PowerShell below 

# Restart Windows Update service, IIS (Internet Information Services), Remote Desktop Services, and Active Directory Certificate Services:
# Restart Windows Update service
Restart-Service -Name wuauserv

# Restart IIS (Internet Information Services)
Restart-Service -Name w3svc

# Restart Remote Desktop Services
Restart-Service -Name TermService

# Restart Active Directory Certificate Services
Restart-Service -Name CertSvc


Comments

Popular posts from this blog

Clearing DNS cache on vCenter Server Appliance

Repairing a virtual disk in Workstation (2019259)