Search found 15 matches
- Thu Jun 14, 2007 8:51 pm
- Forum: Technical / Scripting
- Topic: clicking inside of UAC dialog
- Replies: 1
- Views: 3677
clicking inside of UAC dialog
Does version 9.0+ of Macro Scheduler allow you to click on the "Continue" or "Cancel" buttons of vista's UAC dialog? I have a script which launches an installer that brings up this dialog when UAC is enabled. Is it possible to click on the Continue button. I have an older version of Macro Scheduler ...
- Thu Dec 01, 2005 11:12 pm
- Forum: Technical / Scripting
- Topic: tab separated data
- Replies: 2
- Views: 4537
tab separated data
Is it possible to parse out tab separated data using Separate command?
- Thu Dec 01, 2005 4:43 pm
- Forum: Technical / Scripting
- Topic: killing processes and parsing data file
- Replies: 12
- Views: 13301
Thanks JRL! I think that did it and it's much simpler. mtettmar, I only briefly looked at the code but how could I modify that to search for processes using a specific module? Here is my situation: I have various automated tasks that run on a daily bases. These processes spawn various child processe...
- Wed Nov 30, 2005 10:39 pm
- Forum: Technical / Scripting
- Topic: killing processes and parsing data file
- Replies: 12
- Views: 13301
- Wed Nov 30, 2005 10:08 pm
- Forum: Technical / Scripting
- Topic: killing processes and parsing data file
- Replies: 12
- Views: 13301
thanks for the reply! That seems to work for most cases however how would you adjust it if the PID was more/less than 4 digits? Image Name PID Modules ========================= ====== ============================================= wmiprvse.exe 6816 kernel32.dll notepad.exe 11444 kernel32.dll bash.exe...
- Wed Nov 30, 2005 8:48 pm
- Forum: Technical / Scripting
- Topic: killing processes and parsing data file
- Replies: 12
- Views: 13301
killing processes and parsing data file
I am trying to write a script that checks every 5 minutes for "certain" processes that have been running for more than 30 minutes. I find these processes by using: tasklist /M EVENTS.DLL /FI "CPUTIME gt 00:30:00" > C:\test.txt I can figure out the timing aspect but how do I grab the PIDs from the fi...
- Mon Apr 11, 2005 8:08 pm
- Forum: Technical / Scripting
- Topic: question about Run Program and windows XP 64bit
- Replies: 1
- Views: 4181
- Mon Apr 11, 2005 4:20 pm
- Forum: Technical / Scripting
- Topic: question about Run Program and windows XP 64bit
- Replies: 1
- Views: 4181
question about Run Program and windows XP 64bit
How does the following command actually get executed by MacroScheduler: Run Program>cmd /k cd C:\ I ask this because I am having some strange issues in Windows XP 64 bit. Basically the "set" command after executing the above returns a large number of different environment settings than if I were to ...
- Thu Apr 07, 2005 7:53 pm
- Forum: Technical / Scripting
- Topic: messages/help returned from command line?
- Replies: 1
- Views: 4020
messages/help returned from command line?
Is it possible for a compiled script to return some type of message/help info in the command line like other dos commands? e.g.
C:\>xcopy /?
Copies files and directory trees.
thanks!
C:\>xcopy /?
Copies files and directory trees.
thanks!
- Wed Apr 06, 2005 4:07 pm
- Forum: Technical / Scripting
- Topic: retrieving button name from some dialog/window?
- Replies: 1
- Views: 3577
retrieving button name from some dialog/window?
I uninstall a program that has a dialog that comes up during the uninstall. The only way I can tell that it finishes is when the "cancel" button changes to a "finish" button. Is there some way to wait/find this button? I should note that It does have a status bar however I'd like to be able to do ot...
- Fri Oct 08, 2004 8:14 pm
- Forum: Technical / Scripting
- Topic: yesterday's date
- Replies: 6
- Views: 10682
- Fri Oct 08, 2004 7:37 pm
- Forum: Technical / Scripting
- Topic: yesterday's date
- Replies: 6
- Views: 10682
yesterday's date
How could I get yesterday's date (or tomorrow's for that matter)? This seems trivial but somehow I can't seem to arrive to simple solution 

- Fri Sep 24, 2004 4:02 pm
- Forum: Technical / Scripting
- Topic: retrieving Uninstall information from registry
- Replies: 2
- Views: 4497
retrieving Uninstall information from registry
Is there a way to retrieve the listing under HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall I would like to create a macro to uninstall various programs. For instance, I install different builds of the same program. The specific build does not show up under "Add/Remove" progr...
- Thu Sep 16, 2004 6:40 pm
- Forum: Technical / Scripting
- Topic: URGENT HELP NEED
- Replies: 6
- Views: 6901
Use TightVNC/RealVNC/VNC (Freeware) or another remote software like PC-Anywhere. That'll work. I'd recommend RealVNC over TightVNC. I ran into some odd problems with TightVNC and MacroScheduler. If I hit play and then close the VNC window it causes strange lockup problems with MacroScheduler. I wat...
- Sat Sep 11, 2004 1:39 pm
- Forum: Technical / Scripting
- Topic: ConCat using variables generated by Separate
- Replies: 2
- Views: 4357
ConCat using variables generated by Separate
Why doesn't this combination of Separate and ConCat work?
Let>files=a;b;c;d
Separate>files,;,file_names
Let>file_names_count=4
Let>k=0
Repeat>k
Let>k=k+1
ConCat>file_names_%k%,1
Message>file_names_%k%
Wait>1
Until>k,file_names_count