Check-in [1e6e96ed49]
Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add -f Yellow |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
1e6e96ed496447eda683d13e9d18b1a4 |
| User & Date: | mario 2017-09-23 07:26:17 |
Context
|
2017-09-23
| ||
| 07:26 | Move NETUSER to tools/user/ check-in: 00c8752d53 user: mario tags: trunk | |
| 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 | |
Changes
Changes to tools/extras/powershell_info.ps1.
1 2 3 4 5 6 7 8 9 10 11 | # api: multitool # version: 0.0 # title: PowerShell info # description: runtime details # type: inline # category: misc # hidden: 1 # icon: powershell # config: - # | > | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# api: multitool
# version: 0.0
# title: PowerShell info
# description: runtime details
# type: inline
# category: misc
# hidden: 1
# icon: powershell
# config: -
#
# Some PSHost details
Write-Host -f Yellow "❏ Host"
($Host |FL | out-string).trim() |write-host
Write-Host -f Yellow "❏ VerTbl"
($PSVersionTable |Ft | out-string).trim() |write-host
Write-Host -f Yellow "❏ [Accels]"
([psobject].Assembly.GetType("System.Management.Automation.TypeAccelerators")::get | fT -auto -wrap | out-string -width 60).trim() | write-host
|