powershell 获取Windows中所有已知文件夹的列表,即使用户将其移动到其他非标准位置也是如此。回答问题“我如何学习

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 获取Windows中所有已知文件夹的列表,即使用户将其移动到其他非标准位置也是如此。回答问题“我如何学习相关的知识,希望对你有一定的参考价值。

$result = [ordered]@{};

[Environment+SpecialFolder].GetEnumNames() -as [String[]] | 
    Sort | 
    ForEach {    $res += @{ $_=[Environment]::GetFolderPath($_) }   }
    
$result

以上是关于powershell 获取Windows中所有已知文件夹的列表,即使用户将其移动到其他非标准位置也是如此。回答问题“我如何学习的主要内容,如果未能解决你的问题,请参考以下文章

Powershell:在 Windows 10 中获取 GPS 坐标 - 使用 Windows 位置 API?

通过 Powershell 配置 Windows Explorer 文件夹选项

powershell 从活动目录中获取Windows用户所属的广告组

如何在 Windows PowerShell 中获取当前用户名?

powershell 使用PowerShell获取Windows更新版本

Windows 服务:获取所有用户的进程,包括 MainWindowHandle