Yes, I have already created a list of completed. But my need is to know the ones not completed in order to make re-deploy or manually deploy.
If I made an of "false reports", having made multiple attempts to deploy, I would have a list of multiple "False". In addition, there would be the possibility that there is a "True" in the attempts, then the report would not be reliable.
Unfortunately I can not use the list of the software, because the deployment is to Replace an image .bmp
So you think you can have a proper report on unfinished?
This report should filtrarmi the "False" (give me just one row), where it was never present a "True".
Following the report that I created, but the problem is that, as I said before, I have multiple False, and the list I also computers that have been completed because one of the attempts has been successful.
Select Top 1000000 upgrade_tblComputers.Computer,
upgrade_tblComputers.LastknownIP,
upgrade_tblCompCustom.Custom6,
upgrade_tblCompCustom.Custom7,
upgrade_tblCompCustom.Custom8,
tblAssets.AssetID,
tsysOS.OSname,
tsysPackageLogs.Success,
tsysPackageLogs.Errorcode,
tsysPackageLogs.Destination,
tsysPackageLogs.Errormessage,
tsysPackageLogs.LastStepID
From upgrade_tblComputers
Left Outer Join upgrade_tblCompCustom On upgrade_tblComputers.Computername =
upgrade_tblCompCustom.Computername
Inner Join tblAssets On tblAssets.AssetID = upgrade_tblComputers.Computername
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Inner Join tsysPackageLogs On tblAssets.AssetID = tsysPackageLogs.AssetID
Where tsysOS.OSname = 'Win 7' And tsysPackageLogs.Success = 'False'
Thank you.