ขนาดวิดีโอ: 1280 X 720853 X 480640 X 360
แสดงแผงควบคุมโปรแกรมเล่น
เล่นอัตโนมัติ
เล่นใหม่
Really helpful! I've been wanting to learn filters for a while so I can make a table of all the users in my office location easily
Great video. Please continue to post more like this.
Much more on my website. activedirectorypro.com/blog/
Great tutorial!
Thank you! Cheers!
@7:43 What would be the script to change that logon script for all users in that OU?
You can use the set-aduser command to update the scriptpath. set-aduser -Identity robert.allen -scriptpath logonscript.bat
hi, how can I get a list of the computers from AD with the user that has login into them?
Is there any way I can tip you for this video? I am very grateful.
How do I use this script to search for multiple users I have in a CSV file or text file? I don't want to do them one by one.
What is the name powershell gui?
How do I filter out user accounts that haven't logged in for more than 90 days?
$date= (get-date).AddDays(-90)Get-ADUser -Filter {LastLogonDate -lt $date} -Property LastLogonDate | Select Name, SamAccountName, LastLogonDate
Really helpful! I've been wanting to learn filters for a while so I can make a table of all the users in my office location easily
Great video. Please continue to post more like this.
Much more on my website.
activedirectorypro.com/blog/
Great tutorial!
Thank you! Cheers!
@7:43 What would be the script to change that logon script for all users in that OU?
You can use the set-aduser command to update the scriptpath.
set-aduser -Identity robert.allen -scriptpath logonscript.bat
hi, how can I get a list of the computers from AD with the user that has login into them?
Is there any way I can tip you for this video? I am very grateful.
How do I use this script to search for multiple users I have in a CSV file or text file? I don't want to do them one by one.
What is the name powershell gui?
How do I filter out user accounts that haven't logged in for more than 90 days?
$date= (get-date).AddDays(-90)
Get-ADUser -Filter {LastLogonDate -lt $date} -Property LastLogonDate | Select Name, SamAccountName, LastLogonDate