<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>GatWeb - Extensions for Stsadm</title><link>http://www.codeplex.com/gatwebstsadm/Project/ProjectRss.aspx</link><description>This a project that aims to add new operations to the &amp;#34;stsadm&amp;#34; tool provided with SharePoint 2007.      Developers at Microsoft make it extensible using an interface called &amp;#34;ISPSStsadmCommand&amp;#34;.      Th...</description><item><title>Source code checked in</title><link>http://www.codeplex.com/gatwebstsadm/SourceControl/ListDownloadableCommits.aspx</link><description>Updated package</description><author>GatWeb</author><pubDate>Mon, 16 Jul 2007 09:36:02 GMT</pubDate><guid isPermaLink="false">Source code checked in 20070716093602A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/gatwebstsadm/Wiki/View.aspx?title=Home&amp;version=14</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Welcome to the &amp;quot;GatWeb - Extensions for Stsadm&amp;quot; project
&lt;/h2&gt; &lt;br /&gt;This project aims to add new operations for the stsadm.exe utility for SharePoint 2007. Microsoft makes this tool extensible, so developers can add easily new functionnalities.&lt;br /&gt; &lt;br /&gt;Stsadm is a good way to script actions against SharePoint like backup of site collections or to help SharePoint administrators manage their platform.&lt;br /&gt; &lt;br /&gt;Please do not install in production without first testing, and validating your own ability to support this code as this is provided &amp;quot;as is.&amp;quot;&lt;br /&gt; &lt;br /&gt;Support will be on an as is, please use the &amp;quot;Issue Tracker&amp;quot; to add bugs reports, and also the discussion board as a wish list for new features or general questions about these extensions.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Pre requisites
&lt;/h2&gt; &lt;br /&gt;You must have :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;.NET Framework 3.0&lt;/li&gt;&lt;li&gt;Windows SharePoint Services 3.0 (WSS 3.0) or Microsoft Office SharePoint Server 2007 (MOSS 2007)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;It must be run on a SharePoint server.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
How to use stsadm
&lt;/h2&gt; &lt;br /&gt;stsadm -o (operation name) [-argumentname argumentvalue]&lt;br /&gt; &lt;br /&gt;Arguments between [ and ] are optional.&lt;br /&gt;You can get help message using &amp;quot;stsadm -help (operation name)&amp;quot;.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
List of operations, arguments and description
&lt;/h2&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;backupwebapp&lt;/b&gt; : backup all sites collections of a specific web application&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : web application's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-filename&lt;/b&gt; (filename) : backup's filename, backups are generated using an incremental counter added before the extension (backup.dat =&amp;gt; backup0.dat, backup1.dat, ...). You can also use some special tags that will be replaced in the filename : &lt;b&gt;%i&lt;/b&gt; replace with the incremental counter, &lt;b&gt;%u&lt;/b&gt; replace with the relative server url ( &amp;quot;/&amp;quot; is replaced by &amp;quot;_&amp;quot; character ) and &lt;b&gt;%d&lt;/b&gt; replace with the current date.&lt;/li&gt;&lt;li&gt;&lt;b&gt;[-overwrite]&lt;/b&gt; : overwrite backup's files if they exist&lt;/li&gt;&lt;li&gt;&lt;b&gt;[-generatexml]&lt;/b&gt; : generate an XML file with information about the backup operation (id, url, backup duration, ...)&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;getwebproperty&lt;/b&gt; : returns the value of a website's property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyname (propertyname)&lt;/b&gt; : website's property name&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;setwebproperty&lt;/b&gt; : set a website's property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyname (name)&lt;/b&gt; : website's property name&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyvalue (value)&lt;/b&gt; : website's property value&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;enumlistevents&lt;/b&gt; : enumerates all event receivers of a specific list&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-listname (list name)&lt;/b&gt; : list name or id&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h2&gt;
How to install these extensions
&lt;/h2&gt; &lt;br /&gt;These extensions are packaged in two ways :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;a MSI package that should be installed on your SharePoint server. Simple &amp;quot;click/next&amp;quot; operation.&lt;/li&gt;&lt;li&gt;a SharePoint Solution package that should be added and deployed using stsadm. First add it to the configuration database using this command : &amp;quot;stsadm -o addsolution -filename GatWeb.SharePoint.CustomStsadm.wsp&amp;quot;. Then deploy it using the central administration website / Operations / Solution Management. &lt;a href="http://msdn2.microsoft.com/en-us/library/aa543214.aspx" class="externalLink"&gt;More information about solutions on MSDN&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;The second way is the best, first because it's the good way to package and deploy SharePoint developments, and also because it installs files on all servers.&lt;br /&gt;Theses packages install an XML file (&lt;i&gt;stsadmcommands.gatweb.xml&lt;/i&gt;) into the &lt;i&gt;&amp;quot;C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\CONFIG&amp;quot;&lt;/i&gt; (the path may vary depending on your Windows 2003 installation and language) and a dll (&lt;i&gt;GatWeb.SharePoint.CustomStsadm.dll&lt;/i&gt;) into the &lt;i&gt;Global Assembly Cache&lt;/i&gt; (GAC).&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Source code
&lt;/h2&gt; &lt;br /&gt;Source code is provided &amp;quot;as is&amp;quot; but can help you develop your own operation. &lt;br /&gt;Source code is currently only available from the &amp;quot;Releases&amp;quot; section and will be available on the &amp;quot;Source code&amp;quot; section soon.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Future operations
&lt;/h2&gt; &lt;br /&gt;I plan to add new operations when I get time and/or when I need them for my own use. You can also request new operation through the discussion board.&lt;br /&gt; &lt;br /&gt;I currently working on three operations :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;addlistevent : add an event receiver to a list&lt;/li&gt;&lt;li&gt;deletelistevent : delete an event receiver from a list&lt;/li&gt;&lt;li&gt;restorewebapp : restore one or all sites' collections using the generated XML file of &amp;quot;backupwebapp&amp;quot; operation&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h2&gt;
Governance &amp;amp; manageability
&lt;/h2&gt; &lt;br /&gt;Look at this project managed by Joel Oleson on Codeplex for others tools and articles :&lt;br /&gt;&lt;a href="http://www.codeplex.com/governance" class="externalLink"&gt;http://www.codeplex.com/governance&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
About the author
&lt;/h2&gt;SharePoint Inspector is written by Gaetan Bouveret. He currently works at Winwise &lt;a href="http://www.winwise.fr" class="externalLink"&gt;http://www.winwise.fr&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; a french Microsoft Gold Partner.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
My CodePlex projects
&lt;/h2&gt;&lt;a href="http://www.codeplex.com/spi" class="externalLink"&gt;SharePoint Inspector&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; : SharePoint Inspector is a free tool to browse your SharePoint 2007 farm (objects like web applications, sites collections, sites, lists, ...)&lt;br /&gt;&lt;a href="http://www.codeplex.com/speventsmanager" class="externalLink"&gt;SharePoint Events Manager&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; : This simple feature enables management of events on lists and document libraries through a new item on list settings menu&lt;br /&gt;
&lt;/div&gt;</description><author>GatWeb</author><pubDate>Thu, 21 Jun 2007 08:37:23 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070621083723A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/gatwebstsadm/Wiki/View.aspx?title=Home&amp;version=13</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Welcome to the &amp;quot;GatWeb - Extensions for Stsadm&amp;quot; project
&lt;/h2&gt; &lt;br /&gt;This project aims to add new operations for the stsadm.exe utility for SharePoint 2007. Microsoft makes this tool extensible, so developers can add easily new functionnalities.&lt;br /&gt; &lt;br /&gt;Stsadm is a good way to script actions against SharePoint like backup of site collections or to help SharePoint administrators manage their platform.&lt;br /&gt; &lt;br /&gt;Please do not install in production without first testing, and validating your own ability to support this code as this is provided &amp;quot;as is.&amp;quot;&lt;br /&gt; &lt;br /&gt;Support will be on an as is, please use the &amp;quot;Issue Tracker&amp;quot; to add bugs reports, and also the discussion board as a wish list for new features or general questions about these extensions.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Pre requisites
&lt;/h2&gt; &lt;br /&gt;You must have :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;.NET Framework 3.0&lt;/li&gt;&lt;li&gt;Windows SharePoint Services 3.0 (WSS 3.0) or Microsoft Office SharePoint Server 2007 (MOSS 2007)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;It must be run on a SharePoint server.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
How to use stsadm
&lt;/h2&gt; &lt;br /&gt;stsadm -o (operation name) [-argumentname argumentvalue]&lt;br /&gt; &lt;br /&gt;Arguments between [ and ] are optional.&lt;br /&gt;You can get help message using &amp;quot;stsadm -help (operation name)&amp;quot;.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
List of operations, arguments and description
&lt;/h2&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;backupwebapp&lt;/b&gt; : backup all sites collections of a specific web application&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : web application's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-filename&lt;/b&gt; (filename) : backup's filename, backups are generated using an incremental counter added before the extension (backup.dat =&amp;gt; backup0.dat, backup1.dat, ...). You can also use some special tags that will be replaced in the filename : &lt;b&gt;%i&lt;/b&gt; replace with the incremental counter, &lt;b&gt;%u&lt;/b&gt; replace with the relative server url ( &amp;quot;/&amp;quot; is replaced by &amp;quot;_&amp;quot; character ) and &lt;b&gt;%d&lt;/b&gt; replace with the current date.&lt;/li&gt;&lt;li&gt;&lt;b&gt;[-overwrite]&lt;/b&gt; : overwrite backup's files if they exist&lt;/li&gt;&lt;li&gt;&lt;b&gt;[-generatexml]&lt;/b&gt; : generate an XML file with information about the backup operation (id, url, backup duration, ...)&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;getwebproperty&lt;/b&gt; : returns the value of a website's property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyname (propertyname)&lt;/b&gt; : website's property name&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;setwebproperty&lt;/b&gt; : set a website's property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyname (name)&lt;/b&gt; : website's property name&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyvalue (value)&lt;/b&gt; : website's property value&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;enumlistevents&lt;/b&gt; : enumerates all event receivers of a specific list&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-listname (list name)&lt;/b&gt; : list name or id&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h2&gt;
How to install these extensions
&lt;/h2&gt; &lt;br /&gt;These extensions are packaged in two ways :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;a MSI package that should be installed on your SharePoint server. Simple &amp;quot;click/next&amp;quot; operation.&lt;/li&gt;&lt;li&gt;a SharePoint Solution package that should be added and deployed using stsadm. First add it to the configuration database using this command : &amp;quot;stsadm -o addsolution -filename GatWeb.SharePoint.CustomStsadm.wsp&amp;quot;. Then deploy it using the central administration website / Operations / Solution Management. &lt;a href="http://msdn2.microsoft.com/en-us/library/aa543214.aspx" class="externalLink"&gt;More information about solutions on MSDN&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;The second way is the best, first because it's the good way to package and deploy SharePoint developments, and also because it installs files on all servers.&lt;br /&gt;Theses packages install an XML file (&lt;i&gt;stsadmcommands.gatweb.xml&lt;/i&gt;) into the &lt;i&gt;&amp;quot;C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\CONFIG&amp;quot;&lt;/i&gt; (the path may vary depending on your Windows 2003 installation and language) and a dll (&lt;i&gt;GatWeb.SharePoint.CustomStsadm.dll&lt;/i&gt;) into the &lt;i&gt;Global Assembly Cache&lt;/i&gt; (GAC).&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Source code
&lt;/h2&gt; &lt;br /&gt;Source code is provided &amp;quot;as is&amp;quot; but can help you develop your own operation. &lt;br /&gt;Source code is currently only available from the &amp;quot;Releases&amp;quot; section and will be available on the &amp;quot;Source code&amp;quot; section soon.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Future operations
&lt;/h2&gt; &lt;br /&gt;I plan to add new operations when I get time and/or when I need them for my own use. You can also request new operation through the discussion board.&lt;br /&gt; &lt;br /&gt;I currently working on three operations :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;addlistevent : add an event receiver to a list&lt;/li&gt;&lt;li&gt;deletelistevent : delete an event receiver from a list&lt;/li&gt;&lt;li&gt;restorewebapp : restore one or all sites' collections using the generated XML file of &amp;quot;backupwebapp&amp;quot; operation&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h2&gt;
Governance &amp;amp; manageability
&lt;/h2&gt; &lt;br /&gt;Look at this project managed by Joel Oleson on Codeplex for others tools and articles :&lt;br /&gt;&lt;a href="http://www.codeplex.com/governance" class="externalLink"&gt;http://www.codeplex.com/governance&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>GatWeb</author><pubDate>Fri, 01 Jun 2007 07:37:11 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070601073711A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/gatwebstsadm/Wiki/View.aspx?title=Home&amp;version=12</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Welcome to the &amp;quot;GatWeb - Extensions for Stsadm&amp;quot; project
&lt;/h2&gt; &lt;br /&gt;This project aims to add new operations for the stsadm.exe utility for SharePoint 2007. Microsoft makes this tool extensible, so developers can add easily new functionnalities.&lt;br /&gt; &lt;br /&gt;Stsadm is a good way to script actions against SharePoint like backup of site collections or to help SharePoint administrators manage their platform.&lt;br /&gt; &lt;br /&gt;Please do not install in production without first testing, and validating your own ability to support this code as this is provided &amp;quot;as is.&amp;quot;&lt;br /&gt; &lt;br /&gt;Support will be on an as is, please use the &amp;quot;Issue Tracker&amp;quot; to add bugs reports, and also the discussion board as a wish list for new features or general questions about these extensions.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Pre requisites
&lt;/h2&gt; &lt;br /&gt;You must have :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;.NET Framework 3.0&lt;/li&gt;&lt;li&gt;Windows SharePoint Services 3.0 (WSS 3.0) or Microsoft Office SharePoint Server 2007 (MOSS 2007)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;It must be run on a SharePoint server.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
How to use stsadm
&lt;/h2&gt; &lt;br /&gt;stsadm -o (operation name) [-argumentname argumentvalue]&lt;br /&gt; &lt;br /&gt;Arguments between [ and ] are optional.&lt;br /&gt;You can get help message using &amp;quot;stsadm -help (operation name)&amp;quot;.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
List of operations, arguments and description
&lt;/h2&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;backupwebapp&lt;/b&gt; : backup all sites collections of a specific web application&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : web application's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-filename&lt;/b&gt; (filename) : backup's filename, backups are generated using an incremental counter added before the extension (backup.dat =&amp;gt; backup0.dat, backup1.dat, ...). You can also use some special tags that will be replaced in the filename : &lt;b&gt;%i&lt;/b&gt; replace with the incremental counter, &lt;b&gt;%u&lt;/b&gt; replace with the relative server url ( &amp;quot;/&amp;quot; is replaced by &amp;quot;_&amp;quot; character ) and &lt;b&gt;%d&lt;/b&gt; replace with the current date.&lt;/li&gt;&lt;li&gt;&lt;b&gt;[-overwrite]&lt;/b&gt; : overwrite backup's files if they exist&lt;/li&gt;&lt;li&gt;&lt;b&gt;[-generatexml]&lt;/b&gt; : generate an XML file with information about the backup operation (id, url, backup duration, ...)&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;getwebproperty&lt;/b&gt; : returns the value of a website's property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyname (propertyname)&lt;/b&gt; : website's property name&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;setwebproperty&lt;/b&gt; : set a website's property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyname (name)&lt;/b&gt; : website's property name&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyvalue (value)&lt;/b&gt; : website's property value&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;enumlistevents&lt;/b&gt; : enumerates all event receivers of a specific list&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-listname (list name)&lt;/b&gt; : list name or id&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h2&gt;
How to install these extensions
&lt;/h2&gt; &lt;br /&gt;These extensions are packaged in two ways :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;a MSI package that should be installed on your SharePoint server. Simple &amp;quot;click/next&amp;quot; operation.&lt;/li&gt;&lt;li&gt;a SharePoint Solution package that should be added and deployed using stsadm. First add it to the configuration database using this command : &amp;quot;stsadm -o addsolution -filename GatWeb.SharePoint.CustomStsadm.wsp&amp;quot;. Then deploy it using the central administration website / Operations / Solution Management. &lt;a href="http://msdn2.microsoft.com/en-us/library/aa543214.aspx" class="externalLink"&gt;More information about solutions on MSDN&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;The second way is the best, first because it's the good way to package and deploy SharePoint developments, and also because it installs files on all servers.&lt;br /&gt;Theses packages install an XML file (&lt;i&gt;stsadmcommands.gatweb.xml&lt;/i&gt;) into the &lt;i&gt;&amp;quot;C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\CONFIG&amp;quot;&lt;/i&gt; (the path may vary depending on your Windows 2003 installation and language) and a dll (&lt;i&gt;GatWeb.SharePoint.CustomStsadm.dll&lt;/i&gt;) into the &lt;i&gt;Global Assembly Cache&lt;/i&gt; (GAC).&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Source code
&lt;/h2&gt; &lt;br /&gt;Source code is provided &amp;quot;as is&amp;quot; but can help you develop your own operation. &lt;br /&gt;Source code is currently only available from the &amp;quot;Releases&amp;quot; section and will be available on the &amp;quot;Source code&amp;quot; section soon.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Future operations
&lt;/h2&gt; &lt;br /&gt;I plan to add new operations when I get time and/or when I need them for my own use. You can also request new operation through the discussion board.&lt;br /&gt; &lt;br /&gt;I currently working on three operations :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;addlistevent : add an event receiver to a list&lt;/li&gt;&lt;li&gt;deletelistevent : delete an event receiver from a list&lt;/li&gt;&lt;li&gt;restorewebapp : restore one or all sites' collections using the generated XML file of &amp;quot;backupwebapp&amp;quot; operation&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h2&gt;
Other governance &amp;amp; manageability tools
&lt;/h2&gt; &lt;br /&gt;&lt;a href="http://www.codeplex.com/governance" class="externalLink"&gt;http://www.codeplex.com/governance&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>GatWeb</author><pubDate>Fri, 01 Jun 2007 07:35:46 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070601073546A</guid></item><item><title>Source code checked in</title><link>http://www.codeplex.com/gatwebstsadm/SourceControl/ListDownloadableCommits.aspx</link><description>Version 1.0</description><author>GatWeb</author><pubDate>Sun, 20 May 2007 17:29:44 GMT</pubDate><guid isPermaLink="false">Source code checked in 20070520052944P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/gatwebstsadm/Wiki/View.aspx?title=Home&amp;version=11</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Welcome to the &amp;quot;GatWeb - Extensions for Stsadm&amp;quot; project
&lt;/h2&gt; &lt;br /&gt;This project aims to add new operations for the stsadm.exe utility for SharePoint 2007. Microsoft makes this tool extensible, so developers can add easily new functionnalities.&lt;br /&gt; &lt;br /&gt;Stsadm is a good way to script actions against SharePoint like backup of site collections or to help SharePoint administrators manage their platform.&lt;br /&gt; &lt;br /&gt;Please do not install in production without first testing, and validating your own ability to support this code as this is provided &amp;quot;as is.&amp;quot;&lt;br /&gt; &lt;br /&gt;Support will be on an as is, please use the &amp;quot;Issue Tracker&amp;quot; to add bugs reports, and also the discussion board as a wish list for new features or general questions about these extensions.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Pre requisites
&lt;/h2&gt; &lt;br /&gt;You must have :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;.NET Framework 3.0&lt;/li&gt;&lt;li&gt;Windows SharePoint Services 3.0 (WSS 3.0) or Microsoft Office SharePoint Server 2007 (MOSS 2007)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;It must be run on a SharePoint server.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
How to use stsadm
&lt;/h2&gt; &lt;br /&gt;stsadm -o (operation name) [-argumentname argumentvalue]&lt;br /&gt; &lt;br /&gt;Arguments between [ and ] are optional.&lt;br /&gt;You can get help message using &amp;quot;stsadm -help (operation name)&amp;quot;.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
List of operations, arguments and description
&lt;/h2&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;backupwebapp&lt;/b&gt; : backup all sites collections of a specific web application&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : web application's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-filename&lt;/b&gt; (filename) : backup's filename, backups are generated using an incremental counter added before the extension (backup.dat =&amp;gt; backup0.dat, backup1.dat, ...). You can also use some special tags that will be replaced in the filename : &lt;b&gt;%i&lt;/b&gt; replace with the incremental counter, &lt;b&gt;%u&lt;/b&gt; replace with the relative server url ( &amp;quot;/&amp;quot; is replaced by &amp;quot;_&amp;quot; character ) and &lt;b&gt;%d&lt;/b&gt; replace with the current date.&lt;/li&gt;&lt;li&gt;&lt;b&gt;[-overwrite]&lt;/b&gt; : overwrite backup's files if they exist&lt;/li&gt;&lt;li&gt;&lt;b&gt;[-generatexml]&lt;/b&gt; : generate an XML file with information about the backup operation (id, url, backup duration, ...)&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;getwebproperty&lt;/b&gt; : returns the value of a website's property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyname (propertyname)&lt;/b&gt; : website's property name&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;setwebproperty&lt;/b&gt; : set a website's property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyname (name)&lt;/b&gt; : website's property name&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyvalue (value)&lt;/b&gt; : website's property value&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;enumlistevents&lt;/b&gt; : enumerates all event receivers of a specific list&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-listname (list name)&lt;/b&gt; : list name or id&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h2&gt;
How to install these extensions
&lt;/h2&gt; &lt;br /&gt;These extensions are packaged in two ways :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;a MSI package that should be installed on your SharePoint server. Simple &amp;quot;click/next&amp;quot; operation.&lt;/li&gt;&lt;li&gt;a SharePoint Solution package that should be added and deployed using stsadm. First add it to the configuration database using this command : &amp;quot;stsadm -o addsolution -filename GatWeb.SharePoint.CustomStsadm.wsp&amp;quot;. Then deploy it using the central administration website / Operations / Solution Management. &lt;a href="http://msdn2.microsoft.com/en-us/library/aa543214.aspx" class="externalLink"&gt;More information about solutions on MSDN&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;The second way is the best, first because it's the good way to package and deploy SharePoint developments, and also because it installs files on all servers.&lt;br /&gt;Theses packages install an XML file (&lt;i&gt;stsadmcommands.gatweb.xml&lt;/i&gt;) into the &lt;i&gt;&amp;quot;C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\CONFIG&amp;quot;&lt;/i&gt; (the path may vary depending on your Windows 2003 installation and language) and a dll (&lt;i&gt;GatWeb.SharePoint.CustomStsadm.dll&lt;/i&gt;) into the &lt;i&gt;Global Assembly Cache&lt;/i&gt; (GAC).&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Source code
&lt;/h2&gt; &lt;br /&gt;Source code is provided &amp;quot;as is&amp;quot; but can help you develop your own operation. &lt;br /&gt;Source code is currently only available from the &amp;quot;Releases&amp;quot; section and will be available on the &amp;quot;Source code&amp;quot; section soon.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Future operations
&lt;/h2&gt; &lt;br /&gt;I plan to add new operations when I get time and/or when I need them for my own use. You can also request new operation through the discussion board.&lt;br /&gt; &lt;br /&gt;I currently working on three operations :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;addlistevent : add an event receiver to a list&lt;/li&gt;&lt;li&gt;deletelistevent : delete an event receiver from a list&lt;/li&gt;&lt;li&gt;restorewebapp : restore one or all sites' collections using the generated XML file of &amp;quot;backupwebapp&amp;quot; operation&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>GatWeb</author><pubDate>Tue, 08 May 2007 18:32:30 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070508063230P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/gatwebstsadm/Wiki/View.aspx?title=Home&amp;version=10</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Welcome to the &amp;quot;GatWeb - Extensions for Stsadm&amp;quot; project
&lt;/h2&gt; &lt;br /&gt;This project aims to add new operations for the stsadm.exe utility for SharePoint 2007. Microsoft makes this tool extensible, so developers can add easily new functionnalities.&lt;br /&gt; &lt;br /&gt;Stsadm is a good way to script actions against SharePoint like backup of site collections or to help SharePoint administrators manage their platform.&lt;br /&gt; &lt;br /&gt;Please do not install in production without first testing, and validating your own ability to support this code as this is provided &amp;quot;as is.&amp;quot;&lt;br /&gt; &lt;br /&gt;Support will be on an as is, please use the &amp;quot;Issue Tracker&amp;quot; to add bugs reports, and also the discussion board as a wish list for new features or general questions about these extensions.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Pre requisites
&lt;/h2&gt; &lt;br /&gt;You must have :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;.NET Framework 3.0&lt;/li&gt;&lt;li&gt;Windows SharePoint Services 3.0 (WSS 3.0) or Microsoft Office SharePoint Server 2007 (MOSS 2007)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;It must be run on a SharePoint server.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
How to use stsadm
&lt;/h2&gt; &lt;br /&gt;stsadm -o (operation name) [-argumentname argumentvalue]&lt;br /&gt; &lt;br /&gt;Arguments between [ and ] are optional.&lt;br /&gt;You can get help message using &amp;quot;stsadm -help (operation name)&amp;quot;.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
List of operations, arguments and description
&lt;/h2&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;backupwebapp&lt;/b&gt; : backup all sites collections of a specific web application&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : web application's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-filename&lt;/b&gt; (filename) : backup's filename, backups are generated using an incremental counter added before the extension (backup.dat =&amp;gt; backup0.dat, backup1.dat, ...). You can also use some special tags that will be replaced in the filename : &lt;b&gt;%i&lt;/b&gt; replace with the incremental counter, &lt;b&gt;%u&lt;/b&gt; replace with the relative server url ( &amp;quot;/&amp;quot; is replaced by &amp;quot;_&amp;quot; character ) and %d replace with the current date.&lt;/li&gt;&lt;li&gt;&lt;b&gt;[-overwrite]&lt;/b&gt; : overwrite backup's files if they exist&lt;/li&gt;&lt;li&gt;&lt;b&gt;[-generatexml]&lt;/b&gt; : generate an XML file with information about the backup operation (id, url, backup duration, ...)&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;getwebproperty&lt;/b&gt; : returns the value of a website's property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyname (propertyname)&lt;/b&gt; : website's property name&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;setwebproperty&lt;/b&gt; : set a website's property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyname (name)&lt;/b&gt; : website's property name&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyvalue (value)&lt;/b&gt; : website's property value&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;enumlistevents&lt;/b&gt; : enumerates all event receivers of a specific list&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-listname (list name)&lt;/b&gt; : list name or id&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h2&gt;
How to install these extensions
&lt;/h2&gt; &lt;br /&gt;These extensions are packaged in two ways :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;a MSI package that should be installed on your SharePoint server. Simple &amp;quot;click/next&amp;quot; operation.&lt;/li&gt;&lt;li&gt;a SharePoint Solution package that should be added and deployed using stsadm. First add it to the configuration database using this command : &amp;quot;stsadm -o addsolution -filename GatWeb.SharePoint.CustomStsadm.wsp&amp;quot;. Then deploy it using the central administration website / Operations / Solution Management. &lt;a href="http://msdn2.microsoft.com/en-us/library/aa543214.aspx" class="externalLink"&gt;More information about solutions on MSDN&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;The second way is the best, first because it's the good way to package and deploy SharePoint developments, and also because it installs files on all servers.&lt;br /&gt;Theses packages install an XML file (&lt;i&gt;stsadmcommands.gatweb.xml&lt;/i&gt;) into the &lt;i&gt;&amp;quot;C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\CONFIG&amp;quot;&lt;/i&gt; (the path may vary depending on your Windows 2003 installation and language) and a dll (&lt;i&gt;GatWeb.SharePoint.CustomStsadm.dll&lt;/i&gt;) into the &lt;i&gt;Global Assembly Cache&lt;/i&gt; (GAC).&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Source code
&lt;/h2&gt; &lt;br /&gt;Source code is provided &amp;quot;as is&amp;quot; but can help you develop your own operation. &lt;br /&gt;Source code is currently only available from the &amp;quot;Releases&amp;quot; section and will be available on the &amp;quot;Source code&amp;quot; section soon.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Future operations
&lt;/h2&gt; &lt;br /&gt;I plan to add new operations when I get time and/or when I need them for my own use. You can also request new operation through the discussion board.&lt;br /&gt; &lt;br /&gt;I currently working on three operations :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;addlistevent : add an event receiver to a list&lt;/li&gt;&lt;li&gt;deletelistevent : delete an event receiver from a list&lt;/li&gt;&lt;li&gt;restorewebapp : restore one or all sites' collections using the generated XML file of &amp;quot;backupwebapp&amp;quot; operation&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>GatWeb</author><pubDate>Tue, 08 May 2007 18:32:04 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070508063204P</guid></item><item><title>UPDATED RELEASE: GatWeb StsAdm Extensions (1.0) (mai 08, 2007)</title><link>http://www.codeplex.com/gatwebstsadm/Release/ProjectReleases.aspx?ReleaseId=4033</link><description>Extensions for "stsadm.exe". Please look at the home page for available operation and general information.

