had the same issue.
create a file lockcheck.vbs and edit with texteditor to someting like this:
in settings, abort execution of profile if return is anything but 1
create a file lockcheck.vbs and edit with texteditor to someting like this:
- dim filesys
Set filesys = CreateObject("Scripting.FileSystemObject")
If filesys.FileExists("D://directory//lockfile.lck") Then
WScript.Echo 2
WScript.Quit 2
Else
WScript.Echo 1
WScript.Quit 1
End If
in settings, abort execution of profile if return is anything but 1