Hello,
I use this script in a logon script to send an email letting me know someone logeed on to a server using remote desktop
Set WSHNetwork = WScript.CreateObject("WScript.Network")
strUser = ""
While strUser = ""
strUser = WSHNetwork.UserName
wend
I want to be able to add some things to it if possible.
1: The remote IP they logged on from
2: The name of the workstation they logged on from
3: the OS version they are using.
Are any one of these possible? it is saved as a VBS file
Thanks
Nick
I use this script in a logon script to send an email letting me know someone logeed on to a server using remote desktop
Set WSHNetwork = WScript.CreateObject("WScript.Network")
strUser = ""
While strUser = ""
strUser = WSHNetwork.UserName
wend
I want to be able to add some things to it if possible.
1: The remote IP they logged on from
2: The name of the workstation they logged on from
3: the OS version they are using.
Are any one of these possible? it is saved as a VBS file
Thanks
Nick