PowerShell to disable list throttling for specific list (ShortUrl)

ft.SharePoint.PowerShell
$web = Get-SPWeb http://SiteURL/
$list = $web.Lists[“shorturl”]
$list.EnableThrottling = $false
$list.Update()
Enable List Throttling:
Below is the PowerShell command to enable list throttling for a particular list.
Add-PSSnapin Microsoft.SharePoint.PowerShell
$web = Get-SPWeb http://SiteURL/
$list = $web.Lists[“shorturl”]
$list.EnableThrottling = $false
$list.Update()