ftp and web server ..

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

How can I check if some embedded WinCE device had IIS web and ftp server
installed ? Thank you .
 
There is no IIS for Windows CE. There is the Windows CE Web Server and FTP
Server. These are samples that ship with Platform Builder.

Here's a couple of ways of checking for their presence on a device:

1. Try connecting to port 80 (HTTP) and port 21 (FTP)
2. Look for ftpd.dll and httpd.dll and httpdsvc.exe on the device.
3. Check the registry on the device. Look for the following keys:

[HKEY_LOCAL_MACHINE\Services\FTPD]

[HKEY_LOCAL_MACHINE\Services\HTTPD]

--
Neil Cowburn
Principal Partner
OpenNETCF Consulting, LLC.

Managed Code in the Embedded World

http://www.opennetcf.com/
http://www.smartdeviceframework.com/
 
Back
Top