This works, but I seem to have to do it every time I restart windows. Is there any way not to have to do this ?Bex wrote:I googled your error and found this:
http://www.x-setup.net/forum/archive/in ... -1256.htmlThe root of the error comes from the fact that Vista correctly installed VBScript.dll (which is included in all editions of Vista) but did somehow not register it to the registry. This seems to be a bug of Vista (see http://www.developersdex.com/asp/messag ... &r=5746776) but so far no fix from Microsoft is available.
To register VBScript.dll yourself and thus solving this problem, please perform the following steps:
1) Point to "Command-Prompt" from the Windows menu (aka "Start")
2) Right-click this entry and select "Run as administrator"
2) Inside the command-prompt, type the following:
C:
Cd \
Cd windows
Cd system32
regsvr32 vbscript.dll
Magic Nodes 4.2 w/ 380 masks & real GUI (2011-07-01)[MM2+]
-
- Posts: 317
- Joined: Fri Aug 31, 2007 6:43 am
- Location: Scotland
- Contact:
I guess you have to address that question to Microsoft.
Advanced Duplicate Find & Fix Find More From Same - Custom Search. | Transfer PlayStat & Copy-Paste Tags/AlbumArt between any tracks.
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!
All My Scripts
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!
All My Scripts
In windows you can set Global(All users) "On Startup" (not know how in vista) but at least you will not need to worry 

Last edited by Peke on Sun Sep 02, 2007 3:36 pm, edited 1 time in total.
Best regards,
Peke
MediaMonkey Team lead QA/Tech Support guru
Admin of Free MediaMonkey addon Site HappyMonkeying



How to attach PICTURE/SCREENSHOTS to forum posts
Peke
MediaMonkey Team lead QA/Tech Support guru
Admin of Free MediaMonkey addon Site HappyMonkeying



How to attach PICTURE/SCREENSHOTS to forum posts
-
- Posts: 317
- Joined: Fri Aug 31, 2007 6:43 am
- Location: Scotland
- Contact:
Best regards,
Peke
MediaMonkey Team lead QA/Tech Support guru
Admin of Free MediaMonkey addon Site HappyMonkeying



How to attach PICTURE/SCREENSHOTS to forum posts
Peke
MediaMonkey Team lead QA/Tech Support guru
Admin of Free MediaMonkey addon Site HappyMonkeying



How to attach PICTURE/SCREENSHOTS to forum posts
-
- Posts: 317
- Joined: Fri Aug 31, 2007 6:43 am
- Location: Scotland
- Contact:
Keep in mind I am running vista. As this website says,
" Windows Vista, after all these years, finally has a very good startup manager built-in; go to Control Panel > Performance Information and Tools, and then click on Manage Startup Programs on the left."
My current solution is to create a batch (.bat) file to execute the required command. I will try and get windows to start this batch file automatically each time windows starts.
I am sure there must be an easier way though.
" Windows Vista, after all these years, finally has a very good startup manager built-in; go to Control Panel > Performance Information and Tools, and then click on Manage Startup Programs on the left."
My current solution is to create a batch (.bat) file to execute the required command. I will try and get windows to start this batch file automatically each time windows starts.
I am sure there must be an easier way though.
Wait till M$ release Patch for that Bug or with some registry Fix application which will fix missing Registry locations about VBScrip.
Best regards,
Peke
MediaMonkey Team lead QA/Tech Support guru
Admin of Free MediaMonkey addon Site HappyMonkeying



How to attach PICTURE/SCREENSHOTS to forum posts
Peke
MediaMonkey Team lead QA/Tech Support guru
Admin of Free MediaMonkey addon Site HappyMonkeying



How to attach PICTURE/SCREENSHOTS to forum posts
-
- Posts: 317
- Joined: Fri Aug 31, 2007 6:43 am
- Location: Scotland
- Contact:
I had a MagicNode for incomplete albums (Originally from Teknojnky, I think):
It is not working any more in MM3 B1. ("no such column: SONGORDER(1)") Any suggestion for an alternative?Incomplete Albums|SQL filter: Songs.IDAlbum IN (SELECT IDAlbum FROM Songs GROUP BY IDAlbum HAVING Count(SongOrder) <> (Max(SongOrder+1)) AND Count(SongOrder) > 1)|show tracks:yes\<Album Artist>\<Album|statistic:count(all)>
They have renamed the songorder field to tracknumber so just replace it in the mask and it should work.
Advanced Duplicate Find & Fix Find More From Same - Custom Search. | Transfer PlayStat & Copy-Paste Tags/AlbumArt between any tracks.
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!
All My Scripts
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!
All My Scripts
Yes, I see now that it is changed. They used to save the actual track# as track#-1 (i.e. 3 was stored as 2). But they don't do that anymore.
This mask should work:
This mask should work:
Code: Select all
Incomplete Albums|SQL filter: Songs.IDAlbum IN (SELECT IDAlbum FROM Songs GROUP BY IDAlbum HAVING Count(tracknumber) <> (Max(tracknumber)) AND Count(tracknumber) > 1)|show tracks:yes\<Album Artist>\<Album|statistic:count(all)>
Advanced Duplicate Find & Fix Find More From Same - Custom Search. | Transfer PlayStat & Copy-Paste Tags/AlbumArt between any tracks.
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!
All My Scripts
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!
All My Scripts
Ok, they have changed the field type from number to text. I knew that so I've should have thought about it. This works:
Code: Select all
Incomplete Albums|SQL filter: Songs.IDAlbum IN (SELECT IDAlbum FROM Songs GROUP BY IDAlbum HAVING Count(tracknumber) <> Max(cast(tracknumber as integer)) AND Count(tracknumber) > 1)|show tracks:yes\<Album Artist>\<Album|statistic:count(all)>
Advanced Duplicate Find & Fix Find More From Same - Custom Search. | Transfer PlayStat & Copy-Paste Tags/AlbumArt between any tracks.
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!
All My Scripts
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!
All My Scripts
Thank you, Bex! Now it works. And the inverse (with more than 3 tracks):
Code: Select all
Complete Albums|SQL filter: Songs.IDAlbum IN (SELECT IDAlbum FROM Songs GROUP BY IDAlbum HAVING Count(tracknumber) = Max(cast(tracknumber as integer)) AND Count(tracknumber) > 3)|show tracks:yes\<Album Artist>\<Album|statistic:count(all)>