Jump to content

Remote Process


midiaxe
 Share

Recommended Posts

Hello everybody,

I need to check if a process is running on a remote Windows server. Does anybody know any external program (I checked autoit doc and it seems that it does not capabilities to check for remote process)?

Appreciate it!

Thanks,

=MX=

Link to comment
Share on other sites

  • Developers

Have a look at PSTools from SYSINTERNALS.....

EDIT: corrected typo in the name

Edited by JdeB

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

  • 3 years later...

Thanks JdeD! I downloaded it and called it in a auto script.

Have a look at This PSTools Frontend for almost complete remote administration of a PC.

The PSTools Suite is truly fantastic.

Wallpaper Rotatorwith overlay, Loop through a folder of wallpaper & another of overlay, then create a combined image and set it as the wallpaperE-Mail passthru, Send any file, even executables via e-mail as plain text. The recipient can then later re-construct them.Slideshow widget, A slideshow widget similar to the Vista onePredictive typing using the Numpad, Predictive typing using the numpad of a keyboar similar to that on a mobile phone (the key is the .t16 file).PSTools Front End, For Remote Admin. Just makes life a lot easier (Demonstrates executing external programs and passing parameters, tabbed form Handling STDIN/STDERR)FTP Helper application Up and Download files from an FTP server demonstrates this and Tooltray TipsShow a Map of your Post-codes/Zip Codes, Uses the Clipboard, Hotkeys, the system tray (incl. menus)Disc/CD/DVD Catalogue, Ideal for all those Covermount Discs (Demonstrates Array handling, executing DOS programs, handling STDIN/STDOUT recursive directory reads, file searching.)YAST , Yet another Stopwatch/Timer (Uses a hotkey, Copies to clipboard, handles multiple events and stays on top)Keyboard Status Indicator , Indicates status of NumLock, Caps Lock and Scroll Lock Keys, demonstrates API calling & System tray Icon Toggling
Link to comment
Share on other sites

You can also use WMI to query remote processes. Here's a snippet from some vbscript I coded once upon a time to do this task.

vbscript - not autoit

Set objWMIService = GetObject("winmgmts://" & strHostname & "/root/cimv2")

Set colProcess = objWMIService.ExecQuery("Select * from Win32_Process")

For Each objProcess In colProcess

strData = strData & objProcess.Name & "," & objProcess.ProcessId & "|"

Next

arrData = SortArray(strData)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...