Skip to content

Instantly share code, notes, and snippets.

@TobiasChe
TobiasChe / win10port80unbind
Created December 31, 2015 18:35
Windows 10 port 80 'unbind' solution
REM start => run => cmd => iisreset /stop
win10port80unbind.bat
REM by default win10 auto starts and populates port 80 on both v4 and v6 interfaces
REM with IIS things. This sucks.
REM start bat file
iisreset /stop
REM end bat file
@TobiasChe
TobiasChe / forcesslgaq
Created August 26, 2015 18:17
Force SSL for Google tracking
_gaq.push(['_setAccount', 'UA-12345-1']);
_gaq.push(['_gat._forceSSL']); // Send all hits using SSL, even from insecure (HTTP) pages.
_gaq.push(['_trackPageview']);