I had a bug in my code.
From a new MediaMonkey user that fell in love with it quickly
Via a VBscript I am able to see if a file is [drm] Protected. Can this be added to a MediaMonkey script that will windup allowing me to sort or find all protected files?
Thanks in advance.
' Set the folder
fldr="C:\Documents and Settings\Guy\My Documents\My Music\Bill Douglas\A Place Called Morning"
Set objShell = CreateObject("Shell.Application")
Set objFolder = objShell.Namespace(fldr)
HeaderName = objFolder.GetDetailsOf(objFolder.Items, 28)
For Each strFileName in objFolder.Items
Wscript.Echo i & vbtab & HeaderName _
& ": " & objFolder.GetDetailsOf(strFileName, 28)
Next


