![ForTheRecord TheRecord Player User Manual Download Page 45](http://html.mh-extra.com/html/fortherecord/therecord-player/therecord-player_user-manual_2321490045.webp)
Page 40
ForTheRecord
®
Adding an FTP Search Folder
Two methods are described. The first method is provided for systems administrators to assist remote users to configure FTP
Search Folders.
The second method describes how individuals can configure their own FTP Search Folders
Method One
This method describes how to create a script file that your remote users can run. When your remote users run the script file the
FTP Search Folder is added.
Using the following text as a template, create a vbs script file called::
AddSearchFolder.vbs
option explicit
dim oNavigator, sName, sPath, nPriority, bDisplayErr
set oNavigator = CreateObject("FTR.TREdge.Navigator.SearchFolderConfig")
'Set up parameters
sName = "
Acme C
r organisation’s name goes here
o. FTP Site
" 'You
sPath = "
ftp://
username:password
@ftp.acme.com/ftr
" 'Your FTP URL goes here
nPriority = 100
bDisplayErr = FALSE
'Create the new search folder.
oNavigator.AddSearchFolder sName, sPath, nPriority, bDisplayErr
Replace the highlighted text with information relevant to your organization and your FTP URL. Pay particular attention to the
username and password that must form part of the URL.
When the script file is ready, test it and then publish it for others to download and run.