Windows 10 Set time automatically not working

December 28, 2019 0 comments
After completing fresh installation of Windows 10 Enterprise Edition, I was setting Date and Time and every time I restart computer it use to get back to some other timings.

I had set time automatically and also set time zone automatically as per the screenshot

Windows 10 Set time automatically not working
Windows 10 Set time automatically not working


To resolve this issue, I followed following steps
  1. Press Windows key + r ( + r).
  2. Type services.msc.
  3. Click Windows Time in the Name column.
    set time automatically is not working in windows 10
  4. Alternate click/ Right click and then click Properties.
  5. Change Startup type to Automatic (if it’s not already set to Automatic).
    Change startup type from manual to automatic if windows 10 set time automatically is not working
  6. Click Start if the service isn’t started.
Now Windows 10 Set time automatically starts working.

How to force HTTPS using a web.config file / Redirect Http to Https using web.config

December 27, 2019 0 comments
http to https using web.config, Use web.config to redirect HTTP to HTTPs, redirect to https using web config file in .net

How to redirect http to https using web config ? To do permanent redirect to https using web.config under Configuration section in web.config file simply add following Rewriting rules.
 

    
        
            
                
                
                    
                    
                        
                    
                    
                
            
        
    

This way we can redirect all Http request to Https using web.config

  • Web.config URL rewrite - force www prefix and https
  • Use web.config to redirect HTTP to HTTPs
  • How to configure your web.config to Redirect http to https
  • Web.config redirects with rewrite rules - https
  • 301 redirect entire site http to https using web.config
  • How to force HTTPS from web.config file