-
Notifications
You must be signed in to change notification settings - Fork 0
/
Installation.txt
22 lines (18 loc) · 973 Bytes
/
Installation.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Installation instructions:
Copy dll, pdb, and xml files to a location on the server ("C:\TransportAgents\" in the install script below)
Modify the configuration xml to suit
Run the following PowerShell commands to install and enable the transport agent:
Install-TransportAgent -Name "AusGovLabellingAgent" -TransportAgentFactory "AusGovLabellingAgent.LabellingAgentFactory" -AssemblyPath "C:\TransportAgents\AusGovLabellingAgent.dll"
Enable-TransportAgent -Name "AusGovLabellingAgent"
Recommend viewing the trace output with SysInternals Dbgview.exe (Kernel logging as admin)
or put the following trace recording into the edgetransport.exe.config:
<configuration>
<system.diagnostics>
<trace autoflush="false" indentsize="4">
<listeners>
<add name="myListener" type="System.Diagnostics.TextWriterTraceListener" initializeData="traces.log" />
<remove name="Default" />
</listeners>
</trace>
</system.diagnostics>
</configuration>