Search found 16 matches

by despinal
Thu Apr 10, 2008 1:23 pm
Forum: Beginners
Topic: Need to Press Esc to end function, but doesn't seem to work
Replies: 0
Views: 3092

Need to Press Esc to end function, but doesn't seem to work

I have this dialup application which requires to Press Esc to end the call. I have the codes below which doesn't seem to work. Am I missing something? I did notice that if I use this below all by itself, the "End" function does work... SetFocus>Cisco IP Communicator Wait>2 Press Esc Unfortunately I ...
by despinal
Mon Dec 18, 2006 3:34 pm
Forum: Beginners
Topic: I need to run a macro triweekly? every 3 weeks... HOW?
Replies: 1
Views: 3975

I need to run a macro triweekly? every 3 weeks... HOW?

Like the subject says: I'm looking to run a macro triweekly (every 3 weeks) ex. Every 3 weeks - Mondays at 8:15a.m Starting date: Monday 11/20/2006 Under "Run When" in Macro Scheduler, I have: Days: Monday Time: 08:15 I've been having to schedule this macro manually, how can I setup MS to do it for ...
by despinal
Thu Dec 07, 2006 1:25 pm
Forum: Beginners
Topic: These Macros run PERFECT all the time, how to improve it?
Replies: 0
Views: 3704

These Macros run PERFECT all the time, how to improve it?

Thanks to Macro Scheduler I was able to automate a system that broadcast a conference call, archives it and converts to Mp3 format. You can read about it here http://www.mjtnet.com/usergroup/viewtopic.php?t=17&start=15 My scrips run well without a problem; I am a true believer of "If it ain't broken...
by despinal
Thu Dec 07, 2006 12:38 pm
Forum: Beginners
Topic: How can I copy a file that always changes file name?
Replies: 11
Views: 14450

JRL wrote:Straight out of the help for Macro Scheduler:
CopyFile>sourcefile,destinationfile
Perfect!

You're a genius!

Huge thanks!
by despinal
Wed Dec 06, 2006 9:50 pm
Forum: Beginners
Topic: How can I copy a file that always changes file name?
Replies: 11
Views: 14450

Thanks JRL... that did the trick and it's really simple... .................... Let>RP_WAIT=1 Let>RP_WINDOWMODE=1 Run>cmd /c dir "C:\Program Files\Cain\VoIP" /o-d /b > C:\Archive\list.txt ReadLn>C:\Archive\list.txt,1,NewestFile MessageModal>Newest file = C:\Program Files\Cain\VoIP\%NewestFile% ........
by despinal
Wed Dec 06, 2006 9:06 pm
Forum: Beginners
Topic: How can I copy a file that always changes file name?
Replies: 11
Views: 14450

Here is one example. Thanks for the reply JRL... I'm more than a newbie, so please bare with me on this... I used your sample and I'm sure I'm using it the wrong way. Can you please correct it for me? ----- Run>cmd /c dir [C]:\[Program Files\Cain\VoIP] /o-d /b > [C]:\[Archive]\[list.txt] ReadLn>[C]...
by despinal
Wed Dec 06, 2006 3:36 pm
Forum: Beginners
Topic: How can I copy a file that always changes file name?
Replies: 11
Views: 14450

mtettmar wrote:Or just look for the newest file in the directory. Examples to do that are on this forum.
Hey MTETTMAR, this would definitely work for me... I tried searching for such examples, but didn't find anything. Can you please help on this? thanks again

Dannye
by despinal
Mon Dec 04, 2006 2:29 pm
Forum: Beginners
Topic: How can I copy a file that always changes file name?
Replies: 11
Views: 14450

How can I copy a file that always changes file name?

Guys, I'm looking to copy a file from one location to another. It's a WAV file that gets generated when using Cain & able when sniffing voip calls made from a system that automatically dials out a conference call. The idea behind this is to make a copy of this file which its never the same name to a...
by despinal
Mon Nov 13, 2006 7:38 pm
Forum: General Discussion
Topic: Tell us how Macro Scheduler helps you, what you use it for.
Replies: 48
Views: 343926

I've been using the system intermittently, but my latest project was: To broadcast and archive a daily conference call for the Technology Dept. which happens twice a day. A. I had to setup 1 system with windows xp where Macro Scheduler performs the following actions: 1. Launches Cisco Communicator (...
by despinal
Thu Nov 09, 2006 7:59 pm
Forum: Beginners
Topic: Best way to run a command line application?
Replies: 4
Views: 7684

mtettmar wrote:That's just a warning. Won't effect this. But try this instead:

Code: Select all

Let>RP_WAIT=1
Change Directory>C:\Program Files\AliveMedia\MP3 WAV Converter
Run>mp3wavconverter "C:\Archives\TechnologyCallAM.wma" /mp3 /"C:\Archives"
PERFECT!!!! worked like a charm.

Thanks a million :)
by despinal
Thu Nov 09, 2006 7:40 pm
Forum: Beginners
Topic: Best way to run a command line application?
Replies: 4
Views: 7684

Try this: Let>RP_WINDOWMODE=1 Let>RP_WAIT=1 Run>cmd /c "C:\Program Files\AliveMedia\MP3 WAV Converter\mp3wavconverter" "C:\Archives\TechnologyCallAM.wma" /mp3 /"C:\Archives" Thanks JRL for the reply, unfortunately it doesn't seem to work for me. It gives me an error about trailing invisible charact...
by despinal
Thu Nov 09, 2006 6:45 pm
Forum: Beginners
Topic: Best way to run a command line application?
Replies: 4
Views: 7684

Best way to run a command line application?

I just purchased an audio converter which supports command line.

What would be the best way to run the below command line:

C:\Program Files\AliveMedia\MP3 WAV Converter\mp3wavconverter "C:\Archives\TechnologyCallAM.wma" /mp3 /"C:\Archives"

Thanks,

Dannye
by despinal
Tue Aug 16, 2005 2:23 pm
Forum: Technical / Scripting
Topic: Is there a script to edit a remote PC registry?
Replies: 3
Views: 5331

Is there a script to edit a remote PC registry?

I'm trying to create some sort of vbscript that will:

read a comma delimited file
take the values in this sheet on line by line basis
enter the info into the registry of a remote machine

Is this possible?
by despinal
Tue Jul 26, 2005 6:09 pm
Forum: Beginners
Topic: Manually start a script from a web site URL
Replies: 6
Views: 9124

support wrote:Then you want msNet CGI module. A web page can then start a script on the server.
Can you give me an example on how to set this up?

the server name is broadcast

have a .scp file on the root of the server called test and I have already added the extension on the webserver.
by despinal
Tue Jul 26, 2005 5:26 pm
Forum: Beginners
Topic: Manually start a script from a web site URL
Replies: 6
Views: 9124

Or are you saying you want to run a local script from a URL? This shouldn't need more than just simple file associations / mime types. No, I want to be able to run the script that is located on the Windows Media Service, but I want to start the script from webpage link? Something like: Click here t...
Sign up to our newsletter for free automation tips, tricks & discounts