gpt4 book ai didi

powershell - 在嵌套 PSObject 属性上重载 ToString 的问题

转载 作者:行者123 更新时间:2023-12-03 00:09:42 26 4
gpt4 key购买 nike

我已经创建了一个具有各种属性的自定义 PSObject,并且我正在尝试为其中一些属性重载 ToString。我在 TimeSpan 属性之一上取得了成功,但在 WMI 对象上却没有。

# Get WMI info
$wmiOS = Get-WmiObject -Class Win32_OperatingSystem
$wmiSystem = Get-WmiObject -Class Win32_ComputerSystem
$wmiDrives = Get-WmiObject -Class Win32_LogicalDisk -Filter "DriveType='3'"
$ipv4Address = (Test-Connection -ComputerName $env:COMPUTERNAME -Count 1).IPV4Address.IPAddressToString
$uptime = (Get-Date) - ($wmiOS.ConvertToDateTime($wmiOS.LastBootUpTime))
# Setup object
$result = New-Object -TypeName psobject -Property @{
Hostname = $($wmiSystem.Name)
Domain = $($wmiSystem.Domain)
Username = $($wmiSystem.Username)
OperatingSystem = $($wmiOS.Caption)
OSArchitecture = $($wmiOS.OSArchitecture)
PSVersion = "$($PSVersionTable.PSVersion.Major).$($PSVersionTable.PSVersion.Minor)"
IPv4Address = $ipv4Address
Uptime = $uptime
DriveInfo = $wmiDrives
}

# Overload DriveInfo ToString
$result.DriveInfo = $result.DriveInfo | Add-Member -MemberType ScriptMethod -Name ToString -Value {
"$($this.DeviceID) $($this.FreeSpace) GB;"
} -Force -PassThru

# Overload Uptime ToString
$result.Uptime = $result.Uptime | Add-Member -MemberType ScriptMethod -Name ToString -Value {
"$($this.Days) days, $($this.Hours) hours, $($this.Minutes) minutes, $($this.Seconds) seconds"
} -Force -PassThru

# Overload result ToString
$result = $result | Add-Member -MemberType ScriptMethod -Name ToString -Value {
$temp = @"
Hostname: $($this.Hostname)
Domain: $($this.Domain)
Console User: $($this.Username)
Operating System: $($this.OperatingSystem)
OS Architecture: $($this.OSArchitecture)
PS Version: $($this.PSVersion)
IPv4 Address: $($this.IPv4Address)
Uptime: $($this.Uptime.ToString())
Free Space: $($this.DriveInfo)
"@
$temp
} -Force -PassThru

一切似乎工作正常,但 DriveInfo 过载。我只是得到“System.Object []”作为它的返回。对我来说奇怪的是,当我执行 $result.ToString() 时,我得到以下信息(请参阅“可用空间”):
Domain: domain.local
Console User: domain\username
Operating System: Microsoft Windows 10 Pro
OS Architecture: 64-bit
PS Version: 5.1
IPv4 Address: 1.1.1.1
Uptime: 2 days, 1 hours, 31 minutes, 49 seconds
Free Space: C: 58721181696; E: 631496687616;

$result.Uptime.ToString():
2 days, 1 hours, 19 minutes, 34 seconds

$result.DriveInfo.ToString():
System.Object[]

我可能遗漏了一些明显的东西,但在这一点上我迷路了。感谢您提前提供的任何帮助!

最佳答案

你可以尝试替换:

$result.DriveInfo = $result.DriveInfo | Add-Member -MemberType ScriptMethod -Name ToString -Value {"$($this.DeviceID) $($this.FreeSpace) GB;"} -Force -PassThru

经过
$result.DriveInfo | Add-Member -MemberType ScriptMethod -Name ToString -Value {"$($this.DeviceID) $($this.FreeSpace) GB;"} -Force -PassThru

据我了解 Add-Member应用于每个驱动器,您不需要影响结果,因为您更改了列表中的每个对象。之后,您可以使用以下方法进行测试:
$n = 0
$result.DriveInfo[$n].ToString()

关于powershell - 在嵌套 PSObject 属性上重载 ToString 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52048745/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com