Stuart McLachlan
stuart at lexacorp.com.pg
Sat Oct 3 19:03:12 CDT 2009
If you have admin privileges on the other machine, we discussed this the other day on Access D where Darren wanted to check whether a specific applicationwas running on a server from inside Access. Here's a modification of that code which wll list all running processes on another machine. Function ProcessesRunning(strServer As String) As Boolean Dim Process As Object Dim strObject As String strObject = "winmgmts://" & strServer For Each Process In GetObject(strObject).InstancesOf("win32_process") Debug.Print Process.Name Next End Function -- Stuart On 3 Oct 2009 at 8:21, Jim Lawrence wrote: > I do not think there is. If that could happen every computer would be > hackable by anyone. > > Jim > > > -----Original Message----- > From: dba-tech-bounces at databaseadvisors.com > [mailto:dba-tech-bounces at databaseadvisors.com] On Behalf Of Rocky Smolin > Sent: Saturday, October 03, 2009 8:02 AM > To: 'Discussion of Hardware and Software issues' > Subject: Re: [dba-Tech] Looking at another computer > > Looks like a slick solution. But I would like something that doesn't > require any interaction from the target machine or pop up anything on the > target. Just want to see what processes are running. > > Rocky > > > -----Original Message----- > From: dba-tech-bounces at databaseadvisors.com > [mailto:dba-tech-bounces at databaseadvisors.com] On Behalf Of Jim Lawrence > Sent: Saturday, October 03, 2009 7:48 AM > To: 'Discussion of Hardware and Software issues' > Subject: Re: [dba-Tech] Looking at another computer > > Hi Rocky: > > Similar to TeamViewer there is also LogMeIn (I have at least 40 sites with > this on it) The product uses the Hamachi VPN technology for absolute > security. > > https://secure.logmein.com/products/free > > HTH > Jim > > > -----Original Message----- > From: dba-tech-bounces at databaseadvisors.com > [mailto:dba-tech-bounces at databaseadvisors.com] On Behalf Of Rocky Smolin > Sent: Saturday, October 03, 2009 7:03 AM > To: 'Access Developers discussion and problem solving'; List > Subject: [dba-Tech] Looking at another computer > > Dear List(s): > > Is there a way that I can run the task manager or equivalent on one computer > on my local network to see what is running on another computer? > > MTIA > > Rocky > > > > > _______________________________________________ > dba-Tech mailing list > dba-Tech at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-tech > Website: http://www.databaseadvisors.com > > _______________________________________________ > dba-Tech mailing list > dba-Tech at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-tech > Website: http://www.databaseadvisors.com > > _______________________________________________ > dba-Tech mailing list > dba-Tech at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-tech > Website: http://www.databaseadvisors.com