Code: Select all
"C:\Program Files\Everything\Everything.exe" -instance "InstanceName"
But I cannot figure out how to code a command line which will both:
1. Create the separate instance of Everything; and
2. Connect the separate instance to that (or any other) EPT Server in my intranet
This is the command line I tried:
Code: Select all
"C:\Program Files\Everything\Everything.exe" -instance "InstanceName" -connect <Username:Password@ipAddress:21>
.The syntax of the command is incorrect
I used the same ip address, username and password that I successfully used in the Everything GUI to connect the separate instance of Everything (that I created using a command line) to the remote ETP server.
I realized that there must be an ini file named InstanceName.ini, which I found.
As an experiment, I tried to code into the InstanceName.ini file the parameters for a connection to the remote ETP server.
My plan was to see if the command line:
"C:\Program Files\Everything\Everything.exe" -instance "InstanceName"
would automatically open a remote server connection because I had put the remote server connection parameters into the ini file.
But that did not work either, and I do not want to put an administrator group username and password into an ini file.
I think it is safer for me to manually enter that info into a GUI that I code which produces a command line to create the separate instance.
But I would like to understand why that did not work. So, the following 11 lines from the InstanceName.ini file are the lines with which I tinkered, to no avail, as I said above:
Code: Select all
etp_server_enabled=0 (I tried both "0" and "1")
etp_server_bindings=dd.d.d.dd (The letter "d" represents a digit; this is the ip address I used successfully in the Everything GUI to connect to the remote ETP server)
etp_server_port=21
etp_server_username=UserName (User has administrator privileges)
etp_server_password=Password
etp_server_welcome_message=
etp_server_log_file_name=
etp_server_logging_enabled=1
etp_server_log_max_size=4194304
etp_server_log_delta_size=524288
etp_server_allow_file_download=1 (I tried both "0" and "1")
Thank you.
Marc