vb net remote system monitoring source code
#1

hello i am sara. i would like to get details on vb.net remote system monitoring source code. i have final year project in the university. i need your help.
Reply
#2
Introduction
The idea of remote system monitoring and controlling application is to do some of the actions like ex: Shutdown, Reboot, Hibernate of the users systems remotely. The user can also make use of this application to query additional details of the systems.

Consider a scenario where you have a set of systems (Computers) and you want to control them from your mobile or any other desktop anywhere from the world. So this started as initial requirement of how we can implement the same to control numerous systems remotely.

Consider another scenario of how you can retrieve the information of a particular system remotely from your handheld devices or through desktops. By retrieving information, one may be interested in knowing the following

Machine Name
CPU information
Username
Domain Name
OS Version
Software Requirements Specification
Aim: The aim of this project is to provide a facility for the end user to remotely control their systems through desktop or mobile based web application.
Purpose: The purpose of this project is to implement a proof or concept of the same. And to show how easily it can be done with .NET technology
Scope: The scope of this project is very limited to controlling the system with few actions like Shutdown, Reboot, Hibernate, Logoff, Force close all applications etc. The user registration is done only at the client application and the it should be always running in-order to control the system remotely.
User Characteristics: The Following things are taken into consideration with this software development
Users can have multiple systems for controlling. There is absolutely no limit in the number of systems being controlled by the users.
The user can either control her/his systems through mobile or desktop based web application.
Each user can control his/her system only and don’t have access to control others systems.
Right now there is only one type of user of this system i.e. the System Administrators who will be using this system to control or fetch additional information of the system on their own interest.
Software and Hardware Requirement
Software Requirements:

Operating system: Microsoft Windows XP / Win 7 / Vista
.NET framework 4.0
SQL Server 2008
Hardware Requirements:

Processor Pentium 4
RAM- 256Mb
HDD-10GB
Technologies Used

Visual Studio.NET

The Client Application is developed with .NET C# Winform technology
The Server side web application is developed with ASP.NET MVC3 technology.
Internet based / Cloud based Microsoft SQL Server 2008

This software is designed with Software as a Service model with a common single cloud database which stores all the users and their system information.
How does the software functions?
Client Application:

When you run the client application for the first time, you will have to register yourself with the username and password. The same has to be provided as log on information which will authenticate the user in client and server applications.

Once authenticated, the user has to click on the Start button for continuous monitoring of the system behind the scene. The system registers by itself by putting an entry in database (this happens only for the first usage of the client app) so that the user can control that particular machine. When the user closes the client application, the entry in the database for that system will be deactivated. For subsequent usable of the client application, the system will be activated for monitoring and controlling.

Server Application:

It is a web based application, on requesting the user will be authenticated. The use has to provide the same username and password he/she has provided at the time of user registration in client app.

On successful authentication, the list of active systems will be displayed in a screen. The user can select one and perform the actions like Shutdown, Reboot etc.
Reply
#3
Introduction
Years ago, I posted the article An Implementation of System Monitor, which displays computer resource usages in a Windows form, similar to the Performance page in the Windows Task Manager. Sometimes, you might not want to watch your system all the time in UI. You probably need to record system data in the background, to monitor the records, and trigger some actions if necessary. This is another kind of application that we can implement as Windows services.

A Windows service is a long-running executable that runs in its own Windows session. The service can be automatically started at boot time, can be paused, resumed, and restarted, without any user interface. Windows services are ideal for lengthy periodically running tasks that do not interfere with the user working on the computer. The example can be monitoring local system resources or collecting and analyzing data from remote units.

You can create a service as a Microsoft Visual Studio project, defining code to control commands sent and actions taken to the commands. You can then use the Services Control Manager to start, stop, pause, resume, and configure your service. Different from other applications, the service executable must be installed before it can work. You must create an installation component for the service, which installs and registers the service, and creates its entry with the Services Control Manager. For details, refer to MSDN: Windows Service Applications.

Almost all applications require receiving some input to prepare data and states for a task. An application usually need to display their output to indicate results or exceptions. Because the Windows service is not interactive, a dialog raised within the service cannot be seen and may stop it responding. Usually, the service running states can be logged into the Windows Event Viewer, but such a log is quite limited and not easy to retrieve being saved. So the question is how to prepare a Windows service for the input data and how to receive its resulted outputs. This article will show you an example of a system monitoring service by demonstrating how to:

Configure the service behavior with input by using XmlSerializer,
Simulate tasks on the local system and the remote host in check cycles,
Log service polling results in a weekly generated log file,
Retrieve CPU, memory, and disk usages with the performance counter and WMI,
Handle the service events of Start, Stop, Pause and Resume.
As you can see, this is an actual and complete Windows service with simplified but meaningful operations. With this service skeleton, you can add your tasks with settings in configuration, replace with your business logic, and format your output of expected or alert messages. It should be easier to enhance and extend for your use.
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: sms based remote monitoring system source code in java, remote system monitoring using vb net, network monitoring system project in net, vb net remote system monitoring source code, hibernate abstractstandardbasictype, abstractroutingdatasource hibernate, vb net remote pc monitoring souce code,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  voice vased email system source code 0 3,118 20-04-2021, 07:59 AM
Last Post:
  code on mobile based attendance system for project 0 1,189 14-01-2019, 12:52 PM
Last Post:
  Regarding help for code on mobile based attendance system 1 1,142 14-01-2019, 12:48 PM
Last Post:
  site net real estate guest post 2 3,363 14-11-2018, 07:10 PM
Last Post:
  ns2 source codes free download for hello flood attack 0 2,824 31-10-2018, 02:42 PM
Last Post: Guest
  voice based email for blinds source code 0 704 22-10-2018, 05:12 PM
Last Post: Guest
  source code for blood group detection in matlab 0 6,362 22-10-2018, 10:59 AM
Last Post: Guest
  voice based email for blinds source code 0 692 21-10-2018, 07:58 PM
Last Post: Guest
  voice based email for blinds source code 0 631 21-10-2018, 07:43 PM
Last Post: Guest
  source code for hall ticket generation in php 0 2,024 08-10-2018, 10:00 PM
Last Post: Guest

Forum Jump: