
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-27-2016 02:17 AM
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!
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!
Labels:
- Labels:
-
General Discussion
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-27-2016 11:00 PM
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
