说一个helpdesk常用的ps1脚本
时间: 2024-03-12 09:45:47 浏览: 54
常用的脚本
以下是一个常用的 Helpdesk PowerShell 脚本示例,它可以用于查询计算机的基本信息。您可以在 PowerShell 控制台中运行此脚本,并将计算机名称作为参数传递给它。该脚本将输出计算机的名称、操作系统版本、安装日期、处理器信息和内存信息。
```powershell
$computerName = $args[0]
$os = Get-WmiObject -Class Win32_OperatingSystem -ComputerName $computerName
$processor = Get-WmiObject -Class Win32_Processor -ComputerName $computerName
$memory = Get-WmiObject -Class Win32_PhysicalMemory -ComputerName $computerName
Write-Host "Computer Name: $($os.CSName)"
Write-Host "Operating System: $($os.Caption) $($os.Version)"
Write-Host "Install Date: $($os.ConvertToDateTime($os.InstallDate))"
Write-Host "Processor: $($processor.Name)"
Write-Host "Memory: $([math]::Round(($memory.Capacity / 1GB), 2)) GB"
```
请注意,该脚本需要管理员权限才能运行,并且需要在远程计算机上启用 WMI(Windows Management Instrumentation)服务。如果您需要更多的 Helpdesk PowerShell 脚本示例,可以在互联网上搜索或查看 Microsoft 官方文档。
阅读全文