Click here to Skip to main content
15,891,513 members
Articles / Web Development / ASP.NET
Article

HTTP Computer Manager

Rate me:
Please Sign up or sign in to vote.
4.17/5 (19 votes)
1 Sep 20041 min read 125.7K   4.3K   73   27
HTTP Computer Manager

Image 1

Introduction

This application features:
  • Connection to any Computer on remote network;
  • System information browsing
    • Operation System
    • Computer Information
    • Process Information
    • BIOS
    • Time Zone
    • Memory Configuration
    • Video Configuration
  • Event Viewer
  • Process Viewer
    • Process List
    • Process Tree
    • Process Properties
    • Process Priority Changing
    • Process Killing
  • Services
    • Start
    • Stop
    • Pause
    • Resume
    • Change Start Mode
  • Resource Viewers
    • Local Groups
    • Local Users
    • Shares
    • Environment (Editable)
    • Logical Disks
    • Network Adapters
    • System Drivers

Details

Service and Process lists have context menu, Environment is editable and you can save changes. You browse information on server where application is installed, or on any (accessible from server) computer on remote network.

Image 2

Application backend is based on WMI Data Provider for . Net All screens referenced to the same page pgQuery.aspx with "panel" parameter. Panel is XML file with WQL command and reference to XSLT.

For Example :

XML
<?xml version="1.0" encoding="utf-8" ?>
  <Panel> 
    <Query type="wql"> 
      <Param name="SortBy" default="DisplayName"/>   
      <Param name="SortDir" default="ASC"/> 
      <Command> 
        SELECT __PATH, DisplayName, State, StartMode, StartName  
        FROM Win32_Service  
        ORDER BY @SortBy @SortDir 
      </Command>
    </Query> 
    <Output type="html">  
      <Xslt src="ServiceList"/> 
    </Output>
  </Panel>

Using this framework you can easily create new pane, just add new Panel + XSLT. Framework also include a couple of HTC controls :

  • DataGrid - data grid;
  • Menu - context menu;
  • Include - client side HTML include (based on MSDN example);
Using pgInclude.aspx and Include.htc possible to create multi-panel page (for example System Information page).

Related Resources

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalhi Pin
dhilonlydhil15-Apr-10 2:04
dhilonlydhil15-Apr-10 2:04 
GeneralRe: hi Pin
Maxim Kazitov16-Apr-10 7:07
Maxim Kazitov16-Apr-10 7:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.