
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-01-2009 07:39 PM
Also it would be cool if I could display, based on the most current DatDate, which ones are not up to date. So if one computer reports 04/01/2009 as the current DAT version the rest that were out of date would be listed so.
Thanks,
Niles
- Labels:
-
Archive

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-28-2009 11:25 PM
Thanks,
Niles

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-29-2009 08:38 AM
Pollak wrote:
Active Scanning . I have disabled the lsclinet script from the login process.
Thanks,
Niles
Niles,
Could you open another thread for this in the premium forum please.
Please post some screenshots and an extract of your errorlog.txt file

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-28-2009 03:10 PM

...and thank you for including the Last Log on script. Now where can I change the number of computers last logged onto? Also under Domain in the Dashoard my domain is displayed twice. One as "domain" and the other as "domain.com". Is there a way to only show one or the other?
Thanks,
Niles

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-28-2009 10:54 PM
Pollak wrote:
Also under Domain in the Dashoard my domain is displayed twice. One as "domain" and the other as "domain.com". Is there a way to only show one or the other?
Is this with Active scanning or with Lsclient?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-27-2009 10:34 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-27-2009 03:10 PM
Server Error in '/lansweeper' Application.
--------------------------------------------------------------------------------
Column 'software' does not belong to table theTable.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.ArgumentException: Column 'software' does not belong to table theTable.
Source Error:
The source code that generated this unhandled exception can only be shown when compiled in debug mode. To enable this, please follow one of the below steps, then request the URL:
1. Add a "Debug=true" directive at the top of the file that generated the error. Example:
<%@ Page Language="C#" Debug="true" %>
or:
2) Add the following section to the configuration file of your application:
<configuration>
<system.web>
<compilation debug="true"/>
</system.web>
</configuration>
Note that this second technique will cause all files within a given application to be compiled in debug mode. The first technique will cause only that particular file to be compiled in debug mode.
Important: Running applications in debug mode does incur a memory/performance overhead. You should make sure that an application has debugging disabled before deploying into production scenario.
Stack Trace:
[ArgumentException: Column 'software' does not belong to table theTable.]
System.Data.DataRow.GetDataColumn(String columnName) +1775301
System.Data.DataRow.get_Item(String columnName) +13
ASP.it_cust_aspx.__Render__control1(HtmlTextWriter __w, Control parameterContainer) +1276
System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +256
System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) +19
System.Web.UI.Page.Render(HtmlTextWriter writer) +29
System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) +27
System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) +99
System.Web.UI.Control.RenderControl(HtmlTextWriter writer) +25
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1266
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.3082; ASP.NET Version:2.0.50727.3082

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-24-2009 10:49 PM
The above Test2 that works within Report Designer but crashes the web interface is "SELECT * from aavwMcAfeeXtab" where "aavwMcAfeeXtab" is a view I created in Enterprise Manager for SQL Server. (i.e. created manually, NOT WITHIN the query designer in LanSweeper.)
I'm suspicious that my named view does not appear in the list of views in the Report Designer tree view. Is ReportDesigner's own Query Editor required create a report and associated view which will work in the web GUI?

--Edit: Before anybody asks, the Xtab query cannot be entered directly into the Query Editor: It chokes on the syntax that is perfectly acceptable to SQL Server:
SELECT TOP 100 PERCENT
dbo.tblComputers.Computername, dbo.tblComputers.Domain,
MIN(CASE Valuename WHEN 'HotFixVersions' THEN Value END) AS HotFixVersions,
MIN(CASE Valuename WHEN 'Version' THEN Value END) AS Version,
MIN(CASE Valuename WHEN 'EngineVersion' THEN Value END) AS EngineVersion,
MIN(CASE Valuename WHEN 'DATVersion' THEN Value END) AS DATVersion
FROM dbo.tblRegistry INNER JOIN dbo.tblComputers ON dbo.tblRegistry.Computername = dbo.tblComputers.Computername
WHERE
(dbo.tblRegistry.Regkey LIKE '%VIRUSCAN8600%')
GROUP BY
dbo.tblComputers.Computername, dbo.tblComputers.Domain
ORDER BY
dbo.tblComputers.Domain, dbo.tblComputers.Computername

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-25-2009 09:54 AM
jtnfoley wrote:
I'm suspicious that my named view does not appear in the list of views in the Report Designer tree view. Is ReportDesigner's own Query Editor required create a report and associated view which will work in the web GUI?
The reports shown must start with "web30rep"
The web site "crashing" on a report must be investigated by us

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-24-2009 04:15 PM
Server Error in '/lansweeper' Application.
--------------------------------------------------------------------------------
Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>
Please advise,
Niles
