Powershell GUI fronted (WPF) to run categorized console scripts

โŒˆโŒ‹ โŽ‡ branch:  ClickyColoury


Check-in [95d14828c0]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Simple Get-ADUser script
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 95d14828c0788cb1a39077395819eeecf800aace
User & Date: mario 2017-09-23 02:42:38
Context
2017-09-23
07:26
Add -f Yellow check-in: 1e6e96ed49 user: mario tags: trunk
02:42
Simple Get-ADUser script check-in: 95d14828c0 user: mario tags: trunk
02:40
Swap directories check-in: aabc73de02 user: mario tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Added tools/user/cmd_adaccount.ps1.















































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# api: multitool
# version: 1.0
# title: AD account
# description: Get detailed AD account information
# type: psexec
# category: user
# img: users.png
# hidden: 0
# key: 7|ad-?account|account
# config: -
#
# Get all propertires via Get-ADUser
#
# Alternatives:
#  ยท [ADSISearcher]
#  ยท WMI Win32_user
#

Param($user = (Read-Host "Username"))

#-- ActiveDirectory query
Get-ADUser $user -Properties * | SELECT SamAccountName,Enabled,LockedOut,PasswordExpired,PasswordLastSet,AccountExpirationDate | Format-List