我正在尝试使用Powershell从Windows 2008 - 2016服务器列表中获取驱动器信息。 我有获取信息的代码,但只能从我的本地系统获取信息,而不是远程获取,也不是从服务器名称的 txt 文件中获取信息。 下面是我的代码。
$Computers = @()
Function Get-DriveInfo {
Get-WmiObject Win32_DiskDrive | ForEach-Object {
$disk = $_
$partitions = "ASSOCIATORS OF " +
"{Win32_DiskDrive.DeviceID='$($disk.DeviceID)'} " +
"WHERE AssocClass = Win32_DiskDriveToDiskPartition"
Get-WmiObject -Query $partitions | ForEach-Object {
$partition = $_
$drives = "ASSOCIATORS OF " +
"{Win32_DiskPartition.DeviceID='$($partition.DeviceID)'} " +
"WHERE AssocClass = Win32_LogicalDiskToPartition"
Get-WmiObject -Query $drives | ForEach-Object {
New-Object -Type PSCustomObject -Property @{
Disk = $disk.DeviceID
DiskSize = '{0:d} GB' -f [int]($disk.Size / 1GB)
DiskModel = $disk.Model # Unique for Physical, VM, and SAN
Partition = $partition.Name
RawSize = '{0:d} GB' -f [int]($partition.Size / 1GB)
DriveLetter = $_.DeviceID
VolumeName = $_.VolumeName
Size = '{0:d} GB' -f [int]($_.Size / 1GB)
FreeSpace = '{0:d} GB' -f [int]($_.FreeSpace / 1GB)
}
}
}
}
}
$Computers += Get-DriveInfo $ComputerName
Write-Output $Computers
我还有一个只列出服务器名称的 txt 文件
server1
server2
server3
我有800 +服务器可以做到这一点。 一旦我有了数据,我就不确定将结果转储到哪种最佳文件。 有人告诉我使用 json 文件可能是一个好主意,但我以前没有使用过 json。 本质上,我正在尝试制作一个可搜索的对象,以允许我按以下顺序显示结果:
DiskModel
Partition
FreeSpace
Size
如果我理解正确,您希望能够将此函数指向计算机列表并获得显示运行它的计算机名称的返回。我已经更新了您的函数,并将为您提供有关如何使用它的示例。
创建列标题设置为"计算机名"的 CSV 文件。根据需要用数据填充列。然后执行以下操作:
$Computers = Import-CSV -Path .Computers.csv
Get-DriveInfo -Computername $Computers
如果您只想使用更新的功能试水,请尝试以下操作:
get-driveinfo -Computername TestComputer1,TestComputer2
应该得到你正在寻找的输出。至于存储它的位置,这实际上取决于您的用例。您可以直接通过管道连接到导出-CSV并制作电子表格。或者非常花哨,考虑将这些值放入SQL数据库中。
更新功能:
Function Get-DriveInfo {
[CmdletBinding()]
Param (
# Enter a ComputerName
[Parameter(Mandatory=$false,
Position=0,
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true)]
[string[]]$ComputerName = "localhost")
Foreach ($Computer in $ComputerName) {
Invoke-Command -ComputerName $Computer -ScriptBlock {
Get-WmiObject Win32_DiskDrive | ForEach-Object {
$disk = $_
$partitions = "ASSOCIATORS OF " +
"{Win32_DiskDrive.DeviceID='$($disk.DeviceID)'} " +
"WHERE AssocClass = Win32_DiskDriveToDiskPartition"
Get-WmiObject -Query $partitions | ForEach-Object {
$partition = $_
$drives = "ASSOCIATORS OF " +
"{Win32_DiskPartition.DeviceID='$($partition.DeviceID)'} " +
"WHERE AssocClass = Win32_LogicalDiskToPartition"
Get-WmiObject -Query $drives | ForEach-Object {
$obj = New-Object -Type PSCustomObject -Property @{
Disk = $disk.DeviceID
DiskSize = '{0:d} GB' -f [int]($disk.Size / 1GB)
DiskModel = $disk.Model # Unique for Physical, VM, and SAN
Partition = $partition.Name
RawSize = '{0:d} GB' -f [int]($partition.Size / 1GB)
DriveLetter = $_.DeviceID
VolumeName = $_.VolumeName
Size = '{0:d} GB' -f [int]($_.Size / 1GB)
FreeSpace = '{0:d} GB' -f [int]($_.FreeSpace / 1GB)
}
write-output $obj
}
}
}
}
}
}