There is no easy solution for this problem. We had the similar need a few months
ago and after analyzing the html code that Sharepoint generate we concluded that
there were no elegant way to achieve this. We couldn't locate where was the
checkbox listing defined.
Basically the "Add Listing" column is NOT part of the standard CAML schema, it
is being generated dynamically by the upload.aspx file located each the document
library/forms
In order to implement your request you will need to modify the upload.aspx page
for the document library in question and add the following code in after the
following line
<script language=javascript>
var fCtl=false;
ADD the code below
document.attachEvent ('onreadystatechange', UpdateLastRow);
function UpdateLastRow()
{ if (document.readyState=="complete")
{ document.all.submitlst.checked = false; }
}
This will force the checkbox to become unchecked at the end of the page load
In order to make this change global to all document libraries, you will need to
modify the upload.aspx in the template directory
C:\Program Files\Common Files\Microsoft Shared\web server
extensions\60\TEMPLATE\1033\SPS \LISTS\DOCLIB (Where SPS is the site template
you want to change, may need to do this for every other template as well)