I have a script set to create a folder variable and I'm running this script as as ACTION from a test. I've made the script flexible by defining the CurrentFolder within my test's %CommentLine2%
So my script to CREATE a Folder Variable works fine:
SetCurrentFolder %CommentLine2%
SetFolderVariable fvar_sms_to %CommentLine3% -inheritpartly
However I want to later remove the folder variable, but I don't see a HMS command.
I want to write:
SetCurrentFolder %CommentLine2%
DelFolderVariable fvar_sms_to
but that isn't documented as being allowed
I also tried, the following (setting the variable to blank) but it didn't work
SetCurrentFolder %CommentLine2%
SetFolderVariable fvar_sms_to -inheritpartly
Is it possible without a feature update to do this?