• 26.04.2024, 22:35
  • Registrieren
  • Anmelden
  • Sie sind nicht angemeldet.

 

Lieber Besucher, herzlich willkommen bei: Aqua Computer Forum. Falls dies Ihr erster Besuch auf dieser Seite ist, lesen Sie sich bitte die Hilfe durch. Dort wird Ihnen die Bedienung dieser Seite näher erläutert. Darüber hinaus sollten Sie sich registrieren, um alle Funktionen dieser Seite nutzen zu können. Benutzen Sie das Registrierungsformular, um sich zu registrieren oder informieren Sie sich ausführlich über den Registrierungsvorgang. Falls Sie sich bereits zu einem früheren Zeitpunkt registriert haben, können Sie sich hier anmelden.

XML data export

Donnerstag, 28. Februar 2013, 16:24

Hi Shoggy and crew!

I have a request..

Is there a way to get clean XML out of the reporting engine? The XMLNS attributes arent understood by a few programs like LCDhost that need clean XML.

I can get aquasuite 2012 XML data to work fine if it is clean, but aquasuite puts the attributes in so the plugin cant parse them.

example code that currently doesnt work because of the xmlns attributes.

<?xml version="1.0" encoding="utf-8"?>
<LogDataExport xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<name>
CPU
</name>
<exportTime>
2013-03-01T00:42:01.418533+11:00
</exportTime>
<logdata>
<LogDataSet>
<t>
2013-03-01T00:42:01.044
</t>
<value>
34.09
</value>
<name>
CPU Water out T2
</name>
<unit>
°C
</unit>
<valueType>
temperature
</valueType>
<device>
aquaero 5 (A5)
</device>
</LogDataSet>
</logdata>
</LogDataExport>

Same XML that does work because the XMLNS attributes are removed.. (manually)

<LogDataExport>
<name>
CPU
</name>
<exportTime>
2013-03-01T00:42:01.418533+11:00
</exportTime>
<logdata>
<LogDataSet>
<t>
2013-03-01T00:42:01.044
</t>
<value>
34.09
</value>
<name>
CPU Water out T2
</name>
<unit>
°C
</unit>
<valueType>
temperature
</valueType>
<device>
aquaero 5 (A5)
</device>
</LogDataSet>
</logdata>
</LogDataExport>

End result!

I am Intel of Borg. Resistance is futile. You will be assimilated.

i7 3930K @5Ghz - X79 ASUS Rampage IV Extreme - 4x SLI GTX580 - 16GB DDR3-2000 - 4x GTX 360 rads 24x CM fans - Aquaero 5 XT +6 PA2 Ultras - 2 x Enermax 1500W PSU - MM Extended Ascension Case - 2 x 452x2 Res and 4 x D5 - 3 x 24" Acer H243H LCD

Mittwoch, 6. März 2013, 15:17

LCDHost for G19 colour screen..
I got some scripting done to clean the xml with an "xslt" xml template to remove the xml attributes and make a clean xml file. A batch file runs every 5 secs against the aquasuite xml file to strip the stuff that LCDHost doesnt like.
The problem I have now is that the Dataviewer looks like it can only handle 1 instance so I cant have seperate xml files processed by seperate dataviewers. While I can set each dataviewer to its own data source the data txt and data bar instances will only read data from the last Dataviewer in the list. It looks like the dataviewer templates cannot be matched to a particular connector?!?!? Ive tried making a parsing map file and having all the data in the same XML file but i dont know enough to make it work or even if the current xml structure from aquasuite 2012 would work.

Anyone got any advice?

Batch file

Quellcode

1
2
3
4
5
:top
C:\libxslt-1.1.26.win32\bin\xsltproc.exe -o c:\cpu-clean.xml c:\CPU.xsl c:\CPU.xml
C:\libxslt-1.1.26.win32\bin\xsltproc.exe -o c:\gpu-clean.xml c:\CPU.xsl c:\GPU.xml
timeout 5
goto top


