How to get free unlimited Pluralsight access using MSDN

How to get free unlimited Pluralsight access using MSDN?  How to Activate Your MSDN Pluralsight Benefit ? It is very easy to get unlimited access to pluralsight with msdn subscription, Just follow below steps to do so: 1> log in to https://my.visualstudio.com and go to benefits 2> scroll down page till you see pluralsight option and […]

Continue Reading

Powershell to Reset password of test users who are member of one group

Powershell to Reset password of test users who are member of one group You can reset password of bulk users who are member of group1 by using below command: $upasswd = ConvertTo-SecureString “Abcd111*” -AsPlainText -Force Get-DistributionGroupMember group1 |foreach {write-host $_.PrimarySmtpAddress ; Set-ADAccountPassword -NewPassword $upasswd -Identity $_.Alias} Note – please change input values (marked in yellow) […]

Continue Reading