Windows Server

IIS Redirect HTTP to HTTPS

Before redirection, we need SSL Certificate.For creating a free SSL Certificate Download Win-Acme it will automatically bind the certificate in IIS.Before generating certificate add-website under IIS for HTTP 1] Download…

Read more

How to auto-start Windows services

#start the following Windows services in the specified order: [Array] $Services = ‘MailService’,’SpamAssassin’,’OpenVPNServiceInteractive’,’Certify.Service’,’Schedule’; #loop through each service, if its not running, start it foreach($ServiceName in $Services){$arrService = Get-Service -Name $ServiceNamewrite-host…

Read more