Re: Any creative ideas?




"KantKode" <KantKode@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:2BA1B0E0-963F-41C8-98DD-7E9B8127F481@xxxxxxxxxxxxxxxx
OK... does anyone have ANY ideas here? (creativity appreciated)

We have a lab with 300++ computers and we need a way to locate a specific
computer (physically) preferably using WMI.

The ideal solution would be to flash the monitor off and on or somthing.
Bear in mind that different people will be logged on to some and others
will
be not in use (or locked, screensaver...) So changes to desktop,
screensaver
etc won't really get us there.

We considered ejecting the CD drive, but these boxes happen to have the
laptop style drives and that is pretty hard to spot in a lab this size
(and
false positives would be pretty numerous).

I was able to run a program on a remote machine that beeped. This worked
even if no one was logged on, but the machine must be running. My program
was saved on the remote machine, but it can also be copied to the machine
and then run. I used a batch file that called an old assembly language
program that beeped, but anything that makes noise will do. I used the
Win32_Process class. My VBScript program:
==========
Option Explicit
Dim objRemote, objProcess, strComputer

strComputer = "RemotePC"

Set objRemote = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate,authenticationLevel=Pkt}!\\" _
& strComputer & "\root\cimv2")

Set objProcess = objRemote.Get("win32_process")
objProcess.Create("c:\\MyTest.bat")
===========
If MyTest.bat is not on the machine, it can be copied by the script, but
that is more work.

--
Richard
Microsoft MVP Scripting and ADSI
Hilltop Lab - http://www.rlmueller.net


.



Relevant Pages

  • members of "user" group cannot access internet
    ... Problem with "user" account: unable to access any internet site; ... Computer lab; 10 PCs with identical hardware & software. ... None of the other 9 computers in the lab have this problem. ... Files can be accessed across the network, but I cannot access the internet ...
    (microsoft.public.windowsxp.configuration_manage)
  • members of "user" group cannot access internet
    ... Problem with "user" account: unable to access any internet site; ... Computer lab; 10 PCs with identical hardware & software. ... None of the other 9 computers in the lab have this problem. ... Files can be accessed across the network, but I cannot access the internet ...
    (microsoft.public.windowsxp.security_admin)
  • Re: advice on setting up lab
    ... A lab with at least three computers is great in my opinion. ... internet name resolution requests to your ISP dns server. ... 802.1X authentication if the WAP and wireless adapters are capable however I ...
    (microsoft.public.cert.exam.mcse)
  • Re: How to restrict some users to log in?
    ... the user right to Log on locally, or, the membership of the Users group, ... a minor reorganization so that there is an OU for computers of each lab, ... user-groups for different Labs -- for security issues, e.g. file sharing, ... belongs to that OU (not neccessary in the same Lab). ...
    (microsoft.public.security)
  • Re: Will VNC run on a laptop with 32MB? What to do with OLD laptop?
    ... computers. ... All you need is X on the old laptop. ... You'll need the server on the remote machine. ... Gnome is pretty ...
    (Debian-User)

Loading