Disable Throttling for a specific SharePoint 2010 list with PowerShell

The following can be used to disable throttling on a specific list (must be run as an account with enough priv.):

$web = Get-SPWeb "http://whateverWeb";
$list = $web.Lists["List Title"];
$list.enablethrottling = $false;
$list.update();