forked from JohnDuprey/CWCAutomateDiagnostics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Manifest.xml
67 lines (67 loc) · 3.48 KB
/
Manifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?xml version="1.0" encoding="utf-8"?>
<ExtensionManifest>
<Version>1.0.7.4</Version>
<Name>Automate Diagnostics</Name>
<Author>John Duprey - Complete Network</Author>
<ShortDescription>Diagnoses Automate Agents from CW Control. Visit https://github.com/johnduprey/CWCAutomateDiagnostics for the Readme.</ShortDescription>
<Components>
<ClientScriptInitializer SourceFile="Initializer.js" MinProductVersionInclusive="6.3"/>
<DynamicSessionEventTriggerDefinition SourceFile="SessionEventTrigger.cs" MinProductVersionInclusive="6.3" />
<WebResourcesDefinition SourceFile="Web.en-US.resx" />
<WebServiceReference SourceFile="Service.ashx" MinProductVersionInclusive="6.3" />
</Components>
<Settings>
<Setting Name="PathToLTPoSh" IsServerOnly="false">
<Description>The URL for launching LTPoSh.</Description>
<DefaultValue>http://bit.ly/LTPoSh</DefaultValue>
</Setting>
<Setting Name="PathToDiag" IsServerOnly="false">
<Description>The URL for launching AutomateDiagnostics.ps1</Description>
<DefaultValue>https://raw.githubusercontent.com/johnduprey/CWCAutomateDiagnostics/master/AutomateDiagnostics.ps1</DefaultValue>
</Setting>
<Setting Name="PathToLinuxDiag" IsServerOnly="false">
<Description>The URL for launching AutomateDiagnostics.py</Description>
<DefaultValue>https://raw.githubusercontent.com/johnduprey/CWCAutomateDiagnostics/master/AutomateDiagnostics.py</DefaultValue>
</Setting>
<Setting Name="PathToMacDiag" IsServerOnly="false">
<Description>The URL for launching AutomateDiagnostics.sh</Description>
<DefaultValue>https://raw.githubusercontent.com/johnduprey/CWCAutomateDiagnostics/master/AutomateDiagnostics.sh</DefaultValue>
</Setting>
<Setting Name="AutomateHostname" IsServerOnly="false">
<Description>The hostname for your automate server (exclude https://).</Description>
<DefaultValue></DefaultValue>
</Setting>
<Setting Name="InstallerToken" IsServerOnly="false">
<Description>Generate a long lived InstallerToken - https://www.mspgeek.com/files/file/50-generate-agent-installertoken/</Description>
<DefaultValue></DefaultValue>
</Setting>
<Setting Name="MaintenanceMode" IsServerOnly="false">
<Description>1 = Enable, 0 = Disable</Description>
<DefaultValue>0</DefaultValue>
</Setting>
<Setting Name="SetUseMachineName" IsServerOnly="false">
<Description>Fix access session to use machine name - 1 = Enable, 0 = Disable</Description>
<DefaultValue>0</DefaultValue>
</Setting>
<Setting Name="AgentIDCustomProperty" IsServerOnly="false">
<Description>Change this if you are currently using CustomProperty6</Description>
<DefaultValue>6</DefaultValue>
</Setting>
<Setting Name="AgentVersionCustomProperty" IsServerOnly="false">
<Description>Change this if you are currently using CustomProperty7</Description>
<DefaultValue>7</DefaultValue>
</Setting>
<Setting Name="Timeout" IsServerOnly="false">
<Description>Diagnostic timeout - Default is 10 minutes (600000ms)</Description>
<DefaultValue>600000</DefaultValue>
</Setting>
<Setting Name="Verbose" IsServerOnly="false">
<Description>1 = Enable, 0 = Disable</Description>
<DefaultValue>0</DefaultValue>
</Setting>
<Setting Name="CreateVersionSessionGroup" IsServerOnly="false" >
<Description>Set to 1 to create session group and rename custom properties. Delete the session group to re-create.</Description>
<DefaultValue>0</DefaultValue>
</Setting>
</Settings>
</ExtensionManifest>