gpt4 book ai didi

powershell - Powershell脚本,可让我大致了解几个远程系统

转载 作者:行者123 更新时间:2023-12-03 01:25:35 24 4
gpt4 key购买 nike

因此,我尝试将脚本汇总在一起,以概述网络中的多台计算机。到目前为止,我已经整理了一些东西,但是仍然无法使它正常工作。我想要一个包含以下信息的CSV文件:
Assets /计算机名(通常,我需要使用它来进行记录)
离线/在线状态(我只能定位在线计算机)
当前IP地址(如果名称解析不正确,可以使用IP进行远程访问)
当前已登录用户(如果没有人登录,则插入N / A)
操作系统名称(查找较旧的Windows 7计算机)
操作系统版本(需要更新到我们的标准的内容)
也许是模型(这可能会有所帮助)
专用软件(类似于Adobe,WebEx等)
如果我可以将所有这些信息提取到CSV文件中,然后另存为excel电子表格,则将有助于减少从我使用的其他来源/软件中提取此信息的时间。到目前为止,我有以下内容,但有些项目给了我一些问题。

# Source Text File For List of Computers
Get-Content "listofcomputers.txt" | ForEach-Object{

# Grab Current Status
$pingstatus = ""
if (Test-Connection -BufferSize 32 -Count 1 -ComputerName $_ -Quiet) {
$pingstatus = "Online"
} else {
$pingstatus = "Offline"
}

# Grab Current IP Address
$ip_address = (Test-Connection -ea stop -Count 1 -comp $_).IPV4Address).IPAddresstoString
if (!$ip_address){
$ip_address = "N/A"
}
else{
$ip_address = (Test-Connection -ea stop -Count 1 -comp $_).IPV4Address).IPAddresstoString
}

# Grab OS Name & Version
$os_name = (Get-WmiObject Win32_OperatingSystem -ComputerName $_ ).Caption
if(!$os_name){
$os_name = "The machine is unavailable"
$os_version = "N/A"
}
else{
$os_version = (Get-WmiObject Win32_OperatingSystem -ComputerName $_ ).Version
}

# Create Object Table
New-Object -TypeName PSObject -Property @{
ComputerName = $_
Status = $pingstatus
Address = $ip_address
OSName = $os_name
OSVersion = $os_version
}} | Select ComputerName,Status,Address,OSName,OSVersion |

# Scan For Specific Software
Get-WMIObject -Class win32_product -Filter {Name like "%Microsoft%"} -ComputerName $computers -ErrorAction STOP | Select-Object -Property Name,Version
}

# Export Results to CSV
Export-Csv "z_queryresults.csv" -NoTypeInformation -Encoding UTF8

# Display Results Witin PS Window
$P = Import-Csv -Path .\z_queryresults.csv
$P | Format-Table

# Pause Script & Exit
Read-Host -Prompt "Press Enter to continue"
谁能帮助我或将我引导到一个相似的脚本,该脚本可以为我提供所需的最终结果?
因此,需要澄清的是,最终结果将与此类似:
enter image description here

最佳答案

我喜欢FoxDeploy的答案...但是,当他回答时,我正处于脚本编写的中间,因此,出于完整性考虑,我仍然想发布。它包括Fox提到的许多建议。区别之一是处理“软件”部分。我有几个脚本可以执行这种操作,并且为了便于排序,您需要确保软件的每一行都是独立的。以下脚本的结果将每台PC包含多行。然后,您可以使用Excel创建数据透视表,以更好地对信息进行排序(例如,只需要PC的名称)。
根据我的经验,我发现这会产生最有用的结果。下面的脚本与您最初编写的脚本有很大不同,但是我希望它可以为调整您自己的脚本提供很好的引用。

# Source Text File For List of Computers
$PCs = Get-Content "listofcomputers.txt"

# Define the array that will hold your results
$results = @()

foreach ($pc in $pcs)
{
if (Test-Connection -ComputerName $pc -Count 1 -ErrorAction SilentlyContinue)
{
$ip = (Test-Connection -ComputerName $pc -Count 1 -ErrorAction SilentlyContinue).IPV4Address.IPAddresstoString
$OS = Invoke-Command -ComputerName $pc -ScriptBlock {Get-CimInstance -ClassName Win32_OperatingSystem}
$software = Invoke-Command -ComputerName $pc -ScriptBlock {Get-CimInstance -ClassName Win32_Product -Filter 'Name like "%Microsoft%"' -Property Name,Version}
foreach ($ware in $software)
{

$results += [pscustomobject]@{
Name = $pc
IP = $ip
OSName = $os.Caption
Version = $os.Version
SoftwareName = $ware.Name
SoftwareVersion = $ware.Version
}
}
}
else
{
$results += [pscustomobject]@{
Name = $pc
IP = "Offline"
OSName = ""
Version = ""
Software = ""

}
}
}

$results | export-csv -Path "C:\stairway\toheaven.csv" -notypeinformation

关于powershell - Powershell脚本,可让我大致了解几个远程系统,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63457083/

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