Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
580 B

  1. <HTML XMLNS:devmgr>
  2. <?IMPORT namespace="devmgr" implementation="devcls.htc" >
  3. <HEAD>
  4. <TITLE>DeviceConsole: List all devices</TITLE>
  5. <HTA:APPLICATION>
  6. </HEAD>
  7. <BODY bgcolor = "#00ffff">
  8. <H1>Devices:</H1>
  9. <SCRIPT LANGUAGE=vbscript>
  10. <!--
  11. DIM DevCon
  12. DIM DevClasses
  13. DIM DevCls
  14. SET DevCon = CreateObject("DevCon.DeviceConsole")
  15. SET DevClasses = DevCon.SetupClasses
  16. FOR EACH DevCls IN DevClasses
  17. document.write "<devmgr:devcls guid=""" & DevCls.Guid & """>" & DevCls.Description & "</devmgr:devcls><br>"
  18. NEXT
  19. -->
  20. </SCRIPT>
  21. </BODY>
  22. </HTML>