(imported topic written by Darknight)
Hi All,
I have below session relevance created :
( item 0 of it as string & “$x$” &
item 1 of it as string & “$x$” &
item 2 of it as string & “$x$” &
item 3 of it as string )
of (
(if (exists Names of Applicable Computers of it)
then (Names of Applicable Computers of it as string)
else ("")),
(if (exists Source ID of it)
then (Source ID of it as string)
else ("")),
(if (exists Source Severity of it)
then (Source Severity of it as string)
else ("")),
(if (exists Name of it)
then (Name of it as string)
else ("")))
of
bes fixlets
whose (
(display name of site of it = “Patches for Windows (English)”) AND
(((Category of it as lowercase contains “critical updates”) OR
(Category of it as lowercase contains “security update”) OR
(Category of it as lowercase contains “definition updates”) OR
(Category of it as lowercase contains “service pack”) OR
(Category of it as lowercase contains “rollup”)
OR
(Category of it as lowercase contains "update"))
OR
((Source Severity of it as lowercase contains “critical”) OR
(Source Severity of it as lowercase contains "important") OR
(Source Severity of it as lowercase contains “moderate”) OR
(Source Severity of it as lowercase contains “unspecified”))
AND
((Name of it as lowercase does not contain “sql”)
OR
(Name of it as lowercase does not contain “office”)
OR
(Name of it as lowercase does not contain “visual studio”)
OR
(Name of it as lowercase does not contain “excel”)
OR
(Name of it as lowercase does not contain “visio”))
AND
(Applicable Computer Count of it > 0))
output of which is in format :
VM675401$x$2803821$x$Critical$x$Security Update for Windows Server 2003 (KB2803821)
VM675404$x$2850869$x$Critical$x$Security Update for Windows Server 2003 (KB2850869)
i want to see the result in the belwo format (that is an excel format):
Computer Name
KB-Article
Severity
Update Title
VM675401
2803821
Critical
Security Update for Windows Server 2003 (KB2803821)
VM675404
2850869
Critical
Security Update for Windows Server 2003 (KB2850869)
Can someone please assist me in achiving this result using html.
thanks in advance.