Macros Gone
Moderators: JRL, Dorian (MJT support)
-
- Macro Veteran
- Posts: 260
- Joined: Fri Apr 15, 2005 8:32 am
Macros Gone
I opened MS 14.2.02 and noticed that all my macros are missing. What happened??
Now I must import them all and re-assign KB shortcuts.
Now I must import them all and re-assign KB shortcuts.
- Marcus Tettmar
- Site Admin
- Posts: 7395
- Joined: Thu Sep 19, 2002 3:00 pm
- Location: Dorset, UK
- Contact:
Re: Macros Gone
Don't know. Maybe something shredded the data file. Data files are automatically backed up so you should be able to restore. Look in My Documents\Macro Scheduler 14.
Marcus Tettmar
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
-
- Macro Veteran
- Posts: 260
- Joined: Fri Apr 15, 2005 8:32 am
Re: Macros Gone
Same issue in 14.3.11. My PC just had a stop error (BSOD). After the restart, all macros and groups are gone. Ugh! Why does this happen??
- Marcus Tettmar
- Site Admin
- Posts: 7395
- Joined: Thu Sep 19, 2002 3:00 pm
- Location: Dorset, UK
- Contact:
Re: Macros Gone
I don't know but if your PC is crashing so suddenly like that then any files being opened/closed/updated at the exact same time of the crash are very likely to get corrupted and there may well be other corrupt files on your system. I'd want to know why your PC is stopping like that.
Marcus Tettmar
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
-
- Macro Veteran
- Posts: 260
- Joined: Fri Apr 15, 2005 8:32 am
Re: Macros Gone
An Android emulator called Bluestacks, since uninstalled.
-
- Macro Veteran
- Posts: 260
- Joined: Fri Apr 15, 2005 8:32 am
Re: Macros Gone
I look forward to the day when other software, however poorly written it may be, doesn't endanger my MS setup.
-
- Macro Veteran
- Posts: 260
- Joined: Fri Apr 15, 2005 8:32 am
Re: Macros Gone
Same issue with MS 15.0.25. My PC just crashed and now all my MS macros are gone. I have to import and assign KB shortcuts one by one.
Is there any way to backup some setting in MS so when a PC crashes I don't lose all my macros?
PLEASE fix this issue! I don't know of any other software in the world that loses its setup so often.
Is there any way to backup some setting in MS so when a PC crashes I don't lose all my macros?
PLEASE fix this issue! I don't know of any other software in the world that loses its setup so often.
- Dorian (MJT support)
- Automation Wizard
- Posts: 1414
- Joined: Sun Nov 03, 2002 3:19 am
Re: Macros Gone
fightcancer wrote: ↑Tue Feb 18, 2025 11:13 pmPLEASE fix this issue! I don't know of any other software in the world that loses its setup so often.
As suggested by Marcus, this isn't a specific Macro Scheduler problem - if Windows crashes, files that are in use often get corrupted. We touched on this in 2017, and here was my response.Marcus Tettmar wrote: ↑Fri Oct 13, 2017 6:36 amI don't know but if your PC is crashing so suddenly like that then any files being opened/closed/updated at the exact same time of the crash are very likely to get corrupted and there may well be other corrupt files on your system. I'd want to know why your PC is stopping like that.
However, I appreciate this scenario is slightly different and can offer you a little more than just "restore macros12.dat"...
Yes!fightcancer wrote: ↑Tue Feb 18, 2025 11:13 pmIs there any way to backup some setting in MS so when a PC crashes I don't lose all my macros?
At 11.59pm every night I have a ZipAddFiles script which backs up groups12.dat, groups12.ini, and macros12.dat.
I do this because I'm sometimes required to force crashes/hangs, which by their nature may corrupt those files and lose settings/folders/scripts/hotkeys. Exiting Macro Scheduler and restoring those three files will bring them back again.
Code: Select all
day>theday
mon>themon
year>theyear
Let>zippath=C:\Users\xb360\OneDrive\Documents\MSbackups
Let>zipname=MJTdatfiles-%theyear%-%themon%-%theday%.zip
let>f1=%script_dir%\groups12.dat
let>f2=%script_dir%\groups12.ini
let>f3=%script_dir%\macros12.dat
ZipAddFiles>%zippath%\%zipname%,%f1%,9,0,zipres
ZipAddFiles>%zippath%\%zipname%,%f2%,9,0,zipres
ZipAddFiles>%zippath%\%zipname%,%f3%,9,0,zipres