---
title: "Get-DbatoolsChangeLog"
description: "Opens the dbatools release changelog in your default browser"
url: "https://dbatools.io/Get-DbatoolsChangeLog/"
availability: "Windows, Linux, macOS"
tags: ["Module", "ChangeLog"]
author: "Chrissy LeMaire (@cl), netnerds.net"
source: "https://github.com/dataplat/dbatools/blob/master/public/Get-DbatoolsChangeLog.ps1"
last_updated: "2024-01-01"
---

# Get-DbatoolsChangeLog

## Synopsis

Opens the dbatools release changelog in your default browser

## Description

Launches your default browser to view the dbatools release changelog on GitHub. This provides access to version history, new features, bug fixes, and breaking changes for the dbatools PowerShell module. Useful for staying current with module updates or troubleshooting issues that may be related to recent changes.

## Syntax

```powershell
Get-DbatoolsChangeLog
    [-Local]
    [-EnableException]
    [<CommonParameters>]

```

## Examples

### Example 1: Opens a browser to our online changelog

```powershell
PS C:\> Get-DbatoolsChangeLog
```

### Optional Parameters

##### -Local

Attempts to display a local changelog file instead of opening the online version. This functionality has been deprecated and will display a warning message directing users to the online changelog.

| Property | Value |
| --- | --- |
| Alias |  |
| Required | False |
| Pipeline | false |
| Default Value | False |

##### -EnableException

By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.  
This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.  
Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

| Property | Value |
| --- | --- |
| Alias |  |
| Required | False |
| Pipeline | false |
| Default Value | False |

## Outputs

**None**

This command does not return any objects. It opens the dbatools release changelog in your default browser or displays a message for unsupported options.

---

Part of [dbatools](https://dbatools.io/), a free and open source PowerShell module for SQL Server administration. Full command index: https://dbatools.io/commands/