Before cleaning

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="utf-8"?>
<LogDataExport xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <name>CPU</name>
  <exportTime>2013-03-07T01:03:58.0461184+11:00</exportTime>
  <logdata>
    <LogDataSet>
      <t>2013-03-07T01:03:57.912</t>
      <value>35.41</value>
      <name>CPU Water out T2</name>
      <unit>°C</unit>
      <valueType>temperature</valueType>
      <device>aquaero 5 (A5)</device>
    </LogDataSet>
  </logdata>
</LogDataExport>


After cleaning

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<LogDataExport>
  <name>CPU</name>
  <exportTime>2013-03-07T01:03:58.0461184+11:00</exportTime>
  <logdata>
    <LogDataSet>
      <t>2013-03-07T01:03:57.912</t>
      <value>35.41</value>
      <name>CPU Water out T2</name>
      <unit>°C</unit>
      <valueType>temperature</valueType>
      <device>aquaero 5 (A5)</device>
    </LogDataSet>
  </logdata>
</LogDataExport>


Result in LCDHost


Here's a combined XML from aquasuite that I cant seem to create a map file for.

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<LogDataExport>
  <name>Temps</name>
  <exportTime>2012-11-14T14:13:32.2662968+11:00</exportTime>
  <logdata>
    <LogDataSet>
      <t>2012-11-14T14:13:32.058</t>
      <value>31.84</value>
      <name>CPU Water In Temp</name>
      <unit>°C</unit>
      <valueType>temperature</valueType>
      <device>aquaero 5</device>
    </LogDataSet>
    <LogDataSet>
      <t>2012-11-14T14:13:32.058</t>
      <value>28.28</value>
      <name>GPU Water In Temp</name>
      <unit>°C</unit>
      <valueType>temperature</valueType>
      <device>aquaero 5</device>
    </LogDataSet>
  </logdata>
</LogDataExport>
I am Intel of Borg. Resistance is futile. You will be assimilated.

i7 3930K @5Ghz - X79 ASUS Rampage IV Extreme - 4x SLI GTX580 - 16GB DDR3-2000 - 4x GTX 360 rads 24x CM fans - Aquaero 5 XT +6 PA2 Ultras - 2 x Enermax 1500W PSU - MM Extended Ascension Case - 2 x 452x2 Res and 4 x D5 - 3 x 24" Acer H243H LCD

Donnerstag, 7. März 2013, 15:31

Great News!!! I got it all working!!!!!!!!!!!!!!



Im using 2 data connectors in LCDHost to pickup the CPU and GPU water loop temps.. I can now add anything I like from Aquasuite 2012 XML logs to the G19 screen!


I had to create a seperate map file for each dataconnector and use the cleaned XML files which I cleaned with the XSL template script. (now running every 10secs as water temps dont change that quickly.)


OCCT Powersupply test running in background.
This shows the CPU Water Temp Data Template below.
{logdata.LogDataSets.CpuName} {logdata.LogDataSets.CpuTemp}°C




This shows the Data Connector XML file and XML Map file.



The XML export from Aquasuite 2012.


CPU datamap file that tells LCDHost how to read the cleaned XML file from Aquasuite after its been cleaned with my XSL batchfile. It took hours and hours of trial and error to get this to work!

Quellcode

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
[Format]
type=xml		; xml / txt / ini
dataExpiry=0		; # of seconds to consider the data invalid
language=EN		; The language used by the lists in this file. Other languages can be added by copying the lists to a new text file,
			; translating them and then saving the file as "lists.<language>.txt", e.g. lists.RU.txt

[Parsing]
logdata.LogDataSets
logdata.LogDataSets.CpuTime		
logdata.LogDataSets.CpuTime.*Value	logdata.LogDataSet.t
logdata.LogDataSets.CpuTime.Level	logdata.LogDataSet.t
logdata.LogDataSets.CpuTime.Level.Code	logdata.LogDataSet.t

logdata.LogDataSets
logdata.LogDataSets.CpuTemp
logdata.LogDataSets.CpuTemp.*Value	logdata.LogDataSet.value
logdata.LogDataSets.CpuTemp.Level	logdata.LogDataSet.value
logdata.LogDataSets.CpuTemp.Level.Code	logdata.LogDataSet.value

