I'm getting the following error on the dashboard
##ERROR: Cannot open report Workstation: All workstations without Anti-virus software
When I go into report builder I can view the query and also generate results from the query within report builder without issues, however I am getting the above error and unable to click on the link (there is no hyperlink).
Query is below per report builder:
Select Top 1000000 tblcomputers.Computername, tblcomputers.ComputerUnique, tblcomputers.Domain, tblcomputers.Description, tblcomputers.Lastseen, Web40OSName.Compimage As icon From tblcomputers Inner Join web40ActiveComputers On tblcomputers.Computername = web40ActiveComputers.Computername Inner Join Web40OSName On Web40OSName.Computername = tblcomputers.Computername Inner Join tblOperatingsystem On tblcomputers.Computername = tblOperatingsystem.Computername Inner Join tblComputersystem On tblcomputers.Computername = tblComputersystem.Computername Where tblcomputers.Computername Not In (Select tblSoftware.ComputerName From tblSoftware Cross Join tsysantivirus Where tblSoftware.softwareName Like tsysantivirus.Software) And tblComputersystem.Domainrole < 2 Order By dbo.tblComputers.Computer
Any ideas?