Jump to content
Macro Express Forums

Security


m204prgmr

Recommended Posts

Scenerio:

At startup ME resides in my system tray (lower right corner of my monitor).

Can the entire editor be password protected from loading and still have a scheduled macro run? I had a incident the other night with a scheduled macro that ran over the weekend but was disabled on Friday before I left work. Either the disable feature has a glitch or someone was nosieing around. Thanks.

Link to comment
Share on other sites

Macro Express consists of two main components: the Player and the Editor.

 

The Editor is used to create and edit macros. The Player will play macros in the macro file. The Player will run macros without the Editor running. You can even choose to install only the Player (without the Editor). This works well as long as you supply a macro file that has been created on another computer.

 

In addition you can assign a password that prevents someone from accessing the Editor. Click Options | Preferences | Passwords to assign a password.

 

You should note that unlike most of the preferences the password options are stored in the macro file itself. This means you can have one macro file that is password protected and you can have other macro files that do not require a password.

 

In addition to assigning a password that must be entered before you can edit any of the macros in the macro file, you can also assign a password that must be entered before you run any macros in the file.

 

You may also assign edit or run passwords to individual macros within a macro file. Open the macro in the Scripting Editor and click the Security tab to do this.

Link to comment
Share on other sites

Thanks Kevin,

I set up a macro against the editor and it works great. If this was not human intervention that started the scheduled macro, any ideas on the disabled feature haveing a glitch? This schedule macro has worked like a charm for the last 8 weeks M-F. The reason I disabled it is because we only need this to run M-F. I suppose I should add code to just bypass the weekend dates but I'm thinking it could be lots of dates between now and the end of the year. Any thoughts on that one too?... :P

Robert

Link to comment
Share on other sites

I have not heard of any glitches with the disable macro logic.

 

To exclude Saturday and Sunday from the days that the macro runs, put this at the top of your macro:

// Get the day of week (Sun through Sat)
Date/Time: Save "ddd" into %T1%
If Variable %T1% contains "Sat"
 OR
If Variable %T1% contains "Sun"
 Macro Return
End If

Using this technique the macro will start but do nothing on Saturday and Sunday.

 

Note: For those who do not have Windows configured for English, you will need to change "Sat" and "Sun" to reflect the language you use.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...