Get Running Processes On Work Network
Jun 26, 2012
i developing a small program for work. This program will run on multiable computers within my work. This program will access a ms database which will be held on the company network. What i need to do is check if any users have the database open on their desktop. I know how to check if the database is open on a local machine but i am not sure how to check if it is open on another users machine or what i could research around this, any direction would be great. My code for checking if the process is running on a local machine :
[Code]...
View 3 Replies
ADVERTISEMENT
Aug 15, 2011
I am trying to check for certain processes that is running and then inform the user of those processes via textbox like "The programs; -name of the processes running goes here- are running". [code]
View 2 Replies
Jul 16, 2009
I am looking for some code that will end the processes of a running program. I have found many post on how to do so but I have found that they are over complicating things. I am using this code to see if a processes is running.
code
Dim ProcessRuning() As Process
ProcessRuning = Process.GetProcessesByName("example")
Do While ProcessRuning.Length <> 0
[Code].....
View 6 Replies
Oct 10, 2009
How would I get a list of running processes and show it in a listbox? I want it to be able to update.
View 11 Replies
Jun 7, 2011
Is it possible to get a list of running application in a remote pc through wireless or wired network?? i tried this code but i get an error
Dim ps As System.Diagnostics.Process
For Each ps In System.Diagnostics.Process.GetProcesses(remote_pc_name)
ListBox1.Items.Add(ps.ToString)
[code].....
View 2 Replies
Jun 16, 2009
i'm making a new project something like a task manager. i could manage to get the names of all running processes
Imports System.Diagnostics
Public Class Form1
Dim proc As Process
[Code]...
it works. it gets process names (but without extentions) what i want to do now is to get the image path of each process. i think i will have to use a different control probably data grid view. can somebody tell me how to add items to datagridview instead of listbox? and how to get each process image path( to data grid view)?
View 14 Replies
Jan 7, 2010
I have a program that instantiates Excel, programatically updates it, and then closes it. In some cases, when I look in the task manager/processes, I can still see 1 or more copies of Excel running.
1) Is there a way I can, after creating an object reference to Excel, identify the PID or some other unique identification?
2) Using that, is there a way, after I think I have told Excel to go away, to see if the PID (or whatever) is still active?
3) Given that I have a PID, can I get a new object reference and try to tell it to go away nicely
4) If it still won't go away, can I force an end process of the task?
5) Is there a library or routine available that will return the active processes so I can search to see if there are any copies of Excel still running?
6) using the approach in 5, can I also find out if the item associated with the PID is running just as a process and not as an application?
View 4 Replies
Jan 27, 2010
I want to be able to cycle through the active processes on the system and find when my program starts? It has the name 'Calculate Distance' as the form1.vb text. There fore, I want to be able to close a splash screen when the form1 loads. This requires checking currently running processes. How do I do that in VB.NET 2005?
View 1 Replies
May 16, 2012
Is there a way/API to run processes under the service TrustedInstaller in .NET? I don't want to use a command-line tool like devxexec.
View 2 Replies
Oct 14, 2008
I have rently deployed a VB windows application. It uses ADO typed datasets and datagrids.
On a couple of machine, if the application is left opened for a while (about more than 30 minutes), it gives no response. In order to restart it, I need to end the process vie the Task manager.
How would I even begin to troubleshoot why it is "hanging up"?
View 19 Replies
Jun 23, 2009
I'm working on a little project it is like the task manager but i want it to get a list of all current processes, the path and icon of each. i could manage to get the list but i need to know how to get the path of each and the icon. i'm using a list view to do this. any suggestions?
View 4 Replies
Apr 27, 2012
In my program, i need to List up all processes that currently running on windows by VB.NET framework 2.0. Can i get this list with VB.NET coding?
View 4 Replies
Sep 10, 2010
I have the code below that reads all the processes running.
Dim procList() As Process = Process.GetProcesses()
For i As Integer = 0 To UBound(procList)
Dim strProcName As String = procList(i).ProcessName
'msgbox(strProcName)
Next
I want to know what company the process belongs to, like the status bar in windows explorer shows the executable info: "Description: Windows Explorer", Company: Microsoft Corporation" and so on. Is it possible?
View 8 Replies
Apr 26, 2009
I have created a program that when a user registers, it sends an email to that user, and three of my email addresses. The problem is that while it is sending, the window is un-usable and "does not respond" and the icon changes to the white box thing when you click on it. is there a way that i can run this process behind the program, so the window is still usable, but it still sends the emails?
View 1 Replies
Jan 13, 2012
I have a sub-procedure which I want to run a different process, depending on what is currently running. I thought the easiest way to do this was by using an ArrayList of each of the campaign details & adding an 'Inuse' field to check to see if the Inuse field is set to 0 or 1. The problem that I have is that when running the process it is all happening at once & the integer hasn't been changed before the next thread kicks in so my threads are running the same campaigns. I tried to avoid the problem by adding a Thread.Sleep(100) delay inbetween starting threads but this led to exactly the same problem.
Here's an example of what I am trying to do:
Imports System.Threading
Public Class Form1
Private Campaigns As New ArrayList
Private ProcessRunning As Boolean = False
Friend StopProcess As Boolean = False
[Code] .....
View 2 Replies
Apr 13, 2010
I'm creating a small application and want to add function which shows the total running processes in windows. What are the codes for that button?
View 1 Replies
Nov 13, 2010
I have created a client and server application where the clients will be run on multiple computers while the server application will be run on the host computer in the same network. So far I am able to list all the connected clients in a ListView on the server application with the IP addresses and computer names of the client computers.
[Code]...
View 2 Replies
Jan 5, 2010
I want to display in a listbox all the running processes on the local machine. Can anyone offer me some code to do this.
View 2 Replies
Jun 7, 2012
i would like to scan all the processes(aplications) running in a system before starting my program. and also need to close some programs before starting my program.how to read all the processes ruining in a system one by one.
View 1 Replies
Dec 27, 2010
how to make my progress bar work depend on the program processes. if my the process take a long time to end, the progress bar will work the same else if the process work for a short time, it work the same also.i've made this code so far
'for the timer tick sub
ProgressBar2.Value = ProgressBar2.Value + 1
If ProgressBar2.Value = ProgressBar2.Maximum Then
[code]....
View 2 Replies
Jan 4, 2011
Make a code to view the processes that are running to a remote computer and how to kill them by select one...
View 6 Replies
Aug 27, 2010
We have a windows service running under a network account that calls and runs an ActiveX exe. The exe is running under the local system account, not the network account of the service.
View 1 Replies
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
Sep 7, 2009
I have seen that unsigned .net applications will not run on most college networks and as part of a school applications i am trying to let these applications run on a protected network. The app is written in VB 2008 and is signed strongly.
View 1 Replies
Nov 16, 2009
I have various projects that use reflection to access and invoke private or internal members in some of the framework classes. These projects all work fine on my machine (running visual basic express 2008), but are they guaranteed to work on another machine, or, say, over a network? I've had a look at Reflection-Permission, but I'm not sure if I need that granting to me or if I grant it to my project!
View 3 Replies
Apr 10, 2009
i have finished build a simple inventory program. But this program just only work in single pc not at network. Could any body tell me how to make it work in network (multiple pc in network)?
View 7 Replies
Jul 7, 2009
According to MSDN, the Icon.ExtractAssociatedIcon method cannot accept a UNC pathname, which I think is totally absurd. Does anyone know of a work-around to extract the icon of a file on a network?
View 2 Replies
May 30, 2011
We have a VB.NET applciation that is run from a mapped network drive. This works fine on all PCs expect those with Windows 7, on those we get the following: "application generated an exception that cannot be handled" System.Security.SecurityException was unhandled If the application folder is copied locally and run from there it works fine. I assume it is related to Windows 7 netowrk security but not sure how to work around it.
View 2 Replies
Feb 5, 2010
I'm looking for suggestions on keeping a program that is running on a network updated. Installation consists of 15 users, each have the program on their local pc, but they all access same date from sql server. I am looking for a clean method that would allow me to update one folder on the network and for each computer to get updated when they run the program and the programs sees a later ver on that folder on the network. (Obviously I can do this inside the program itself since it won't allow being overwritten while opened.)
View 3 Replies
Apr 7, 2011
Our engineers use an application developed internally to perform risk assessments at a customers site. Sometimes on larger jobs a group of engineers will all carry out risk assessments together and will all need access to a single database file to all work on at the same time.
[Code]...
View 7 Replies