Re: Is there a way to find out which user is logged onto Remedy on a particular client PC?

2006-10-08 Thread Mahesh Patil
**
Hi Raj,Greetings for the day.  I can be reachedat +91 09960616551.Thanks and Regards,  Mahesh"Kulkarni, Gururaj" [EMAIL PROTECTED] wrote:  ** Can I have your contact information?thanks,  Raj-Original Message-From: Action Request System discussion list(ARSList) [mailto:[EMAIL PROTECTED]On Behalf Of Mahesh PatilSent: Friday, October 06, 2006 12:22 PMTo: arslist@ARSLIST.ORGSubject: Re: Is there a way to find out which user is logged onto Remedy on a particular client PC?**   Hi Raj,Thanks for the email.  I am placed at Pune.Kind Regards,  Mahesh"Kulkarni, Gururaj" [EMAIL PROTECTED] wrote:  ** Hi Mahesh,  wehere are you located?thanks,  Raj-Original Message-From: Action Request System discussion list(ARSList) [mailto:[EMAIL PROTECTED]On Behalf Of Mahesh PatilSent: Friday, October 06, 2006 11:46 AMTo: arslist@ARSLIST.ORGSubject: Re: Is there a way to find out which user is logged onto Remedy on a particular client PC?**   Hello,If you can view the user log on the server, you will get the information. 
   Thanks,  Mahesh"Heider, Stephen" [EMAIL PROTECTED] wrote:  Angus,You can use the API. Here is a small excerpt from a console app inVB.Net. It retrieves a list of current users and outputs to the screen(stdout). In a Filter use the Set Fields $PROCESS $ command to run theapp and capture its output.Dim LoggedInUsers As System.ArrayLoggedInUsers = ARS.GetListUser(ARSystem.Server.UserListType.Current,#1/1/2000#)For Each u As ARSystem.UserInfo In LoggedInUsersConsole.WriteLine(u.UserName.ToString)NextThis, combined with a signon tracking method described by Dave, willallow you to link the login names (from the API) to computers, fullnames, IP addresses, etc.StephenFrom: Action Request
 System discussion list(ARSList)[mailto:[EMAIL PROTECTED] On Behalf Of Dave BarberSent: Friday, October 06, 2006 4:03 AMTo: arslist@ARSLIST.ORGSubject: Re: Is there a way to find out which user is logged onto Remedyon a particular client PC?** Angus,Not quite the same, but I put some user signon tracking into place quitea while back - added a process onto the initform to push the IP address,user-id, date/time, PC name onto a tracking form (did it so we could seewho was actually using the system) Whilst it wouldn't tell you if they were actually logged on at any pointin time, it does give you some idea as to who is using what PCs.RegardsDaveOn 05/10/06, Angus Comber <[EMAIL PROTECTED]>wrote: HelloWe need to find out which user is logged onto Remedy on aparticular PC. Isthere an API to find out which users are logged in? If we havethe hostname
 or IP address of client PC can we then work out which is theuser?Angus___UNSUBSCRIBE or access ARSlist Archives at http://www.wwrug.org__20060125___This posting was submitted with HTML init___ ___UNSUBSCRIBE or access ARSlist Archives at http://www.wwrug.org  __Do You Yahoo!?Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com __20060125___This posting was submitted with HTML in it_20060125___This posting was submitted with HTML in it___   __Do You Yahoo!?Tired of spam? Yahoo! Mail
 has the best spam protection around http://mail.yahoo.com __20060125___This posting was submitted with HTML in it_20060125___This posting was submitted with HTML in it___  __Do You Yahoo!?Tired of spam?  Yahoo! Mail has the best spam protection around http://mail.yahoo.com 
__20060125___This posting was submitted with HTML in it___

Re: Is there a way to find out which user is logged onto Remedy on a particular client PC?

2006-10-06 Thread Dave Barber
**
Angus,

Not quite the same, but I put some user signon tracking into place quite a while back - added a process onto the initform to push the IP address, user-id, date/time, PC name onto a tracking form (did it so we could see who was actually using the system)


Whilst it wouldn't tell you if they were actually logged on at any point in time, it does give you some idea as to who is using what PCs.

Regards

Dave
On 05/10/06, Angus Comber [EMAIL PROTECTED] wrote:
HelloWe need to find out which user is logged onto Remedy on a particular PC.Isthere an API to find out which users are logged in?If we have the hostname
or IP address of client PC can we then work out which is the user?Angus___UNSUBSCRIBE or access ARSlist Archives at 
http://www.wwrug.org
__20060125___This posting was submitted with HTML in it___


Re: Is there a way to find out which user is logged onto Remedy on a particular client PC?

2006-10-06 Thread Heider, Stephen
Angus,

You can use the API.  Here is a small excerpt from a console app in
VB.Net.  It retrieves a list of current users and outputs to the screen
(stdout).  In a Filter use the Set Fields $PROCESS $ command to run the
app and capture its output.
 
Dim LoggedInUsers As System.Array
LoggedInUsers = ARS.GetListUser(ARSystem.Server.UserListType.Current,
#1/1/2000#)
For Each u As ARSystem.UserInfo In LoggedInUsers
Console.WriteLine(u.UserName.ToString)
Next

This, combined with a signon tracking method described by Dave, will
allow you to link the login names (from the API) to computers, full
names, IP addresses, etc.


Stephen
 


From: Action Request System discussion list(ARSList)
[mailto:[EMAIL PROTECTED] On Behalf Of Dave Barber
Sent: Friday, October 06, 2006 4:03 AM
To: arslist@ARSLIST.ORG
Subject: Re: Is there a way to find out which user is logged onto Remedy
on a particular client PC?


** 
Angus,
 
Not quite the same, but I put some user signon tracking into place quite
a while back - added a process onto the initform to push the IP address,
user-id, date/time, PC name onto a tracking form (did it so we could see
who was actually using the system) 
 
Whilst it wouldn't tell you if they were actually logged on at any point
in time, it does give you some idea as to who is using what PCs.
 
Regards
 
Dave

 
On 05/10/06, Angus Comber [EMAIL PROTECTED] wrote: 

Hello

We need to find out which user is logged onto Remedy on a
particular PC.  Is
there an API to find out which users are logged in?  If we have
the hostname 
or IP address of client PC can we then work out which is the
user?

Angus



___
UNSUBSCRIBE or access ARSlist Archives at http://www.wwrug.org



__20060125___This posting was submitted with HTML in
it___ 

___
UNSUBSCRIBE or access ARSlist Archives at http://www.wwrug.org


Re: Is there a way to find out which user is logged onto Remedy on a particular client PC?

2006-10-06 Thread Mahesh Patil
**
Hello,If you can view the user log on the server, you will get the information.Thanks,  Mahesh"Heider, Stephen" [EMAIL PROTECTED] wrote:  Angus,You can use the API. Here is a small excerpt from a console app inVB.Net. It retrieves a list of current users and outputs to the screen(stdout). In a Filter use the Set Fields $PROCESS $ command to run theapp and capture its output.Dim LoggedInUsers As System.ArrayLoggedInUsers = ARS.GetListUser(ARSystem.Server.UserListType.Current,#1/1/2000#)For Each u As ARSystem.UserInfo In LoggedInUsersConsole.WriteLine(u.UserName.ToString)NextThis, combined with a signon tracking method described by Dave, willallow you to link the login names (from the API) to computers,
 fullnames, IP addresses, etc.StephenFrom: Action Request System discussion list(ARSList)[mailto:[EMAIL PROTECTED] On Behalf Of Dave BarberSent: Friday, October 06, 2006 4:03 AMTo: arslist@ARSLIST.ORGSubject: Re: Is there a way to find out which user is logged onto Remedyon a particular client PC?** Angus,Not quite the same, but I put some user signon tracking into place quitea while back - added a process onto the initform to push the IP address,user-id, date/time, PC name onto a tracking form (did it so we could seewho was actually using the system) Whilst it wouldn't tell you if they were actually logged on at any pointin time, it does give you some idea as to who is using what PCs.RegardsDaveOn 05/10/06, Angus Comber <[EMAIL PROTECTED]>wrote: HelloWe need to find out which user is logged
 onto Remedy on aparticular PC. Isthere an API to find out which users are logged in? If we havethe hostname or IP address of client PC can we then work out which is theuser?Angus___UNSUBSCRIBE or access ARSlist Archives at http://www.wwrug.org__20060125___This posting was submitted with HTML init___ ___UNSUBSCRIBE or access ARSlist Archives at http://www.wwrug.org __Do You Yahoo!?Tired of spam?  Yahoo! Mail has the best spam protection around http://mail.yahoo.com 
__20060125___This posting was submitted with HTML in it___

Re: Is there a way to find out which user is logged onto Remedy on a particular client PC?

2006-10-06 Thread Kulkarni, Gururaj
**



Hi 
Mahesh,
wehere are you located?

thanks,
Raj

  -Original Message-From: Action Request System 
  discussion list(ARSList) [mailto:[EMAIL PROTECTED]On Behalf Of 
  Mahesh PatilSent: Friday, October 06, 2006 11:46 
  AMTo: arslist@ARSLIST.ORGSubject: Re: Is there a way to 
  find out which user is logged onto Remedy on a particular client 
  PC?** 
  Hello,
  
  If you can view the user log on the server, you will get the 
  information.
  
  Thanks,
  Mahesh"Heider, Stephen" [EMAIL PROTECTED] 
  wrote:
  Angus,You 
can use the API. Here is a small excerpt from a console app inVB.Net. It 
retrieves a list of current users and outputs to the screen(stdout). In 
a Filter use the Set Fields $PROCESS $ command to run theapp and capture 
its output.Dim LoggedInUsers As System.ArrayLoggedInUsers = 
ARS.GetListUser(ARSystem.Server.UserListType.Current,#1/1/2000#)For 
Each u As ARSystem.UserInfo In 
LoggedInUsersConsole.WriteLine(u.UserName.ToString)NextThis, 
combined with a signon tracking method described by Dave, willallow you 
to link the login names (from the API) to computers, fullnames, IP 
addresses, 
etc.StephenFrom: 
Action Request System discussion 
list(ARSList)[mailto:[EMAIL PROTECTED] On Behalf Of Dave 
BarberSent: Friday, October 06, 2006 4:03 AMTo: 
arslist@ARSLIST.ORGSubject: Re: Is there a way to find out which user is 
logged onto Remedyon a particular client PC?** 
Angus,Not quite the same, but I put some user signon tracking 
into place quitea while back - added a process onto the initform to push 
the IP address,user-id, date/time, PC name onto a tracking form (did it 
so we could seewho was actually using the system) Whilst it 
wouldn't tell you if they were actually logged on at any pointin time, 
it does give you some idea as to who is using what 
PCs.RegardsDaveOn 05/10/06, Angus Comber 
<[EMAIL PROTECTED]>wrote: HelloWe need to find out which 
user is logged onto Remedy on aparticular PC. Isthere an API to find 
out which users are logged in? If we havethe hostname or IP address 
of client PC can we then work out which is 
theuser?Angus___UNSUBSCRIBE 
or access ARSlist Archives at 
http://www.wwrug.org__20060125___This 
posting was submitted with HTML init___ 
___UNSUBSCRIBE 
or access ARSlist Archives at http://www.wwrug.org
  __Do You 
  Yahoo!?Tired of spam? Yahoo! Mail has the best spam protection around 
  http://mail.yahoo.com __20060125___This posting was 
  submitted with HTML in it___
__20060125___This posting was submitted with HTML in it___


Re: Is there a way to find out which user is logged onto Remedy on a particular client PC?

2006-10-06 Thread Mahesh Patil
**
Hi Raj,Thanks for the email.  I am placed at Pune.Kind Regards,  Mahesh"Kulkarni, Gururaj" [EMAIL PROTECTED] wrote:  ** Hi Mahesh,  wehere are you located?thanks,  Raj-Original Message-From: Action Request System discussion list(ARSList) [mailto:[EMAIL PROTECTED]On Behalf Of Mahesh PatilSent: Friday, October 06, 2006 11:46 AMTo: arslist@ARSLIST.ORGSubject: Re: Is there a way to find out which user is logged onto Remedy on a particular client PC?**   Hello,If you can view the user log on the server, you will get the information.Thanks,  Mahesh"Heider, Stephen" [EMAIL PROTECTED] wrote:  Angus,You can use the API. Here is a small excerpt from a console app inVB.Net. It retrieves a list of current users and outputs to the screen(stdout). In a Filter
 use the Set Fields $PROCESS $ command to run theapp and capture its output.Dim LoggedInUsers As System.ArrayLoggedInUsers = ARS.GetListUser(ARSystem.Server.UserListType.Current,#1/1/2000#)For Each u As ARSystem.UserInfo In LoggedInUsersConsole.WriteLine(u.UserName.ToString)NextThis, combined with a signon tracking method described by Dave, willallow you to link the login names (from the API) to computers, fullnames, IP addresses, etc.StephenFrom: Action Request System discussion list(ARSList)[mailto:[EMAIL PROTECTED] On Behalf Of Dave BarberSent: Friday, October 06, 2006 4:03 AMTo: arslist@ARSLIST.ORGSubject: Re: Is there a way to find out which user is logged onto Remedyon a particular client PC?** Angus,Not quite the same, but I put some user signon tracking into place quitea while back - added a process onto the
 initform to push the IP address,user-id, date/time, PC name onto a tracking form (did it so we could seewho was actually using the system) Whilst it wouldn't tell you if they were actually logged on at any pointin time, it does give you some idea as to who is using what PCs.RegardsDaveOn 05/10/06, Angus Comber <[EMAIL PROTECTED]>wrote: HelloWe need to find out which user is logged onto Remedy on aparticular PC. Isthere an API to find out which users are logged in? If we havethe hostname or IP address of client PC can we then work out which is theuser?Angus___UNSUBSCRIBE or access ARSlist Archives at http://www.wwrug.org__20060125___This posting was submitted with HTML init___
 ___UNSUBSCRIBE or access ARSlist Archives at http://www.wwrug.org  __Do You Yahoo!?Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com __20060125___This posting was submitted with HTML in it_20060125___This posting was submitted with HTML in it___  __Do You Yahoo!?Tired of spam?  Yahoo! Mail has the best spam protection around http://mail.yahoo.com 
__20060125___This posting was submitted with HTML in it___

Re: Is there a way to find out which user is logged onto Remedy on a particular client PC?

2006-10-06 Thread Kulkarni, Gururaj
**



Can I 
have your contact information?

thanks,
Raj

  -Original Message-From: Action Request System 
  discussion list(ARSList) [mailto:[EMAIL PROTECTED]On Behalf Of 
  Mahesh PatilSent: Friday, October 06, 2006 12:22 
  PMTo: arslist@ARSLIST.ORGSubject: Re: Is there a way to 
  find out which user is logged onto Remedy on a particular client 
  PC?** 
  Hi Raj,
  
  Thanks for the email.
  I am placed at Pune.
  
  Kind Regards,
  Mahesh"Kulkarni, Gururaj" 
  [EMAIL PROTECTED] wrote:
  ** 


Hi 
Mahesh,
wehere are you located?

thanks,
Raj

  -Original Message-From: Action Request System 
  discussion list(ARSList) [mailto:[EMAIL PROTECTED]On Behalf Of 
  Mahesh PatilSent: Friday, October 06, 2006 11:46 
  AMTo: arslist@ARSLIST.ORGSubject: Re: Is there a way 
  to find out which user is logged onto Remedy on a particular client 
  PC?** 
  Hello,
  
  If you can view the user log on the server, you will get the 
  information.
  
  Thanks,
  Mahesh"Heider, Stephen" 
  [EMAIL PROTECTED] wrote:
  Angus,You 
can use the API. Here is a small excerpt from a console app 
inVB.Net. It retrieves a list of current users and outputs to the 
screen(stdout). In a Filter use the Set Fields $PROCESS $ command to 
run theapp and capture its output.Dim LoggedInUsers As 
System.ArrayLoggedInUsers = 
ARS.GetListUser(ARSystem.Server.UserListType.Current,#1/1/2000#)For 
Each u As ARSystem.UserInfo In 
LoggedInUsersConsole.WriteLine(u.UserName.ToString)NextThis, 
combined with a signon tracking method described by Dave, willallow 
you to link the login names (from the API) to computers, fullnames, 
IP addresses, 
etc.StephenFrom: 
Action Request System discussion 
list(ARSList)[mailto:[EMAIL PROTECTED] On Behalf Of Dave 
BarberSent: Friday, October 06, 2006 4:03 AMTo: 
arslist@ARSLIST.ORGSubject: Re: Is there a way to find out which 
user is logged onto Remedyon a particular client PC?** 
Angus,Not quite the same, but I put some user signon 
tracking into place quitea while back - added a process onto the 
initform to push the IP address,user-id, date/time, PC name onto a 
tracking form (did it so we could seewho was actually using the 
system) Whilst it wouldn't tell you if they were actually logged 
on at any pointin time, it does give you some idea as to who is 
using what PCs.RegardsDaveOn 05/10/06, Angus 
Comber <[EMAIL PROTECTED]>wrote: HelloWe need to find 
out which user is logged onto Remedy on aparticular PC. Isthere 
an API to find out which users are logged in? If we havethe hostname 
or IP address of client PC can we then work out which is 
theuser?Angus___UNSUBSCRIBE 
or access ARSlist Archives at 
http://www.wwrug.org__20060125___This 
posting was submitted with HTML init___ 
___UNSUBSCRIBE 
or access ARSlist Archives at http://www.wwrug.org
  __Do You 
  Yahoo!?Tired of spam? Yahoo! Mail has the best spam protection around 
  http://mail.yahoo.com __20060125___This posting 
  was submitted with HTML in 
it_20060125___This posting was 
submitted with HTML in it___ 
  __Do You 
  Yahoo!?Tired of spam? Yahoo! Mail has the best spam protection around 
  http://mail.yahoo.com __20060125___This posting was 
  submitted with HTML in it___
__20060125___This posting was submitted with HTML in it___


Is there a way to find out which user is logged onto Remedy on a particular client PC?

2006-10-05 Thread Angus Comber
Hello

We need to find out which user is logged onto Remedy on a particular PC.  Is
there an API to find out which users are logged in?  If we have the hostname
or IP address of client PC can we then work out which is the user?

Angus

___
UNSUBSCRIBE or access ARSlist Archives at http://www.wwrug.org