[dismiss]
På yggenyk.dk bruger vi cookies til at give dig en god oplevelse og til at indsamle statistik, der kan være med til at forbedre brugeroplevelsen. Hvis du klikker på et link på yggenyk.dk, accepterer du samtidig vores cookiepolitik.
Programming UPnP - Links To Documents And Tutorials
Jump to navigation
Jump to search
<google>ENGELSK</google>
- Programming control point application using the UPnP Control Point API - Code Project
- Universal Plug and Play (UPnP) Client Support - TechNet
- Using the Control Point API (Windows)
Troubleshooting
Configure Windows Firewall
Windows firewall can be configured from a command prompt with administrative rights
Example:
- netsh advfirewall firewall set rule name="Network Discovery (SSDP-In)" profile=domain new enable=yes remoteip=any
will allow SSDP discovery on domain networks from any ipaddress on the network
- netsh advfirewall firewall set rule name="Network Discovery (SSDP-In)" profile=private new enable=yes remoteip=any
will allow SSDP discovery on private networks from any ipaddress on the network
- netsh advfirewall firewall set rule name="Network Discovery (SSDP-In)" profile=public new enable=yes remoteip=any
will allow SSDP discovery on public networks from any ipaddress on the network