Modify XML
Modify web.config
On that note just used a nifty piece of PowerShell to set the "CallStack='True'" and "CustomErrors='Off'" on a site I was testing so thought I would send it your way:
$wc = "C:\inetpub\wwwroot\wss\VirtualDirectories\{site}\web.config" $d = new-object System.Xml.XmlDocument $d.Load($wc) $d.get_DocumentElement()."sharepoint".safemode.callstack = "True" $d.get_DocumentElement()."system.web".customErrors.mode = "Off" $d.Save($wc)


