Click here to Skip to main content
15,893,401 members
Articles / Programming Languages / XML

Custom SharePoint STSADM Commands

Rate me:
Please Sign up or sign in to vote.
4.90/5 (9 votes)
22 May 2007CPOL4 min read 67.1K   588   27  
Writing custom commands for the stsadm.exe administration tool in SharePoint.
<?xml version="1.0" encoding="utf-8" ?>
<commands>
  <command
    name="runtimerjob" 
    class="HSG.Sharepoint.STSADM.Commands.RunTimerJob,HSGSPCmds,Version=1.0.0.0,Culture=neutral,PublicKeyToken=e698ceec196245e9"
  />
  <command
    name="getjobinfo" 
    class="HSG.Sharepoint.STSADM.Commands.GetJobInfo,HSGSPCmds,Version=1.0.0.0,Culture=neutral,PublicKeyToken=e698ceec196245e9"
  />
  <command
    name="setjobschedule" 
    class="HSG.Sharepoint.STSADM.Commands.SetJobSchedule,HSGSPCmds,Version=1.0.0.0,Culture=neutral,PublicKeyToken=e698ceec196245e9"
  />
  <command
    name="getjobinfos" 
    class="HSG.Sharepoint.STSADM.Commands.GetJobInfos,HSGSPCmds,Version=1.0.0.0,Culture=neutral,PublicKeyToken=e698ceec196245e9"
  />  
</commands>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Germany Germany
I'm a .net developer for Windows Forms, Web Apps, Office and SharePoint.

Comments and Discussions