Check-in [2e564262f9]
Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Moved more user-related scripts to... users/ |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
2e564262f9aff3f5ec301fbc6c32f74f |
User & Date: | mario 2017-09-24 06:58:54 |
Context
2017-09-24
| ||
07:00 | Resurrected cache search (adsearch.txt w/ "Username|Displayname|Telno" format); as alternative to ADSISearcher or Get-ADUser check-in: af16cf2b8a user: mario tags: trunk | |
06:58 | Moved more user-related scripts to... users/ check-in: 2e564262f9 user: mario tags: trunk | |
06:58 | Made Usertools base dir configurable check-in: dafc0b50d4 user: mario tags: trunk | |
Changes
Name change from tools/info/findlocaladmins.ps1 to tools/user/findlocaladmins.ps1.
1 2 3 4 5 | # api: multitool # version: 0.5 # title: Detect admins # description: list local admins on remote machine # type: inline | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # api: multitool # version: 0.5 # title: Detect admins # description: list local admins on remote machine # type: inline # category: user # img: users.png # hidden: 0 # key: i13|localadmins # config: {} # # list local admins on computer # - via WMI win32_groupuser |
︙ | ︙ |
Name change from tools/info/fu.ps1 to tools/user/fu.ps1.
1 2 3 4 5 | # api: multitool # version: 1.4 # title: Find user # description: Performs an AD search for phone numbers or employee numbers # type: inline | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # api: multitool # version: 1.4 # title: Find user # description: Performs an AD search for phone numbers or employee numbers # type: inline # category: user # hidden: 0 # icon: finduser # key: i4|fu|f|find|find-?user # keycode: F6 # shortcut: 4 # config: - # |
︙ | ︙ |
Name change from tools/info/lockedusers.ps1 to tools/user/lockedusers.ps1.
1 2 3 4 5 | # api: multitool # version: 1.0 # title: Locked out users # description: Find locked out user names # type: inline | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # api: multitool # version: 1.0 # title: Locked out users # description: Find locked out user names # type: inline # category: user # icon: user # hidden: 0 # key: i5|lock|locked|lockedout|ll # config: {} # # Scans AD for locked-out accounts Search-ADAccount -LockedOut | Select samaccountname, name |