
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-10-2020 04:02 PM
I'm trying to find a report that can tell me which AD accounts are set to log on to all computers and can't find anything. In AD, this setting is on the "Account" tab>"Log On To..." button. Is there such a report? Thanks.
Labels:
- Labels:
-
General Discussion
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-13-2020 05:45 PM
Thank you, @RKCar! This script worked perfectly.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-13-2020 03:06 PM
I think this is stored within an attribute that Lansweeper doesn't query. The following is a PowerShell script which will give you a list, albeit outside of Lansweeper.
$logLocation = 'C:\Windows\Temp\LogOnTo.csv'
get-aduser -filter * -properties LogonWorkstations | Select-Object SamAccountName, Name, LogonWorkstations | Export-csv -path $logLocation -NoTypeInformation
