
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-22-2018 01:28 PM
Hello there,
I've created a new state for assets which name is "DMI",
I would like to know if is it possible to do an extraction from the database of the asset when the state is "DMI".
To get some informations like Asset Type, Manufacturer, Model, Warranty and so on...
Is it possible to do it automatically ?
Many thanks
I've created a new state for assets which name is "DMI",
I would like to know if is it possible to do an extraction from the database of the asset when the state is "DMI".
To get some informations like Asset Type, Manufacturer, Model, Warranty and so on...
Is it possible to do it automatically ?

Many thanks
Labels:
- Labels:
-
Report Center
4 REPLIES 4

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-29-2018 07:19 AM
All right I will try this !
Many Thanks
Many Thanks

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-28-2018 02:57 PM
Within Lansweeper you can use a report alert. This will export the results of the selected report based on a schedule. You can find more information about the feature here: https://www.lansweeper.com/kb/113/sending-email-alerts.html#heading1
In practice, all exports will be done based on a schedule as any service or task will check for new data based on an interval. The thing you will need to decide is how frequent you want this interval to be.
Personally, I would do the following (however I do not know your use case):
Report wise I don't know if you need a complete list in every report. If you just need new machines, you could filter the report to only show new machines that were recently created or changed to that asset state.
Do note that reports will only be created and stored when the contain data. This prevents Lansweeper from creating useless empty reports.
In practice, all exports will be done based on a schedule as any service or task will check for new data based on an interval. The thing you will need to decide is how frequent you want this interval to be.
Personally, I would do the following (however I do not know your use case):
- Create a new schedule with the desired interval in Configuration\Scheduled Deployments.
- Use a report similar to the report above to create an report alert which is sent to the directory
Report wise I don't know if you need a complete list in every report. If you just need new machines, you could filter the report to only show new machines that were recently created or changed to that asset state.
Do note that reports will only be created and stored when the contain data. This prevents Lansweeper from creating useless empty reports.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-25-2018 07:37 AM
Hello Charles,
Thanks for your reply 🙂
"What exactly do you mean with automatically? Do you want it to run based on a schedule? Or export it?"
Reply : I wanted to export the asset automatically when he's classed in the DMI state
It can be scheduled but I will prefer an export imminent
Many thanks
Ponnazv
Thanks for your reply 🙂
"What exactly do you mean with automatically? Do you want it to run based on a schedule? Or export it?"
Reply : I wanted to export the asset automatically when he's classed in the DMI state
It can be scheduled but I will prefer an export imminent
Many thanks
Ponnazv

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-22-2018 05:50 PM
You can use the report below as a starting point. It shows basic information from all assets with the asset type "DMI"
What exactly do you mean with automatically? Do you want it to run based on a schedule? Or export it?
What exactly do you mean with automatically? Do you want it to run based on a schedule? Or export it?
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
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tsysIPLocations On tsysIPLocations.LocationID =
tblAssets.LocationID
Inner Join tblState On tblState.State = tblAssetCustom.State
Left Join tsysOS On tsysOS.OScode = tblAssets.OScode
Where tblState.Statename = 'DMI'
Order By tblAssets.Domain,
tblAssets.AssetName
