Skip to main content

Write to Learn

Credit: https://blog.strapi.io/content/images/2017/11/gitbook.png

Write to Learn and Learn to Write anywhere, anytime with GitBook.

GitBook - Document Everything!

Use https://www.gitbook.com/ as a place to think and track ideas for you and your team.

LearnPub.com - PUBLISH EARLY, PUBLISH OFTEN

Sign up at https://leanpub.com/ and create up to 100 books or courses for free. Or, choose a Standard or Pro plan for more features.

Popular posts from this blog

Export All Group Policy Objects

PS C:\Users\Administrator> Import-Module GroupPolicy PS C:\Users\Administrator> $today = Get-Date -F yyyyMMdd PS C:\Users\Administrator> $domain = "practicehabits.net" PS C:\Users\Administrator> Get-GPOReport -All -ReportType XML -Domain $domain -Path C:\Audit\GPOReportsAll-$today.xml PS C:\Users\Administrator> Get-GPOReport -All -ReportType HTML -Domain $domain -Path C:\Audit\GPOReportsAll-$today.html

Powershell: Check Bad Logon

get-aduser -Filter {BadLogonCount -ne 0} -properties * | select SamAccountName,BadLogonCount,BadPasswordTime,BadPwdCount,@{name='badPasswordTimeDT'; expression={[datetime]::fromFileTime($_.badPasswordTime)}} | sort BadPasswordTime | FT