logdata.LogDataSets
logdata.LogDataSets.CpuName		
logdata.LogDataSets.CpuName.*Value	logdata.LogDataSet.name
logdata.LogDataSets.CpuName.Level	logdata.LogDataSet.name
logdata.LogDataSets.CpuName.Level.Code	logdata.LogDataSet.name

logdata.LogDataSets
logdata.LogDataSets.CpuUnit		
logdata.LogDataSets.CpuUnit.*Value	logdata.LogDataSet.unit
logdata.LogDataSets.CpuUnit.Level	logdata.LogDataSet.unit
logdata.LogDataSets.CpuUnit.Level.Code	logdata.LogDataSet.unit

logdata.LogDataSets
logdata.LogDataSets.CpuvalueType		
logdata.LogDataSets.CpuvalueType.*Value	logdata.LogDataSet.valueType
logdata.LogDataSets.CpuvalueType.Level	logdata.LogDataSet.valueType
logdata.LogDataSets.CpuValueType.Level.Code	logdata.LogDataSet.valueType

logdata.LogDataSets
logdata.LogDataSets.CpuDevice		
logdata.LogDataSets.CpuDevice.*Value	logdata.LogDataSet.device
logdata.LogDataSets.CpuDevice.Level	logdata.LogDataSet.device
logdata.LogDataSets.CpuDevice.Level.Code	logdata.LogDataSet.device




The GPU Datamap file.

Quellcode

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
[Format]
type=xml		; xml / txt / ini
dataExpiry=0		; # of seconds to consider the data invalid
language=EN		; The language used by the lists in this file. Other languages can be added by copying the lists to a new text file,
			; translating them and then saving the file as "lists.<language>.txt", e.g. lists.RU.txt



[Parsing]
logdata.LogDataSets
logdata.LogDataSets.GpuTime		
logdata.LogDataSets.GpuTime.*Value	logdata.LogDataSet.t
logdata.LogDataSets.GpuTime.Level	logdata.LogDataSet.t
logdata.LogDataSets.GpuTime.Level.Code	logdata.LogDataSet.t

logdata.LogDataSets
logdata.LogDataSets.GpuTemp
logdata.LogDataSets.GpuTemp.*Value	logdata.LogDataSet.value
logdata.LogDataSets.GpuTemp.Level	logdata.LogDataSet.value
logdata.LogDataSets.GpuTemp.Level.Code	logdata.LogDataSet.value

logdata.LogDataSets
logdata.LogDataSets.GpuName		
logdata.LogDataSets.GpuName.*Value	logdata.LogDataSet.name
logdata.LogDataSets.GpuName.Level	logdata.LogDataSet.name
logdata.LogDataSets.GpuName.Level.Code	logdata.LogDataSet.name

logdata.LogDataSets
logdata.LogDataSets.GpuUnit		
logdata.LogDataSets.GpuUnit.*Value	logdata.LogDataSet.unit
logdata.LogDataSets.GpuUnit.Level	logdata.LogDataSet.unit
logdata.LogDataSets.GpuUnit.Level.Code	logdata.LogDataSet.unit

logdata.LogDataSets
logdata.LogDataSets.GpuvalueType		
logdata.LogDataSets.GpuvalueType.*Value	logdata.LogDataSet.valueType
logdata.LogDataSets.GpuvalueType.Level	logdata.LogDataSet.valueType
logdata.LogDataSets.GpuValueType.Level.Code	logdata.LogDataSet.valueType

logdata.LogDataSets
logdata.LogDataSets.GpuDevice		
logdata.LogDataSets.GpuDevice.*Value	logdata.LogDataSet.device
logdata.LogDataSets.GpuDevice.Level	logdata.LogDataSet.device
logdata.LogDataSets.GpuDevice.Level.Code	logdata.LogDataSet.device


The batch file that runs the XSL template against the raw XML files from Aquasuite.

Quellcode

1
2
3
4
5
:top
C:\libxslt-1.1.26.win32\bin\xsltproc.exe -o c:\cpu-clean.xml c:\CPU.xsl c:\CPU.xml
C:\libxslt-1.1.26.win32\bin\xsltproc.exe -o c:\gpu-clean.xml c:\CPU.xsl c:\GPU.xml
timeout 10
goto top