There are two packages : 
 * As a MSI
 * As a Solution Package (WSP)

You can also download the source code (Zip file)</description><author></author><pubDate>Tue, 08 May 2007 18:22:42 GMT</pubDate><guid isPermaLink="false">UPDATED RELEASE: GatWeb StsAdm Extensions (1.0) (mai 08, 2007) 20070508062242P</guid></item><item><title>RELEASED: GatWeb StsAdm Extensions (1.0) (May 08, 2007)</title><link>http://www.codeplex.com/gatwebstsadm/Release/ProjectReleases.aspx?ReleaseId=4033</link><description>Extensions for "stsadm.exe". Please look at the home page for available operation and general information.

There are two packages : 
 * As a MSI
 * As a Solution Package (WSP)

You can also download the source code (Zip file)</description><author></author><pubDate>Tue, 08 May 2007 18:22:42 GMT</pubDate><guid isPermaLink="false">RELEASED: GatWeb StsAdm Extensions (1.0) (May 08, 2007) 20070508062242P</guid></item><item><title>UPDATED RELEASE: GatWeb StsAdm Extensions (1.0) (mai 08, 2007)</title><link>http://www.codeplex.com/gatwebstsadm/Release/ProjectReleases.aspx?ReleaseId=4033</link><description>Extensions for "stsadm.exe". Please look at the home page for available operation and general information.</description><author></author><pubDate>Tue, 08 May 2007 18:21:39 GMT</pubDate><guid isPermaLink="false">UPDATED RELEASE: GatWeb StsAdm Extensions (1.0) (mai 08, 2007) 20070508062139P</guid></item><item><title>CREATED RELEASE: GatWeb StsAdm Extensions (MSI) (mai 08, 2007)</title><link>http://www.codeplex.com/gatwebstsadm/Release/ProjectReleases.aspx?ReleaseId=4033</link><description>MSI package that installs new operations for "stsadm.exe". It must be run on a SharePoint server.</description><author></author><pubDate>Tue, 08 May 2007 18:17:55 GMT</pubDate><guid isPermaLink="false">CREATED RELEASE: GatWeb StsAdm Extensions (MSI) (mai 08, 2007) 20070508061755P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/gatwebstsadm/Wiki/View.aspx?title=Home&amp;version=9</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Welcome to the &amp;quot;GatWeb - Extensions for Stsadm&amp;quot; project
&lt;/h2&gt; &lt;br /&gt;This project aims to add new operations for the stsadm.exe utility for SharePoint 2007. Microsoft makes this tool extensible, so developers can add easily new functionnalities.&lt;br /&gt; &lt;br /&gt;Stsadm is a good way to script actions against SharePoint like backup of site collections or to help SharePoint administrators manage their platform.&lt;br /&gt; &lt;br /&gt;Please do not install in production without first testing, and validating your own ability to support this code as this is provided &amp;quot;as is.&amp;quot;&lt;br /&gt; &lt;br /&gt;Support will be on an as is, please use the &amp;quot;Issue Tracker&amp;quot; to add bugs reports, and also the discussion board as a wish list for new features or general questions about these extensions.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Pre requisites
&lt;/h2&gt; &lt;br /&gt;You must have :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;.NET Framework 3.0&lt;/li&gt;&lt;li&gt;Windows SharePoint Services 3.0 (WSS 3.0) or Microsoft Office SharePoint Server 2007 (MOSS 2007)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h2&gt;
How to use stsadm
&lt;/h2&gt; &lt;br /&gt;stsadm -o (operation name) [-argumentname argumentvalue]&lt;br /&gt; &lt;br /&gt;Arguments between [ and ] are optional.&lt;br /&gt;You can get help message using &amp;quot;stsadm -help (operation name)&amp;quot;.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
List of operations, arguments and description
&lt;/h2&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;backupwebapp&lt;/b&gt; : backup all sites collections of a specific web application&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : web application's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-filename&lt;/b&gt; (filename) : backup's filename, backups are generated using an incremental counter added before the extension (backup.dat =&amp;gt; backup0.dat, backup1.dat, ...)&lt;/li&gt;&lt;li&gt;&lt;b&gt;[-overwrite]&lt;/b&gt; : overwrite backup's files if they exist&lt;/li&gt;&lt;li&gt;&lt;b&gt;[-generatexml]&lt;/b&gt; : generate an XML file with information about the backup operation&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;getwebproperty&lt;/b&gt; : returns the value of a website's property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyname (propertyname)&lt;/b&gt; : website's property name&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;setwebproperty&lt;/b&gt; : set a website's property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyname (name)&lt;/b&gt; : website's property name&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyvalue (value)&lt;/b&gt; : website's property value&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;enumlistevents&lt;/b&gt; : enumerates all event receivers of a specific list&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-listname (list name)&lt;/b&gt; : list name or id&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h2&gt;
How to install these extensions
&lt;/h2&gt; &lt;br /&gt;These extensions are packaged in two ways :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;a MSI package that should be installed on your SharePoint server. Simple &amp;quot;click/next&amp;quot; operation.&lt;/li&gt;&lt;li&gt;a SharePoint Solution package that should be added and deployed using stsadm. First add it to the configuration database using this command : &amp;quot;stsadm -o addsolution -filename GatWeb.SharePoint.CustomStsadm.wsp&amp;quot;. Then deploy it using the central administration website / Operations / Solution Management. &lt;a href="http://msdn2.microsoft.com/en-us/library/aa543214.aspx" class="externalLink"&gt;More information about solutions on MSDN&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;The second way is the best, first because it's the good way to package and deploy SharePoint developments, and also because it installs files on all servers.&lt;br /&gt;Theses packages install an XML file (&lt;i&gt;stsadmcommands.gatweb.xml&lt;/i&gt;) into the &lt;i&gt;&amp;quot;C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\CONFIG&amp;quot;&lt;/i&gt; (the path may vary depending on your Windows 2003 installation and language) and a dll (&lt;i&gt;GatWeb.SharePoint.CustomStsadm.dll&lt;/i&gt;) into the &lt;i&gt;Global Assembly Cache&lt;/i&gt; (GAC).&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Source code
&lt;/h2&gt; &lt;br /&gt;Source code is provided &amp;quot;as is&amp;quot; but can help you develop your own operation. &lt;br /&gt;Source code is currently only available from the &amp;quot;Releases&amp;quot; section and will be available on the &amp;quot;Source code&amp;quot; section soon.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Future operations
&lt;/h2&gt; &lt;br /&gt;I plan to add new operations when I get time and/or when I need them for my own use. You can also request new operation through the discussion board.&lt;br /&gt; &lt;br /&gt;I currently working on three operations :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;addlistevent : add an event receiver to a list&lt;/li&gt;&lt;li&gt;deletelistevent : delete an event receiver from a list&lt;/li&gt;&lt;li&gt;restorewebapp : restore one or all sites' collections using the generated XML file of &amp;quot;backupwebapp&amp;quot; operation&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>GatWeb</author><pubDate>Tue, 08 May 2007 18:13:19 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070508061319P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/gatwebstsadm/Wiki/View.aspx?title=Home&amp;version=8</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Welcome to the &amp;quot;GatWeb - Extensions for Stsadm&amp;quot; project
&lt;/h2&gt; &lt;br /&gt;This project aims to add new operations for the stsadm.exe utility for SharePoint 2007. Microsoft makes this tool extensible, so developers can add easily new functionnalities.&lt;br /&gt; &lt;br /&gt;Stsadm is a good way to script actions against SharePoint like backup of site collections or to help SharePoint administrators manage their platform.&lt;br /&gt; &lt;br /&gt;Please do not install in production without first testing, and validating your own ability to support this code as this is provided &amp;quot;as is.&amp;quot;&lt;br /&gt; &lt;br /&gt;Support will be on an as is, please use the &amp;quot;Issue Tracker&amp;quot; to add bugs reports, and also the discussion board as a wish list for new features or general questions about these extensions.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Pre requisites
&lt;/h2&gt; &lt;br /&gt;You must have :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;.NET Framework 3.0&lt;/li&gt;&lt;li&gt;Windows SharePoint Services 3.0 (WSS 3.0) or Microsoft Office SharePoint Server 2007 (MOSS 2007)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h2&gt;
How to use stsadm
&lt;/h2&gt; &lt;br /&gt;stsadm -o (operation name) [-argumentname argumentvalue]&lt;br /&gt; &lt;br /&gt;Arguments between [ and ] are optional.&lt;br /&gt;You can get help message using &amp;quot;stsadm -help (operation name)&amp;quot;.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
List of operations, arguments and description
&lt;/h2&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;backupwebapp&lt;/b&gt; : backup all sites collections of a specific web application&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : web application's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-filename&lt;/b&gt; (filename) : backup's filename, backups are generated using an incremental counter added before the extension (backup.dat =&amp;gt; backup0.dat, backup1.dat, ...)&lt;/li&gt;&lt;li&gt;&lt;b&gt;[-overwrite]&lt;/b&gt; : overwrite backup's files if they exist&lt;/li&gt;&lt;li&gt;&lt;b&gt;[-generatexml]&lt;/b&gt; : generate an XML file with information about the backup operation&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;getwebproperty&lt;/b&gt; : returns the value of a website's property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyname (propertyname)&lt;/b&gt; : website's property name&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;setwebproperty&lt;/b&gt; : set a website's property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyname (name)&lt;/b&gt; : website's property name&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyvalue (value)&lt;/b&gt; : website's property value&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;enumlistevents&lt;/b&gt; : enumerates all event receivers of a specific list&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-listname (list name)&lt;/b&gt; : list name or id&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h2&gt;
How to install these extensions
&lt;/h2&gt; &lt;br /&gt;These extensions are packaged in two ways :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;a MSI package that should be installed on your SharePoint server. Simple &amp;quot;click/next&amp;quot; operation.&lt;/li&gt;&lt;li&gt;a SharePoint Solution package that should be added and deployed using stsadm. First add it to the configuration database using this command : &amp;quot;stsadm -o addsolution -filename GatWeb.SharePoint.CustomStsadm.wsp&amp;quot;. Then deploy it using the central administration website / Operations / Solution Management. &lt;a href="http://msdn2.microsoft.com/en-us/library/aa543214.aspx" class="externalLink"&gt;More information about solutions on MSDN&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;The second way is the best, first because it's the good way to package and deploy SharePoint developments, and also because it installs files on all servers.&lt;br /&gt;Theses packages install an XML file (&lt;i&gt;stsadmcommands.gatweb.xml&lt;/i&gt;) into the &lt;i&gt;&amp;quot;C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\CONFIG&amp;quot;&lt;/i&gt; (the path may vary depending on your Windows 2003 installation and language) and a dll (&lt;i&gt;GatWeb.SharePoint.CustomStsadm.dll&lt;/i&gt;) into the &lt;i&gt;Global Assembly Cache&lt;/i&gt; (GAC).&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Future operations
&lt;/h2&gt; &lt;br /&gt;I plan to add new operations when I get time and/or when I need them for my own use. You can also request new operation through the discussion board.&lt;br /&gt; &lt;br /&gt;I currently working on three operations :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;addlistevent : add an event receiver to a list&lt;/li&gt;&lt;li&gt;deletelistevent : delete an event receiver from a list&lt;/li&gt;&lt;li&gt;restorewebapp : restore one or all sites' collections using the generated XML file of &amp;quot;backupwebapp&amp;quot; operation&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>GatWeb</author><pubDate>Tue, 08 May 2007 18:10:33 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070508061033P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/gatwebstsadm/Wiki/View.aspx?title=Home&amp;version=7</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Welcome to the &amp;quot;GatWeb - Extensions for Stsadm&amp;quot; project
&lt;/h2&gt; &lt;br /&gt;This project aims to add new operations for the stsadm.exe utility for SharePoint 2007. Microsoft makes this tool extensible, so developers can add easily new functionnalities.&lt;br /&gt; &lt;br /&gt;Stsadm is a good way to script actions against SharePoint like backup of site collections or to help SharePoint administrators manage their platform.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Pre requisites
&lt;/h2&gt; &lt;br /&gt;You must have :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;.NET Framework 3.0&lt;/li&gt;&lt;li&gt;Windows SharePoint Services 3.0 (WSS 3.0) or Microsoft Office SharePoint Server 2007 (MOSS 2007)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h2&gt;
How to use stsadm
&lt;/h2&gt; &lt;br /&gt;stsadm -o (operation name) [-argumentname argumentvalue]&lt;br /&gt; &lt;br /&gt;Arguments between [ and ] are optional.&lt;br /&gt;You can get help message using &amp;quot;stsadm -help (operation name)&amp;quot;.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
List of operations, arguments and description
&lt;/h2&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;backupwebapp&lt;/b&gt; : backup all sites collections of a specific web application&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : web application's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-filename&lt;/b&gt; (filename) : backup's filename, backups are generated using an incremental counter added before the extension (backup.dat =&amp;gt; backup0.dat, backup1.dat, ...)&lt;/li&gt;&lt;li&gt;&lt;b&gt;[-overwrite]&lt;/b&gt; : overwrite backup's files if they exist&lt;/li&gt;&lt;li&gt;&lt;b&gt;[-generatexml]&lt;/b&gt; : generate an XML file with information about the backup operation&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;getwebproperty&lt;/b&gt; : returns the value of a website's property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyname (propertyname)&lt;/b&gt; : website's property name&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;setwebproperty&lt;/b&gt; : set a website's property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyname (name)&lt;/b&gt; : website's property name&lt;/li&gt;&lt;li&gt;&lt;b&gt;-propertyvalue (value)&lt;/b&gt; : website's property value&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;enumlistevents&lt;/b&gt; : enumerates all event receivers of a specific list&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;-url (url)&lt;/b&gt; : website's url&lt;/li&gt;&lt;li&gt;&lt;b&gt;-listname (list name)&lt;/b&gt; : list name or id&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h2&gt;
How to install these extensions
&lt;/h2&gt; &lt;br /&gt;These extensions are packaged in two ways :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;a MSI package that should be installed on your SharePoint server. Simple &amp;quot;click/next&amp;quot; operation.&lt;/li&gt;&lt;li&gt;a SharePoint Solution package that should be added and deployed using stsadm. First add it to the configuration database using this command : &amp;quot;stsadm -o addsolution -filename GatWeb.SharePoint.CustomStsadm.wsp&amp;quot;. Then deploy it using the central administration website / Operations / Solution Management. &lt;a href="http://msdn2.microsoft.com/en-us/library/aa543214.aspx" class="externalLink"&gt;More information about solutions on MSDN&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;The second way is the best, first because it's the good way to package and deploy SharePoint developments, and also because it installs files on all servers.&lt;br /&gt;Theses packages install an XML file (&lt;i&gt;stsadmcommands.gatweb.xml&lt;/i&gt;) into the &lt;i&gt;&amp;quot;C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\CONFIG&amp;quot;&lt;/i&gt; (the path may vary depending on your Windows 2003 installation and language) and a dll (&lt;i&gt;GatWeb.SharePoint.CustomStsadm.dll&lt;/i&gt;) into the &lt;i&gt;Global Assembly Cache&lt;/i&gt; (GAC).&lt;br /&gt;
&lt;/div&gt;</description><author>GatWeb</author><pubDate>Tue, 08 May 2007 18:03:18 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070508060318P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/gatwebstsadm/Wiki/View.aspx?title=Home&amp;version=6</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Welcome to the &amp;quot;GatWeb - Extensions for Stsadm&amp;quot; project
&lt;/h2&gt; &lt;br /&gt;This project aims to add new operations for the stsadm.exe utility for SharePoint 2007. Microsoft makes this tool extensible, so developers can add easily new functionnalities.&lt;br /&gt; &lt;br /&gt;Stsadm is a good way to script actions against SharePoint like backup of site collections or to help SharePoint administrators manage their platform.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Pre requisites
&lt;/h2&gt; &lt;br /&gt;You must have :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;.NET Framework 3.0&lt;/li&gt;&lt;li&gt;Windows SharePoint Services 3.0 (WSS 3.0) or Microsoft Office SharePoint Server 2007 (MOSS 2007)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h2&gt;
How to use stsadm
&lt;/h2&gt; &lt;br /&gt;stsadm -o (operation name) [-argumentname argumentvalue]&lt;br /&gt; &lt;br /&gt;Arguments between [ and ] are optional.&lt;br /&gt;You can get help message using &amp;quot;stsadm -help (operation name)&amp;quot;.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
List of operations, arguments and description
&lt;/h2&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;backupwebapp : backup all sites collections of a specific web application&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;-url (url) : web application's url&lt;/li&gt;&lt;li&gt;-filename (filename) : backup's filename, backups are generated using an incremental counter added before the extension (backup.dat =&amp;gt; backup0.dat, backup1.dat, ...)&lt;/li&gt;&lt;li&gt;[-overwrite] : overwrite backup's files if they exist&lt;/li&gt;&lt;li&gt;[-generatexml] : generate an XML file with information about the backup operation&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;getwebproperty : returns the value of a website's property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;-url (url) : website's url&lt;/li&gt;&lt;li&gt;-propertyname (propertyname) : website's property name&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;setwebproperty : set a website's property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;-url (url) : website's url&lt;/li&gt;&lt;li&gt;-propertyname (name) : website's property name&lt;/li&gt;&lt;li&gt;-propertyvalue (value) : website's property value&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;enumlistevents : enumerates all event receivers of a specific list&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;-url (url) : website's url&lt;/li&gt;&lt;li&gt;-listname : list name or id&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h2&gt;
How to install these extensions
&lt;/h2&gt; &lt;br /&gt;These extensions are packaged in two ways :&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;a MSI package that should be installed on your SharePoint server. Simple &amp;quot;click/next&amp;quot; operation.&lt;/li&gt;&lt;li&gt;a SharePoint Solution package that should be added and deployed using stsadm. First add it to the configuration database using this command : &amp;quot;stsadm -o addsolution -filename GatWeb.SharePoint.CustomStsadm.wsp&amp;quot;. Then deploy it using the central administration website / Operations / Solution Management. &lt;a href="http://msdn2.microsoft.com/en-us/library/aa543214.aspx" class="externalLink"&gt;More information about solutions on MSDN&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;The second way is the best, first because it's the good way to package and deploy SharePoint developments, and also because it installs files on all servers.&lt;br /&gt;Theses packages install an XML file (stsadmcommands.gatweb.xml) into the &amp;quot;C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\CONFIG&amp;quot; (the path may vary depending on your Windows 2003 installation and language) and a dll (GatWeb.SharePoint.CustomStsadm.dll) into the Global Assembly Cache (GAC).&lt;br /&gt;
&lt;/div&gt;</description><author>GatWeb</author><pubDate>Tue, 08 May 2007 17:59:49 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070508055949P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/gatwebstsadm/Wiki/View.aspx?title=Home&amp;version=5</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Welcome to the &amp;quot;GatWeb - Extensions for Stsadm&amp;quot; project
&lt;/h2&gt; &lt;br /&gt;This project aims to add new operations for the stsadm.exe utility for SharePoint 2007. Microsoft makes this tool extensible, so developers can add easily new functionnalities.&lt;br /&gt; &lt;br /&gt;Stsadm is a good way to script actions against SharePoint like backup of site collections or to help SharePoint administrators manage their platform.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
How to use stsadm
&lt;/h2&gt; &lt;br /&gt;stsadm -o (operation name) [-argumentname argumentvalue]&lt;br /&gt; &lt;br /&gt;Arguments between [ and ] are optional.&lt;br /&gt;You can get help message using &amp;quot;stsadm -help (operation name)&amp;quot;.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
List of operations, arguments and description
&lt;/h2&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;backupwebapp : backup all sites collections of a specific web application&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;-url (url) : web application's url&lt;/li&gt;&lt;li&gt;-filename (filename) : backup's filename, backups are generated using an incremental counter added before the extension (backup.dat =&amp;gt; backup0.dat, backup1.dat, ...)&lt;/li&gt;&lt;li&gt;[-overwrite] : overwrite backup's files if they exist&lt;/li&gt;&lt;li&gt;[-generatexml] : generate an XML file with information about the backup operation&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;getwebproperty : returns the value of a website's property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;-url (url) : website's url&lt;/li&gt;&lt;li&gt;-propertyname (propertyname) : website's property name&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;setwebproperty : set a website's property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;-url (url) : website's url&lt;/li&gt;&lt;li&gt;-propertyname (name) : website's property name&lt;/li&gt;&lt;li&gt;-propertyvalue (value) : website's property value&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;enumlistevents : enumerates all event receivers of a specific list&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;-url (url) : website's url&lt;/li&gt;&lt;li&gt;-listname : list name or id&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>GatWeb</author><pubDate>Tue, 08 May 2007 17:39:50 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070508053950P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/gatwebstsadm/Wiki/View.aspx?title=Home&amp;version=4</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Welcome to the &amp;quot;GatWeb - Extensions for Stsadm&amp;quot; project
&lt;/h2&gt; &lt;br /&gt;This project aims to add new operations for the stsadm.exe utility for SharePoint 2007. Microsoft makes this tool extensible, so developers can add easily new functionnalities.&lt;br /&gt; &lt;br /&gt;Stsadm is a good way to script actions against SharePoint like backup of site collections or to help SharePoint administrators manage their platform.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
How to use stsadm
&lt;/h2&gt; &lt;br /&gt;stsadm -o (operation name) [-argumentname argumentvalue]&lt;br /&gt; &lt;br /&gt;Arguments between [ and ] are optional.&lt;br /&gt;You can get help message using &amp;quot;stsadm -help (operation name)&amp;quot;.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
List of operations, arguments and description
&lt;/h2&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;backupwebapp : backup all sites collections of a specific web application&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;-url (url) : web application's url&lt;/li&gt;&lt;li&gt;-filename (filename) : backup's filename, backups are generated using an incremental counter added before the extension (backup.dat =&amp;gt; backup0.dat, backup1.dat, ...)&lt;/li&gt;&lt;li&gt;[-overwrite] : overwrite backup's files if they exist&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;getwebproperty : get a web property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;-url (url) : website's url&lt;/li&gt;&lt;li&gt;-propertyname (propertyname) : website's property name&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;setwebproperty : set a web property&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;-url (url) : website's url&lt;/li&gt;&lt;li&gt;-propertyname (name) : website's property name&lt;/li&gt;&lt;li&gt;-propertyvalue (value) : website's property value&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>GatWeb</author><pubDate>Wed, 18 Apr 2007 21:53:43 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070418095343P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/gatwebstsadm/Wiki/View.aspx?title=Home&amp;version=3</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Welcome to the &amp;quot;GatWeb - Extensions for Stsadm&amp;quot; project
&lt;/h2&gt; &lt;br /&gt;This project aims to add new operations for the stsadm.exe utility for SharePoint 2007. Microsoft makes this tool extensible, so developers can add easily new functionnalities.&lt;br /&gt; &lt;br /&gt;Stsadm is a good way to script actions against SharePoint like backup of site collections or to help SharePoint administrators manage their platform.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
How to use stsadm
&lt;/h2&gt; &lt;br /&gt;stsadm -o (operation name) [-argumentname argumentvalue]&lt;br /&gt; &lt;br /&gt;Arguments between [ and ] are optional.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
List of operations, arguments and description
&lt;/h2&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;backupwebapp : backup all sites collections of a specific web application&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;-url (web app's url) : web application's url&lt;/li&gt;&lt;li&gt;-filename (filename) : backup's filename, backups are generated using an incremental counter added before the extension (backup.dat =&amp;gt; backup0.dat, backup1.dat, ...)&lt;/li&gt;&lt;li&gt;[-overwrite] : overwrite backup's files if they exist&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;
&lt;/div&gt;</description><author>GatWeb</author><pubDate>Wed, 18 Apr 2007 21:50:11 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070418095011P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/gatwebstsadm/Wiki/View.aspx?title=Home&amp;version=2</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Welcome to the &amp;quot;GatWeb - Extensions for Stsadm&amp;quot; project
&lt;/h2&gt; &lt;br /&gt;This project aims to add new operations for the stsadm.exe utility for SharePoint 2007. Microsoft makes this tool extensible, so developers can add easily new functionnalities.&lt;br /&gt; &lt;br /&gt;Stsadm is a good way to script actions against SharePoint like backup of site collections or to help SharePoint administrators manage their platform.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
How to use stsadm
&lt;/h2&gt; &lt;br /&gt;stsadm -o (operation name) \&lt;a href="http://www.codeplex.com/gatwebstsadm/Wiki/View.aspx?title=-argumentname%20argumentvalue%5c&amp;amp;referringTitle=Home"&gt;-argumentname argumentvalue\&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
List of operations, arguments and description
&lt;/h2&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;backupwebapp : backup all sites collections of a specific web application&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;-url (web app's url) : web application's url&lt;/li&gt;&lt;li&gt;-filename (filename) : backup's filename, backups are generated using an incremental counter added before the extension (backup.dat =&amp;gt; backup0.dat, backup1.dat, ...)&lt;/li&gt;&lt;li&gt;-overwrite : overwrite backup's files if they exist&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;
&lt;/div&gt;</description><author>GatWeb</author><pubDate>Wed, 18 Apr 2007 21:44:22 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070418094422P</guid></item></channel></rss>