Example #1
0
        static void Main(string[] args)
        {
            // Instantiate the timer job class
            SiteCollectionScopedJob siteCollectionScopedJob = new SiteCollectionScopedJob();

            // The provided credentials need access to the site collections you want to use
            siteCollectionScopedJob.UseOffice365Authentication(User, Password);

            // In case of SharePoint on-premises use
            //siteCollectionScopedJob.UseNetworkCredentialsAuthentication(User, Password, Domain);

            // Add one or more sites to operate on
            siteCollectionScopedJob.AddSite("https://bertonline.sharepoint.com/sites/dev*");

            // Print timer job information and then call Run() on the job
            PrintJobSettingsAndRunJob(siteCollectionScopedJob);
        }
Example #2
0
        static void Main(string[] args)
        {
            // Instantiate the timer job class
            SiteCollectionScopedJob siteCollectionScopedJob = new SiteCollectionScopedJob();

            // The provided credentials need access to the site collections you want to use
            siteCollectionScopedJob.UseOffice365Authentication(User, Password);

            // In case of SharePoint on-premises use
            //siteCollectionScopedJob.UseNetworkCredentialsAuthentication(User, Password, Domain);

            // Add one or more sites to operate on
            siteCollectionScopedJob.AddSite("https://bertonline.sharepoint.com/sites/dev*");

            // Print timer job information and then call Run() on the job
            PrintJobSettingsAndRunJob(siteCollectionScopedJob);
        }