Here's the all important XSL template named cpu.xsl that cleans the XML file of all the stuff that LCDHost doesnt like! Took me a while to work this one out!

Quellcode

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
<xsl:stylesheet

  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"

  version="1.0">

 <xsl:output method="xml" version="1.0" indent="no" omit-xml-declaration="yes"/>

  <xsl:template match="*">

    <xsl:element name="{local-name()}">

      <xsl:apply-templates select="@* | node()"/>

    </xsl:element>

  </xsl:template>

 

  <xsl:template match="@*">

    <xsl:attribute name="{local-name()}">

      <xsl:value-of select="."/>

    </xsl:attribute>

  </xsl:template>

 

  <xsl:template match="text() | comment() | processing-instruction()">

    <xsl:copy/>

  </xsl:template>

 

</xsl:stylesheet>



Heres the cleaned XML for the CPU Water Temp that LCDHost uses.. (the GPU looks the same)

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<LogDataExport>
  <name>CPU</name>
  <exportTime>2013-03-08T01:24:18.4380893+11:00</exportTime>
  <logdata>
    <LogDataSet>
      <t>2013-03-08T01:24:17.577</t>
      <value>34.9</value>
      <name>CPU Water in T1</name>
      <unit>°C</unit>
      <valueType>temperature</valueType>
      <device>aquaero 5 (A5)</device>
    </LogDataSet>
  </logdata>
</LogDataExport>
I am Intel of Borg. Resistance is futile. You will be assimilated.

i7 3930K @5Ghz - X79 ASUS Rampage IV Extreme - 4x SLI GTX580 - 16GB DDR3-2000 - 4x GTX 360 rads 24x CM fans - Aquaero 5 XT +6 PA2 Ultras - 2 x Enermax 1500W PSU - MM Extended Ascension Case - 2 x 452x2 Res and 4 x D5 - 3 x 24" Acer H243H LCD

Donnerstag, 7. März 2013, 16:36

HOLY Way over my head Batman!!!!!... But Fantastic work Phatboy, Can see you must have spent a long long time getting this sorted & So very very impressed & Pleased for you... Congrats & Well Done Dude :thumbsup:

N.

Samstag, 23. März 2013, 11:56

The new 2013-1 versions of Aquasuite xml export all works properly now!
I managed to get the fan rpm signals displayed on the G19 too. The next big challenge is to setup a dedicated Aquasuite monitoring page for the G19.



I am Intel of Borg. Resistance is futile. You will be assimilated.

i7 3930K @5Ghz - X79 ASUS Rampage IV Extreme - 4x SLI GTX580 - 16GB DDR3-2000 - 4x GTX 360 rads 24x CM fans - Aquaero 5 XT +6 PA2 Ultras - 2 x Enermax 1500W PSU - MM Extended Ascension Case - 2 x 452x2 Res and 4 x D5 - 3 x 24" Acer H243H LCD

Samstag, 30. März 2013, 09:29

Hello
First I want to say that if my explanation. not very clear. Spanish I have to translate English.
Mine is a Aquastream xt and want to continue their work. I also use Lcdhost.
in my G19.
the problem is not where to put the codes that you have written.
and copied CPU.datamap ok i created. The GPU not used it.

which donot like the other codes. use

1-The batch file runs the XSL template That against the raw XML files from AquaSuite.

2-Here's the all important XSL template named cpu.xsl That cleans the XML file of all the stuff that does LCDHost like! Took me a while to work this one out!

Heres the cleaned XML for the CPU Water Temp That LCDHost use .. (the GPU looks the same)

displayed data are not updated

I put some pictures of it and succeeded.
»novax1« hat folgendes Bild angehängt:
  • aqustream xt.png

Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von »novax1« (30. März 2013, 09:42)

Sonntag, 31. März 2013, 04:45

Your very close! You need to make a batch file (which I called xml.bat) and put this code in it and set it to run at startup as a system scheduled task with task scheduler. Change the timeout value to how often you want the data to update.

