This deployment package will run a script that will disable the IE11 feature on Windows 10.
Before running the deployment, download the scripts attached below the report and place them in the Packageshare\Scripts folder.
Once you have the scripts in the folder, you can use the report below to deploy it on all Windows 10 machines with Internet Explorer 11 installed.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.Username,
tblAssets.Userdomain,
Coalesce(tsysOS.Image, tsysAssetTypes.AssetTypeIcon10) As icon,
tblAssets.IPAddress,
tsysIPLocations.IPLocation,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tsysOS.OSname As OS,
tblAssets.SP,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblFeatureUni.featureName As FeatureName,
tblFeatureUni.featureCaption As FeatureCaption,
tblFeatureUni.addedDate As DateAdded,
tblFeature.Lastchanged As LastChanged
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblFeature On tblAssets.AssetID = tblFeature.AssetId
Inner Join tblFeatureUni On tblFeatureUni.featUniID = tblFeature.featUniId
Inner Join tsysIPLocations On tsysIPLocations.LocationID =
tblAssets.LocationID
Inner Join tblState On tblState.State = tblAssetCustom.State
Left Join tsysOS On tblAssets.OScode = tsysOS.OScode
Where tsysOS.OSname = 'Win 10' And tblFeatureUni.featureCaption Like
'%Internet Explorer%' And tblState.Statename = 'Active'
Order By tblAssets.Domain,
tblAssets.AssetName,
FeatureCaption