PowerShell教程 - 计算机管理(Computer System Management)
更新记录
转载请注明出处。
2022年8月27日 发布。
2022年8月27日 从笔记迁移到博客。
计算机管理(Computer System Management)
重启计算机
Restart-Computer
重命名计算机
Rename-Computer
关闭计算机
Stop-Computer
清空回收站
Clear-RecycleBin
实例:
清空回收站,进行提示
Clear-RecycleBin -Confirm
强制清空回收站
Clear-RecycleBin -Force
获取系统的BIOS的信息
Get-WMIObject -Class Win32_BIOS
获取内存信息
Get-WMIObject -Class Win32_PhysicalMemory
查看CPU信息
Get-WMIObject -Class Win32_Processor
查看硬盘信息
Get-WMIObject -Class Win32_DiskDrive
本文来自博客园,作者:重庆熊猫,转载请注明原文链接:https://www.cnblogs.com/cqpanda/p/16629771.html