รบกวน ช่วยดู code Power shell ด้วยครับ

พอดีว่าใน บ. ต้องการเปลี่ยน File server ใหม่ จึงอยากเก็บ log เกี่ยวกับ Map Drive ของ user ไว้ครับ ประมาณ 200 user
ไปเจอ comde ด้านล่างมา ใช้งานได้ แต่ จำเป็นต้องรู้ password ของ user และ ทำได้ทีละ  user กว่าจะเสร๊จ นานจะใช้เวลานาน
มีวิธี หรือ software อะไรที่สามารถ นำมาใช้ได้บ้างหรือเปล่าครับ

$computerlist = Get-Content C:\temp\computer.txt
$cred = Get-Credential
# Loop through each item in the array (each computer in the list of computers we loaded into the variable)
ForEach ($computer in $computerlist)
{
  # Query WMI on computer using credentials and output to file with width setting so we see everything
  Get-WmiObject Win32_NetworkConnection -computerName $computer -credential $cred | Select LocalName,RemoteName | Out-File C:\temp\$env:username.txt -width 120
}
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่