想在我们组织的不同机器上部署下面的powershell脚本。一些机器的操作系统安装在不同的驱动器号,所以我想消除这一个。
目标路径应为C:\kworking
在CMD命令中,我可以轻松使用%systemdrive
或%sytemdrive%:\kworking
,但在powershell中不接受
$users = Get-Content C:\kworking\userslocal.txt
ForEach($computer in $users){
$op=Get-LocalUser | Where-Object {$_.Name -eq $computer}
if ($op)
{
Disable-LocalUser -Name $computer
}
}
1条答案
按热度按时间7gyucuyw1#
要访问PowerShell中的环境变量,您可以使用,例如