|
Under most circumstances you will want to install ABCUpload
using the standard installer and register it using the ABCSettings
control panel.
Occasionally you may wish to install ABCUpload manually. To do
this you will need the files listed below. We suggest that all DLLs
are installed in the System32 directory.
| File Name
|
Notes
|
| ABCUpload4.dll |
The core DLL used by ASP.
Because the DLL is a COM component it needs to be registered
using regsvr32 or equivalent. It can also be registered using MTS
or Component Services.
|
| ABCUploadUtils4.dll |
A utilities DLL for licensing ABCUpload.
Because the DLL is a COM component it needs to be registered
using regsvr32 or equivalent. It can also be registered using MTS
or Component Services.
This DLL is only required for entering a license key. If you do
not enter a license key then the ABCUpload installation will expire
after 30 days. After entering a license key this DLL can be
unregistered and removed if required.
|
To enter a license key create a simple VBS script. Copy the
following into a text file and then rename the file mytest.vbs.
Set st = CreateObject("ABCUploadUtils4.Settings")
MsgBox "Current License: " & st.License
st.License = "change this text to your key"
MsgBox "New License: " & st.License
Double click on the script to run it.
|