Skip to main content

What is DevOps

devops stands for development & operation

DevOps is the blending of tasks performed by a company's application development and systems operations teams.

"DevOps is the union of people, process, and products to enable continuous delivery of value to our end users." — According to Donovan Brown in What is DevOps?

> What is DevOps by AWS

> What is DevOps by Google

> What is DevOps by IBM

> What is DevOps by Microsoft

Courses

Learn DevOps with free online courses from top universities and institutions | edX.org

Efficient DevOps with SAP

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