Preferences : Set Group Folder Location
Set up a group folder for file sharing
Minimum Origin Version Required: 8.0 SR5
1. group_server path:="\\emily\New Folder" server:=1; // set Group Folder as a Group Leader for Group1
2. group_server path:="\\emily\New Folder" server:=0; // set Group Folder as a client machine for Group1
Please refer to the page for additional option switches when accessing the x-function from script
Input
string
int
TreeNode
Origin 8.0SR5 to 8.1SR3 users managed by a concurrent FLEXlm license can use the Group Folder feature, where a group leader or server machine, can share various Origin file types with multiple group members or client machines. This function can set up at most 10 Group Folder locations for both the group leader and the members.
Starting with 8.5, this feature is available for all Origin licenses.
This example set 3 Group Folders.
Tree otherGroups; otherGroups.GROUP2.path$="\\emily\New Folder2"; // set Group Folder for Group2 otherGroups.GROUP2.server=1; // as a Group Leader otherGroups.GROUP3.path$="\\emily\New Folder3"; // set Group Folder for Group3 otherGroups.GROUP3.server=0; // as a client machine // set Group Folder as a Group Leader for Group1, set other groups with mgroups group_server path:="\\emily\New Folder" server:=1 mgroups:=otherGroups;
groupmgr, updateUFF