Quellcode

1
2
3
4
5
:top
C:\libxslt-1.1.26.win32\bin\xsltproc.exe -o c:\cpu-clean.xml c:\CPU.xsl c:\CPU.xml
C:\libxslt-1.1.26.win32\bin\xsltproc.exe -o c:\gpu-clean.xml c:\CPU.xsl c:\GPU.xml
timeout 1
goto top

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »Phatboy69« (31. März 2013, 04:47)

I am Intel of Borg. Resistance is futile. You will be assimilated.

i7 3930K @5Ghz - X79 ASUS Rampage IV Extreme - 4x SLI GTX580 - 16GB DDR3-2000 - 4x GTX 360 rads 24x CM fans - Aquaero 5 XT +6 PA2 Ultras - 2 x Enermax 1500W PSU - MM Extended Ascension Case - 2 x 452x2 Res and 4 x D5 - 3 x 24" Acer H243H LCD

Sonntag, 31. März 2013, 05:37

Hello
and created the file and xml.bat.
but not how to set it in the task scheduler. Windows 8
I can help

this code as I have to put cleaning.

<xsl: stylesheet

xmlns: xsl = "http://www.w3.org/1999/XSL/Transform"

version = "1.0">

method="xml" <xsl:output version="1.0" indent="no" omit-xml-declaration="yes"/>

<xsl:template match="*">

<xsl:element name="{local-name()}">

<xsl:apply-templates select="@* | node()"/>

</ xsl: element>

</ xsl: template>



<xsl:template match="@*">

<xsl:attribute name="{local-name()}">

<xsl:value-of select="."/>

</ xsl: attribute>

</ xsl: template>




<xsl:template match="text() | comment() | processing-instruction()">

<xsl:copy/>

</ xsl: template>



</ xsl: stylesheet>

Sorry but I have no experience in xml
thanks

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »novax1« (31. März 2013, 05:45)

Sonntag, 31. März 2013, 11:50

Hello
and created the file and xml.bat.
but not how to set it in the task scheduler. Windows 8
I can help

this code as I have to put cleaning.

<xsl: stylesheet

xmlns: xsl = "http://www.w3.org/1999/XSL/Transform"

version = "1.0">

method="xml" <xsl:output version="1.0" indent="no" omit-xml-declaration="yes"/>

<xsl:template match="*">

<xsl:element name="{local-name()}">

<xsl:apply-templates select="@* | node()"/>

</ xsl: element>

</ xsl: template>



<xsl:template match="@*">

<xsl:attribute name="{local-name()}">

<xsl:value-of select="."/>

</ xsl: attribute>

</ xsl: template>




<xsl:template match="text() | comment() | processing-instruction()">

<xsl:copy/>

</ xsl: template>



</ xsl: stylesheet>

Sorry but I have no experience in xml
thanks


Im very sorry but Im not understanding your english translation. Can you post in spanish and Ill try translate for myself.
I am Intel of Borg. Resistance is futile. You will be assimilated.

i7 3930K @5Ghz - X79 ASUS Rampage IV Extreme - 4x SLI GTX580 - 16GB DDR3-2000 - 4x GTX 360 rads 24x CM fans - Aquaero 5 XT +6 PA2 Ultras - 2 x Enermax 1500W PSU - MM Extended Ascension Case - 2 x 452x2 Res and 4 x D5 - 3 x 24" Acer H243H LCD

Sonntag, 31. März 2013, 11:51

Here's my new G19 Screens for Aquasuite 2013.

I have added Aquasuite alarms to the G19 screen and critical dials & indicators on a dedicated Aquasuite screen.

Main G19 Page screenshot with all ok, and screenshot with 1 pump turned off to simulate a failure.



Aquasuite G19 Page screenshot with all ok, and screenshot with 1 pump turned off to simulate a failure.


A Screen shot of some of the LCDHost settings for the Aquasuite page.

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »Phatboy69« (31. März 2013, 12:03)

I am Intel of Borg. Resistance is futile. You will be assimilated.

