See this thread: http://www.ks-soft.net/cgi-bin/phpBB/vi ... highlight=
Alex
Search found 62 matches
- Mon Feb 11, 2013 9:10 am
- Forum: Configuration, Maintenance, Troubleshooting
- Topic: Can any test check multiple services as part of one test?
- Replies: 3
- Views: 10122
- Tue Sep 06, 2011 4:36 pm
- Forum: Wish list
- Topic: Log Analyzer: summary by TestID instead of by TestName ?
- Replies: 11
- Views: 33648
I am very sorry, didn't have the time any more and I retired as of August 31.AlexL wrote:Sorry, couldn't test, I am out of office until Aug. 24.KS-Soft wrote:AlexL uses this version for a week or two, no bug reports so far, I assume everything works fine
Alex
Thank you for everything, Alex.
Kind regards
Alex
- Sat Aug 20, 2011 5:02 pm
- Forum: Wish list
- Topic: Log Analyzer: summary by TestID instead of by TestName ?
- Replies: 11
- Views: 33648
- Mon Aug 08, 2011 10:18 am
- Forum: Configuration, Maintenance, Troubleshooting
- Topic: Report Manager - Custom HTML - strange results
- Replies: 3
- Views: 11634
Re: Report Manager - Custom HTML - strange results
HostMonitor allows to specify custom HTML text for each test status: Good, Bad, Unknown e.t.c. I assume, you have specified your custom HTML text "Test<br>" only for one of possible test statuses. I've checked and yes, you are right! Also, I would recommend you to use macro-variables like...
- Mon Aug 08, 2011 9:03 am
- Forum: Configuration, Maintenance, Troubleshooting
- Topic: Report Manager - Custom HTML - strange results
- Replies: 3
- Views: 11634
Report Manager - Custom HTML - strange results
[Version 8.86] Hi, I defined a Custom HTML report, using "Setup report template". In the "Test items" tab I define the contents of the report, using text and macros. Now, whatever I specify there, for some tests I always get the test name, followed ba comma, followed by test ID. ...
- Fri Aug 05, 2011 4:24 am
- Forum: Library
- Topic: Checking several file shares with one single test
- Replies: 0
- Views: 30150
Checking several file shares with one single test
In this shell script test I am using the IF EXIST command to check a file share: @ECHO OFF SET server=%1 SET count_missing=0 & SET count_total=0 :check_share SHIFT IF "%1"=="" GOTO end SET /A count_total+=1 IF NOT EXIST \\%server%\%1 ( SET /A count_missing+=1 SET missing=%mis...
- Fri Aug 05, 2011 4:10 am
- Forum: Wish list
- Topic: Log Analyzer: summary by TestID instead of by TestName ?
- Replies: 11
- Views: 33648
- Wed Jul 27, 2011 1:21 pm
- Forum: Library
- Topic: Checking several services with one single test
- Replies: 2
- Views: 34430
Checking several services with one single test
In this shell script test I am using the Microsoft's SC.EXE command line utility: @ECHO OFF setlocal enabledelayedexpansion SET not_running= SET skip= SET count= FOR /F "tokens=2" %%a IN ('SC \\%1 QUERY ^| FIND /I "SERVICE_NAME: "') DO SET "var=!var! %%a" FOR %%a IN (%*...
- Wed Jul 27, 2011 1:14 pm
- Forum: Wish list
- Topic: Log Analyzer: summary by TestID instead of by TestName ?
- Replies: 11
- Views: 33648
- Wed Jul 27, 2011 9:02 am
- Forum: Wish list
- Topic: Log Analyzer: summary by TestID instead of by TestName ?
- Replies: 11
- Views: 33648
Log Analyzer: summary by TestID instead of by TestName ?
Hi, Log Analyzer currently displays separate summary lines when: - one changes the TestName - if one changes the Method, for example a different timeout for a Ping test I need quite often to slightly adjust the name of a test. For example, from "Server1 Free Space F:" to "Server1 Free...
- Wed Jul 27, 2011 8:35 am
- Forum: Configuration, Maintenance, Troubleshooting
- Topic: Shell Script Test - strange %errorlevel% value
- Replies: 3
- Views: 11942
Re: Shell Script Test - strange %errorlevel% value
Yes, this did the trick!
Thanks a lot!
Alex
Thanks a lot!
Alex
- Wed Jul 27, 2011 7:01 am
- Forum: Configuration, Maintenance, Troubleshooting
- Topic: Monitoring Status of Many Services
- Replies: 2
- Views: 11316
Re: Monitoring Status of Many Services
Would like your help in an issue: today I have to monitor 18 different services on 10 different servers, that makes 180 different tests! Would it be possible to create only one test per server that would monitor all 18 services? I am using the Microsoft's SC.EXE command line utility in this generic...
- Wed Jul 27, 2011 6:29 am
- Forum: Configuration, Maintenance, Troubleshooting
- Topic: Shell Script Test - strange %errorlevel% value
- Replies: 3
- Views: 11942
Shell Script Test - strange %errorlevel% value
[AHM v. 8.86, under Windows 2003 and 7] I am trying to compare two files (I cannot use the File Compare test because one of the files has to be dynamically created by the test itself). My script is this: @echo off FC c:\aaa.txt c:\bbb.txt > nul IF %errorlevel% == 0 (echo ScriptRes:OK:%errorlevel%) E...
- Wed Feb 16, 2011 4:47 am
- Forum: Configuration, Maintenance, Troubleshooting
- Topic: SNMP and 3COM SuperStack
- Replies: 13
- Views: 30574
- Wed Feb 16, 2011 4:28 am
- Forum: Configuration, Maintenance, Troubleshooting
- Topic: Retest after another test was GOOD for X sec
- Replies: 1
- Views: 8108
Retest after another test was GOOD for X sec
Assume I check if a service is active, and make it dependent of a PING master test. Now, when I reboot the machine, the Ping test will report OK, but probably the service will not yet be stated, and I want the Service test to wait some time before trying. What is the best/easyest solution for this? ...