docker windows bind: An attempt was made to access a socket in a way forbidden by its access permissions.
netsh int ipv4 show excludedportrange protocol=tcp
https://dandini.wordpress.com/2019/07/15/administered-port-exclusions-blocking-high-ports/
import servicemanager | |
import socket | |
import sys | |
import win32event | |
import win32service | |
import win32serviceutil | |
class TestService(win32serviceutil.ServiceFramework): | |
_svc_name_ = "TestService" |
docker windows bind: An attempt was made to access a socket in a way forbidden by its access permissions.
netsh int ipv4 show excludedportrange protocol=tcp
https://dandini.wordpress.com/2019/07/15/administered-port-exclusions-blocking-high-ports/
function refreshAt(hours, minutes, seconds) { | |
var now = new Date(); | |
var then = new Date(); | |
if(now.getHours() > hours || | |
(now.getHours() == hours && now.getMinutes() > minutes) || | |
now.getHours() == hours && now.getMinutes() == minutes && now.getSeconds() >= seconds) { | |
then.setDate(now.getDate() + 1); | |
} | |
then.setHours(hours); |