cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
jtoma
Engaged Sweeper
Hello,

I am trying to deploy this package http://www.lansweeper.com/Forum/yaf_postst12405_Install-java-and-remove-old-java.aspx#post44842

Is it possible for LanSweeper to detect who has Java installed, and run this for all the users who has java installed?

I keep getting this warning on top, "Provide an account with read-execute rights only on the shared folder. Using an administrator account is a severe security risk!
This password will be accessible to all users. Click here to enter the details."

please help!
1 REPLY 1
sullivane
Champion Sweeper III
This report should give you all assets that have Java install:

Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetUnique,
tblSoftwareUni.softwareName,
tblSoftwareUni.SoftwarePublisher,
tblAssets.AssetName
From tblAssets
Inner Join tblSoftware On tblAssets.AssetID = tblSoftware.AssetID
Inner Join tblSoftwareUni On tblSoftware.softID = tblSoftwareUni.SoftID
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Where tblSoftwareUni.softwareName Like '%Java%' And
tblSoftwareUni.SoftwarePublisher Like '%Oracle%' And tblAssetCustom.State = 1
Order By tblAssets.AssetName