i7 3930K @5Ghz - X79 ASUS Rampage IV Extreme - 4x SLI GTX580 - 16GB DDR3-2000 - 4x GTX 360 rads 24x CM fans - Aquaero 5 XT +6 PA2 Ultras - 2 x Enermax 1500W PSU - MM Extended Ascension Case - 2 x 452x2 Res and 4 x D5 - 3 x 24" Acer H243H LCD

Sonntag, 31. März 2013, 12:12

Hello
and created the file and xml.bat.
but not how to set it in the task scheduler. Windows 8
I can help

this code as I have to put cleaning.

<xsl: stylesheet

xmlns: xsl = "http://www.w3.org/1999/XSL/Transform"

version = "1.0">

method="xml" <xsl:output version="1.0" indent="no" omit-xml-declaration="yes"/>

<xsl:template match="*">

<xsl:element name="{local-name()}">

<xsl:apply-templates select="@* | node()"/>

</ xsl: element>

</ xsl: template>



<xsl:template match="@*">

<xsl:attribute name="{local-name()}">

<xsl:value-of select="."/>

</ xsl: attribute>

</ xsl: template>




<xsl:template match="text() | comment() | processing-instruction()">

<xsl:copy/>

</ xsl: template>



</ xsl: stylesheet>

Sorry but I have no experience in xml
thanks
Saludos
no se como poner el archivo creado xml.bat en el programador de tareas.
El código de limpieza que le indico como tengo que usarlo y donde lo tengo que poner.


Im very sorry but Im not understanding your english translation. Can you post in spanish and Ill try translate for myself.

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »novax1« (31. März 2013, 12:14)

Sonntag, 31. März 2013, 12:15

Under full load with OCCT powersupply test.

Pic of my power meters showing power drawn at wall from each PSU. Ouch!


I am Intel of Borg. Resistance is futile. You will be assimilated.

i7 3930K @5Ghz - X79 ASUS Rampage IV Extreme - 4x SLI GTX580 - 16GB DDR3-2000 - 4x GTX 360 rads 24x CM fans - Aquaero 5 XT +6 PA2 Ultras - 2 x Enermax 1500W PSU - MM Extended Ascension Case - 2 x 452x2 Res and 4 x D5 - 3 x 24" Acer H243H LCD

Sonntag, 31. März 2013, 12:16

Here's my new G19 Screens for Aquasuite 2013.

I have added Aquasuite alarms to the G19 screen and critical dials & indicators on a dedicated Aquasuite screen.

Main G19 Page screenshot with all ok, and screenshot with 1 pump turned off to simulate a failure.



Aquasuite G19 Page screenshot with all ok, and screenshot with 1 pump turned off to simulate a failure.


A Screen shot of some of the LCDHost settings for the Aquasuite page.

impressive :thumbsup: :thumbsup:

Sonntag, 31. März 2013, 12:24

saludos
el archivo que e creado xml.bat no se como ponerlo en el programador de tareas.
el código de limpieza que le indico no se donde usarlo. y como ponerlo. :?: :wacko:
Gracias por la ayuda

Sonntag, 31. März 2013, 12:48

Saludos
no se como poner el archivo creado xml.bat en el programador de tareas.
El código de limpieza que le indico como tengo que usarlo y donde lo tengo que poner.
[/quote]1.0

