Monitor The Registry For Changes Similar To How Sysinternals Process Monitor ?
Jan 31, 2011
Can I monitor the registry for changes similar to how sysinternals process monitor does it in VB? I have checked many different articles and C# samples but not come any closer to getting an answer, I would like to know if there an easier way (a VB sample perhaps)that you folks can share. Ultimately I'd like to be able monitor other things too like file system, processes etc but wonder most about how the registry can be done in VB...Would using system.management be a start? Or WMI? if so is there a nice VB sample..
View 3 Replies
ADVERTISEMENT
Sep 9, 2010
I want to make a process monitor tool with WMI that monitor the processes created or deleted, but the code will not work. Note to reference System.Management,
CODE:
Code dowload:
CODE:
View 4 Replies
Oct 9, 2010
I`m trying to do an application in VB.NET that notify the change in the registry. i saw that could do so,But this is VBSI too saw that could use RegNotifyChangeKeyValue i did this code: but not run.
im myEvent = CreateEventA(IntPtr.Zero, False, False, Nothing)
Dim a As String = 1
RegOpenKeyA(HKEY_CURRENT_USER, "Software", a)
[code].....
View 6 Replies
Jun 26, 2011
give me a function or class which have properties ?For example:I shared a folder (C:shared)
Dim clsObj as new clsSharedMonitor("C:shared")
'so that I can get its properties like:
clsObj.FullPath() 'Full Path of folder that client are accessing
clsObj.ClientIP() 'IP of computer which access to server
[code].....
View 6 Replies
Nov 4, 2009
Second, I have a question which I have been trying to find answer for a wile but without any success.How can I monitor Windows Process for any change (create/kill) after run my app ? the only way I have think about it is that used two lists, the first one load the process list on it and the second refresh each 1 sec to get the new one and compare the two to know the difference, but its useless because you cant know who killed or created the process and other information.
As I have been read before, I guess there is a need to implement windows API, hook to detect process changes ? Is there any idea or solution for this?
Note: I am using VB.NET (2010)
View 18 Replies
Oct 27, 2009
I am using the following code to start a CMD process, my question is.My application starts up a CMD, and then the CMD commands a php file to start up and run. How can I track both of these process, so I can start and stop them?
vb.net Public Class Form1
[Code]...
View 23 Replies
Jun 15, 2011
So I got this idea to write a very small application for a school project that raises a balloon from the system tray everytime a new process is getting launched or an existing process quits.
With my current code, I am getting the list of processes using a timer.This list needs to be compared with the previous list and detect differences (if this is possible, or should I use a different concept)? I have no clue how to do this.
I currently have:A ListView (ListView1), with the View property to "Details" A Timer (at a 5000ms interval), with the following
[Code]...
View 6 Replies
Apr 15, 2011
Can i monitor changes to the registry like monitoring the files and folders using filesystemwatcher?
View 10 Replies
Oct 20, 2009
Firstly im aware that the code below will auto run the default browser.
Code:
But i need to find a way of finding out what the default browser is. Is there a registry setting that displays this? also whats the best way to monitor for a process start or exit?
I was thinking about making a listview that updates every second checking for new entrys or entrys that have gone. But is this the best way if i only need to monitor 1 or 2 proceses?
I did write(and worked before)
Code:
But thats not working now.
View 3 Replies
Feb 27, 2011
I want to create a Small application for all the computers in my house that Monitors Network Traffic Because we are using large amounts of data each month and that leads to high costs.I can Monitor A computers total traffic with the system.net.networkinterface namespace. Now I would like to know if it is possible to Monitor an Process/applications Network Traffic to pinpoint The Problem.I've Read About WMI But there is so Much info on MSDN that i can't actually get to what i want and i don't think there is something so direct like the amount of bytes sent over the network.
View 3 Replies
Jul 9, 2009
I need to launch a VB6 application (which i am already doing fine with the Process namesapce) but I would like to be able to send status updates back to the VB.Net app which fired up the process. I looked into the standardinput and standardoutput but it looks like that is only intended for console apps. Any suggestions on methods to do that? I need something that is bullet proof and instant. I dont want to write logs out to a file and use filesystemwatcher to monitor for changes.
View 2 Replies
Feb 26, 2011
Bit of a Noobie question here, I have a process, for example[code]...
I need to launch the process from within code in a form or module and I want to monitor its progress, for example with a progress bar.
The problem I have is that in order to use a 'progress form' I have to show a form modally, then kick off the process (usually with a button) and allow a cancel option.
I want the form to show then start running automatically without user intervention.
View 4 Replies
May 27, 2010
I have the following windows service file:
Imports System.ServiceProcess
Imports System.IO
Public Class fswService
[Code].....
2 problems: first, intellisense error saying: 'fswService' is a type and cannot be used as an expression. second, I can not figure out a way to pass on to the service the path of the folder to watch (which is stored at My.Settings.userPath).
View 2 Replies
Jan 2, 2010
what is the method to tell when a user starts or stops a process? My company makes a software package that allows a tie in from vb. I want to make a package to allow me to start and stop the software remotely and to monitor when the software is running or not.Ideally there would be some sort of event in windows when the user starts or stops the software. I imagine there is some sort of way to do this with a timer, but I am sure that windows will have some sort of event process when the program starts. I have googled this and looked through the xtremevbtalk forums for this but I am not quite sure as to what keywords to use.
View 3 Replies
Jun 29, 2009
My application periodically starts console programs with process.start. I need to monitor the output of the programs in "realtime".
For example, the program writes the following text to the console: Processing...............
Every second or so a new dot appears to let the user know the program is still processing. However,... until the programm outputs a CR/LF, I am not able to retrieve the standard output of the program (while it is still running).
What can I do to get the output in realtime for - let's say - piping it into a database for instance in VB.NET?
View 2 Replies
Jul 5, 2010
I want to develop a process that will monitor computers that logon to my network. Gather information such as computer name, time of logon and log out.The process would be located in the icon tray?
View 3 Replies
Sep 6, 2009
how to check if
- A specific sound card is in use;
- A specific process is using any sound card;
- A sound card's current volume output
View 1 Replies
Feb 10, 2008
I want to be able to have the Level of my Mic in my Form. I want a Progressbar that tracks how high my voice is just like in Windows Movie Maker or In Msn Messinger when you are doing a voice Chat there is a Progressbar like object that shows how loud it is...
View 17 Replies
Feb 7, 2011
I've a (challenge?) question for you, it's possible to monitor an swf embedded in a Form, so we can know when it stopped?[code]...
View 12 Replies
Jul 7, 2010
So, when a user is running my application, how do I monitor for a particular key press? I am looking at this for my reference[url]...
View 7 Replies
Nov 3, 2008
I am creating a tool for monitor turn off function,I should be able to get wether monitor is switched on or switch off from my code.I got solutions only to switch on or switch off the monitor, any one can help me how can we dedect if a monitor is turned on or off?
View 1 Replies
Sep 15, 2010
I was just wondering if mixing SyncLock blocks and Monitor.Enter/Exit statements is dangerous. I know SyncLock uses Monitor and a Try block in the background, but are there any problems with using the two together for thread synchronization?
View 1 Replies
Jul 29, 2011
[code]Seems to fetch data from my one and only internal IDE drive.The line objWriter.Write("Active: {0} ", queryObj("Active")) does not work if you change up the data in between the first set of quotes. Thus changing Active: {0} to Active: {1} causes an error that the Try Catch doesn't catch (this for...next is in a try catch).I assumed that the stuff inside the quotes was just text and could be changed to anything? Why doesn't the try catch catch it?Doesn't read a USB external drive when attached.i changed {0} to {1} and it crashes.
View 1 Replies
Apr 20, 2011
I have put together an app to monitor several directories. The basic principle is to replicate from a Master directory to a Shared directory when specific criteria is met (specific file types are changed, renamed or deleted within the Master directory)Everything seems to work fine with excpetion to MS Office documents. e.g. If I work on a .bmp and save it, it will trigger a changed event. However, with office documents (Word in this example), it appears to rename the MYDOC.DOC file to <freefile>.TMP then rename a different <freefile>.TMP to MYDOC.DOC. This would not be a problem if it was to trigger the Changed or Created event for MYDOC.DOC, but it doesn't. It wouldn't be so bad if the first TMP file was named the same as the second TMP file as I could mirror the process using the Renamed event.I can not filter out TMP files as we use TMP files within the Master directory, albeit for a different purpose.I would use an off the shelf produt, but the files need to be copied to different shared directories based on specific criteria so I can not seem to find a suitable product that fits my needs.
View 1 Replies
Jun 3, 2011
How do I turn off a monitor using VB.NET code? OK, actually I found the C# solution. But I need the VB.NET solution. I have tried an online C# to VB.NET converter, but the converter is complaining that there are errors in it.How can the following C# code be translated to VB.NET?
[Code]...
View 2 Replies
Mar 10, 2009
i need to write a program to get the monitor's serial number i can get the model number for the life of me i cant seem to get the serial?
Private Function monitorName() As String
On Error GoTo Error_Handler
Dim objWMIService As Object
[Code]....
View 7 Replies
Jun 22, 2009
i would like to program a little app that will change the colors of the screen. im not talking about the darkness. i want it to mimic what it would look like if for example you put on blue lenses or red lenses. so i would like to input the color and i want the screen to look as though i put on lenses of that particular color. well i actually need the program to semi-permanently change the users experience on the computer. i need the computer for the entire session that it is turned on to be changed this color
View 4 Replies
Jun 6, 2011
in vb, is it possible to open a form on a second monitor, apart from setting the forms screen position?
View 1 Replies
Jun 14, 2011
my code, i'm converting this code from vb to vb.net and seems i was missing something, seems EnumDisplaySetting can't read values and returning 0
Private Declare Function EnumDisplaySettings Lib "user32" Alias "EnumDisplaySettingsA" (ByVal lpszDeviceName As Integer, ByVal iModeNum As Integer, ByRef lpDevMode As DEVMODE) As Integer
[code]....
View 8 Replies
May 15, 2009
I would like to get the screen dimensions so I can programatically change the size of a form upto these values. I'm new to .Net and things are little different then they used to be in earlier version of VB. How do I do it?
View 3 Replies