ScreenConnect creates a folder "ScreenConnect" (or something else if you've customized Client.ApplicationTitle) off your user Documents directory to use for your videos, toolbox, and received files. Generally this will be created on a local disk and generally it will only be accessible to the current user.
Use NTFS symbolic links to share this information. To accomplish this, recreate your "ScreenConnect" directory as a symbolic link to a network share:
Code:C:\Users\jmorgan\Documents>ren ScreenConnect ScreenConnect2
C:\Users\jmorgan\Documents>md \\commonserver\commonshare\screenconnect
C:\Users\jmorgan\Documents>mklink /d ScreenConnect \\commonserver\commonshare\screenconnect
symbolic link created for ScreenConnect <<===>> \\katmandu\distribution\temp\screenconnect
C:\Users\jmorgan\Documents>copy ScreenConnect2\* ScreenConnect
ScreenConnect2\autoruns.exe
ScreenConnect2\BltTest.exe
ScreenConnect2\compmgmt.lnk
ScreenConnect2\Mdbg_x64.exe
ScreenConnect2\Mdbg_x64.zip
ScreenConnect2\Mdbg_x86.exe
ScreenConnect2\Mdbg_x86.zip
ScreenConnect2\MSE_x64.exe
ScreenConnect2\MSE_x86.exe
ScreenConnect2\procexp.exe
ScreenConnect2\Procmon.exe
ScreenConnect2\proxy.exe
ScreenConnect2\Reflector.exe
ScreenConnect2\resetScreenConnect.bat
ScreenConnect2\setenv.bat
ScreenConnect2\taskkill.exe
18 file(s) copied.
C:\Users\jmorgan\Documents>rd /s /q ScreenConnect2
If you don't want to share everything, but only a few common tools, you can create a symbolic link to a network share under the "ScreenConnect" folder, rather than replacing it entirely.
In the future we may use different subdirectories for videos, toolbox items, and received files. This will give you even more granularity in what you share vs what you keep private.
Also in the more distant future, we may just keep everything on the web server, so you can access it even when off the network.