gpt4 book ai didi

powershell - 使用 PowerShell 删除本地 Windows 配置文件

转载 作者:行者123 更新时间:2023-12-04 22:37:21 30 4
gpt4 key购买 nike

我正在尝试编写一个脚本来删除测试帐户的本地配置文件。我正在使用以下行返回以“test-”开头的任何帐户的 SID

PowerShell:$UserSID = (Get-WmiObject Win32_UserProfile | Where {$_.LocalPath -like '*\test-*'}).SID
获得 SID 后,我使用 wmic 进行删除,但我不确定如何将该代码转换为 PowerShell。

WMIC:wmic /node:"localhost" path win32_UserProfile where Sid="%%b" Delete

最佳答案

我认为这会起作用,但我没有在 Win32_UserProfile 类上找到删除方法

$UserSID = (Get-WmiObject Win32_UserProfile | Where {$_.LocalPath -like '*\test-*'}).SID
(gwmi -class Win32_UserProfile -filter "SID='$UserSID'").Delete()

关于powershell - 使用 PowerShell 删除本地 Windows 配置文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3755741/

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