Is there a builtin webserver on Windows that can serve a known-named HTTP resource?

2

Ultimately I want a convenient way that I can use in a web-browser to test in a local network if a Windows machine is alive.

Windows, even non-“Server” versions, has many built-in services that use HTTP(s) as the underlying transport mechanism to exchange XML files, e.g., PowerShell, UPNP, RSAT, etc., all of which use HTTP as of 201X.

Usually, in Windows domains, certain administrative tools require connection to, and retrieval of information from, client PCs.

I'm hoping, one of these services with a known port number has a known-named XML.Resource or "index.htm". A Favicon.ico would do, but I do not want to depend on/enable IIS, or the UPNP mediaserver just to get a simple HTTP-resource. Depending on (prexisting) policies that might not even be possible/allowed.

So: Which built-in Windows client remote administration feature could I (mis-)use to fetch a resource via HTTP, ideally a built-in picture logo or XML-resource?

Basically, I want to HTTP-ping a suitably configured domain-joined Windows machine from a JavaScript client-side environment.

Alex Stragies

Posted 2018-10-20T15:48:50.043

Reputation: 1 320

Question was closed 2018-10-20T16:54:05.267

I'm pretty sure no such resource exists among built-in Windows features/services. – I say Reinstate Monica – 2018-10-20T18:58:40.630

Would IIS work for you? I think it is built in at least in newer versions of Windows. Apache2 might be more light weight though, but as I have no experience running IIS on a home PC, I can't say fore sure. – Nordlys Jeger – 2018-10-21T00:05:15.490

No answers