Hey!
Running this little Powershell script as admin will add a new VL Document entry in the explorer’s New context menu. This means you can create new VL documents directly from the explorer, without having to open vvvv.
Here’s what the script does :
- Drops an
EmptyDocument.vl
file inDocuments\vvvv
. This is the document that will serve as a template. - Adds a
FriendlyTypeName
to.vl
files in the registry - Creates a
ShellNew
key and sets itsFileName
to theEmptyDocument
that was created earlier in the registry
If you need to rollback the changes made by this script, here’s what you should do :
- Delete
EmptyDocument.vl
inDocuments\vvvv
- Delete
FriendlyTypeName
inComputer\HKEY_CLASSES_ROOT\.vl
- Delete
Computer\HKEY_CLASSES_ROOT\.vl\ShellNew
Super early version just to see if it works, could be improved later :-)
Had to zip
it because the forum would not let me upload a .ps1
.
CreateVLDocument.zip (1.3 KB)