1. First run task scheduler (just type task scheduler on the windows 8 start screen and press enter and it should start)
2. Create a new task (right click "new task")
3. Change it to a system run task (click "change user or group" and type "System" under the object name and press enter)
4. Check the "Hidden" check box
5. Give the task a name such as XML batch
6. Set a New Trigger as "At System Startup" and make sure the enable check box is ticked (click the "trigger" tab and click "new" then choose the "at system startup" drop box
7. Set the action to start the xml.bat file (click "actions" tab and "new" button then choose "start a program" and browse to where the batch file is saved
8. Finally click on the "OK" button to save and finish.
9. You can now right click it to run it manually. Next time your system starts it should start automatically.



For the XSL file which cleans the Aquasuite files you do not need to change anything.
Just copy the code from the XSL code window above to a new txt file and save it as CPU.XSL.
It parses the Aquasuite XML files to make them compatible with LCDHost.
You need to download the libxslt-1.1.26.win32 package which is an XSL processor and save it to your C drive.
Save all the XML and XSL files to the same directory. In my case I saved them all to the C drive in the root folder and the XSL processor to the directory you can see above.
You also need to update the xml.bat file with whatever XML files you want cleaned and name the new files "cleaned" like I did to make it easy to see which one to use.
You need to update any paths in the bat file to match where your files are and keep the xml.bat in the same directory as all your other files.

If you cant do this from these instructions then perhaps someone else may help. Unfortunately you may not have the skills to do it as it's not for a novice!
I am Intel of Borg. Resistance is futile. You will be assimilated.

i7 3930K @5Ghz - X79 ASUS Rampage IV Extreme - 4x SLI GTX580 - 16GB DDR3-2000 - 4x GTX 360 rads 24x CM fans - Aquaero 5 XT +6 PA2 Ultras - 2 x Enermax 1500W PSU - MM Extended Ascension Case - 2 x 452x2 Res and 4 x D5 - 3 x 24" Acer H243H LCD

Sonntag, 31. März 2013, 19:26

Thank you for your help.
but I have problems with libxslt-1.1.26.win32. in windows 8
dll missing many. . when running xml.bat.
still here trying not to get anything. :evil: :evil: :wacko: :wacko:

Gracias por su ayuda.
pero tengo problemas con libxslt-1.1.26.win32 .en windows 8
faltan muchos dll. . cuando se ejecuta xml.bat.
todavia aqui intentando no consigo nada

Sonntag, 31. März 2013, 19:54

can not get the code to work cleaning :wacko:

Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von »novax1« (31. März 2013, 23:28)

Montag, 1. April 2013, 09:50

este es el error que muestra cuando ejecuto XML.bat.
This is the error that shows when I run XML.bat.
»novax1« hat folgendes Bild angehängt:
  • error2.png

Montag, 1. April 2013, 11:18

este es el error que muestra cuando ejecuto XML.bat.
This is the error that shows when I run XML.bat.


You can try this dll dependency tool to see what dll is missing. There maybe another System DLL in the chain of dependencies that is missing. Sorry I cant help you more than that at this stage. I have windows 8 installed on my work laptop so might be able to recreate the problem later this week for you but I wouldnt count on it. http://www.dependencywalker.com/
I am Intel of Borg. Resistance is futile. You will be assimilated.

i7 3930K @5Ghz - X79 ASUS Rampage IV Extreme - 4x SLI GTX580 - 16GB DDR3-2000 - 4x GTX 360 rads 24x CM fans - Aquaero 5 XT +6 PA2 Ultras - 2 x Enermax 1500W PSU - MM Extended Ascension Case - 2 x 452x2 Res and 4 x D5 - 3 x 24" Acer H243H LCD

Donnerstag, 4. April 2013, 12:58

Hola
Le doy las gracias por su ayuda.
Creo haber solucionado el problema con el editor libxslt-1.1.26.win32
Pero sigo sin poder mostrar los datos le pongo unas imágenes.
Los programas en ejecución, aquasuite, Lchost, bat
In tetare explicarle donde tengo los archivos de los datos de
aquasuite 2013-2.

Los XML creados, el xml.bat, CPU.xsl. Le pongo unas imágenes
Ingles traducido.
Hello
I thank you for your help.
I have solved the problem with the publisher libxslt-1.1.26.win32
But I still can display the data I put some pictures.
Running programs, AquaSuite, Lchost, bat
In tetare explain where I have the data files AquaSuite 2013-2.
The XML created, the xml.bat, CPU.xsl. I put some pictures


This is the file and were able to repair.libxslt-1.1.26.win32
if you want to look

http://www.mediafire.com/?0i9d8nj2ek847cn
»novax1« hat folgende Bilder angehängt:
  • aquasuite1.png
  • aquasuite2.png
  • aquasuite4.png
  • aquasuite3.png

Dieser Beitrag wurde bereits 3 mal editiert, zuletzt von »novax1« (4. April 2013, 14:09)