Powershell GUI fronted (WPF) to run categorized console scripts

⌈⌋ ⎇ branch:  ClickyColoury


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: 2e564262f9aff3f5ec301fbc6c32f74f3b156fd4
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
Hide Diffs Unified Diffs Ignore Whitespace Patch

Name change from tools/info/findlocaladmins.ps1 to tools/user/findlocaladmins.ps1.

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: info
# img: users.png
# hidden: 0
# key: i13|localadmins
# config: {}
# 
# list local admins on computer
# - via WMI win32_groupuser





|







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
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: info
# hidden: 0
# icon: finduser
# key: i4|fu|f|find|find-?user
# keycode: F6
# shortcut: 4
# config: -
# 





|







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
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: info
# icon: user
# hidden: 0
# key: i5|lock|locked|lockedout|ll
# config: {}
# 
# Scans AD for locked-out accounts


Search-ADAccount -LockedOut | Select samaccountname, name






|










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