gpt4 book ai didi

function - 如何使用函数在 Windows Powershell 中获取操作系统名称

转载 作者:行者123 更新时间:2023-12-01 10:45:05 25 4
gpt4 key购买 nike

关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。












想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。

6年前关闭。




Improve this question




我正在尝试使用 Windows Powershell 中的函数返回操作系统名称。

我构建了这段代码,但没有得到任何结果。请问有什么帮助吗?

Function Get-OSName
{
(Get-WmiObject Win32_OperatingSystem).Name
}
"Name of the OS: $(Get-OSName)"

谢谢你。

enter image description here

最佳答案

尝试探索对象以找出您想要的属性:

Get-WmiObject Win32_OperatingSystem | select -Property *

您会注意到 'Caption' 属性包含友好的操作系统名称,如 micky-balladelli 所述。您的示例将更改为:
Function Get-OSName
{
(Get-WmiObject Win32_OperatingSystem).Caption
}

干杯!

关于function - 如何使用函数在 Windows Powershell 中获取操作系统名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27316104/

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