samedi 28 février 2015

Confusion on creating custom field control in SharePoint 2013

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I am very confused and Im hoping someone might be able to help.I created a custom field type and a custom field control. I followed the code from the book "Inside Microsoft SharePoint 2013". It talked about to read and write the value...


How to create new Farm in Share Point 2010 on single server?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I want to create new Farm on Share Point 2010 server. I have already one Farm on same SharePoint 2010 server and want to create new Farm with existing Farm on same server. That means I require multiple farm working on same SharePoint...


Sys.InvalidOperationException when trying to edit page in sharepoint 2010

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I added a webpart through VS2010. It is a Simple webpart containing ajax script manager,timer and update panel. what it does is it shows the current server time in a label. After i deploy it into my sharepoint site i get following error...


PowerShell script to check if MMS is connected to Web Application

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I want to check if Managed Metadata Service is connected to any Web Application by powershell script. What will be the possible script to check this?


SharePoint 2013 JavaScript CSOM: How to change the field 'PublishingPageLayout'

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I am trying to update the page layout of a wiki page using the JavaScript object model and I can't seem to get it to work.I know I need to do something like this:pageItem.set_item('PublishingPageLayout': 'url of the .aspx layout file');When I set the...


Why can't I sort the Search Results Web Part by a Managed Property?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a Search Results web part which shows items from my custom list. The custom list contains a site column called Idea Date.I've been trying for days to get this Search Results web part to sort by Idea Date (a managed property),...


After creating Managed Metadata Service using PowerShell

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have created Managed Metadata service application using PowerShell. The MMS was created and started successfully. My Question is, Will this new MMS be added as connected service to the central admin site web application by default or should i need to add...


Combining two column conditions in calculated column

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a task list which has color coding for Progress Bar and Task Status based on % Complete and Status column values. I have one more additional condition for: IF status=Blocked then whatever the % Complete value may be the Progress Bar...


Approval workflow with nintex in sharepoint server 2010?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); How to create approval workflow for sharepoint list using nintex workflow 2010 in sharepoint server 2010.workflow process...create deal - send for approval - approve / reject if approve it will close if reject it will goes to user form and recycle again to...


How can I speed up web part loading times?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a SharePoint site with a performance point dashboard which contains a number of webparts. The initial page load time is around 1s according to F12 Dev tools. After this I see spinning green wheels while the webpart content renders. This takes...


how to implement this jquery for preview

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a jQuery to display pictures as thumbnail for a document library. It works great but as soon as I add grouping to the view then the pictures do not show up as thumbnail. They show up with traditional file type icons...


SharePoint Workflows QA Environment

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); We have a 2013 SharePoint environment for a mid-sized company. I was discussing the need to develop OOTB SharePoint workflows in QA vs directly on production and we disagreed on what was best practice or practical.My take on the situation was that workflows...


SPO Content Type Inheritance and Copying Content between Lists and Sites

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); Let's imagine I got 2 sites on SPO as follows:/sites/sales/sites/projectsLet's also imagine I would have 3 content types (in content type hub) with the following inheritanceCaseOfferProjectWorkflow 1: In /sites/sales we would have 2 lists based on custom content types. One for Cases Content...


vendredi 27 février 2015

How to add custom group in list setting page?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I want to add one custom action in my custom group. I have done following for that<Elements xmlns="http://ift.tt/sQmbje"> <CustomActionGroup Id="LibrarySettings.MyGroup" Title ="My Group" Sequence="1000" Location="Microsoft.SharePoint.ListEdit"> </CustomActionGroup> <CustomAction Id="Custom.Configuration.ListCustomSettings" GroupId="LibrarySettings.MyGroup" Location="Microsoft.SharePoint.ListEdit" RequireSiteAdministrator="FALSE" Sequence="100" Title="Library Admins"> <UrlAction Url="_layouts/15/LibrarySettings.aspx?List={ListId}" /> </CustomAction></Elements>But custom group is not created...


How to prevent sharepoint login dialog when developing webparts?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); While developing sharepoint webparts, I have realized that sometimes, accessing SPContext variables prevents the webpart from being accessed anonymously and wrapping them in a SPSecurity.RunWithElevatedPrivileges() will prevent this.At other times, even this doesn't help.How do I prevent this behaviour, I don't want the...


Promoted Links Dialog Pop Up Size

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I am using Promoted Links with launch behavior = "Dialog" I manage to change the Dialog size by adding a Content Editor into my Main page with the following code .ms-dlgContent { width:1500px !important; height:1000px !important } .ms-dlgBorder { width:1500px !important; height:1000px !important...


Complete InfoPath form without InfoPath external customer

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I need to create a form that our customers will complete but not all of our customers will have InfoPath installed.I tried to use the email form but did not show the form in Outlook, instead it just displayed the xml codeMy question...


Sharepoint Online search not showing the correct title

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a content search webpart that shows the title of the file and other properties.However in some file its not using the property Title, it looks like its using the title on the first big letters from the documen itselfExample:All the documents...


How can I add the options of changing lists on one Sharepoint 2010 calendar?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a Sharepoint calendar that looks like and I need to add a sidebar with a possibly jquery dropdown to select between the the different calendar lists so they are interchangeable.


Accessing new features after upgrading a license

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I've been tasked with getting a dashboard going using Excel Web Access Web Parts. These weren't listed as an option, however, under the Business Data category. I accessed this menu through the series of clicks Edit Page->Insert->Web Part->Business Data, if that's in any...


How can I populate a List Box from a rule?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have subsets of data that I would like to use to populate the contents of a Drop-Down List Box. How do I do this? I've done it for a plain old Text Box but I do not see how to populate the...


propogate item added in announcement list in site collection to all sub sites' announcement list

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); In my site collection i have an announcement list. and in my site collection some 600+ sub sites exist. sharepoint admin uploads an announcement into this rootweb's announcement list. now is there any way i can add the same announcement -which has title,...


WCF endpoints in SharePoint web.config

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a SharePoint site that makes calls to a public web API (Melissa Data) using a WCF client. I have the endpoints configured in the web.config like so:<system.serviceModel> <bindings> <basicHttpBinding> <binding name="PropertyWSSOAPEndpoint"> <security mode="Transport" /> </binding> </basicHttpBinding> </bindings> <client> <endpoint address="http://ift.tt/1BJbAoP" binding="basicHttpBinding"...


Copy the docs/(word/excel/zipped folders) from Sharepoint document library to local folder

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have to pull (copy) the documents and folders (Zipped) stored in document library of sharepoint 2010 site into local folder using Excel VBA. I am new to VBA and have no idea how to start with this. I have gone thrown few...


how to find content type in audit logs

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have auditing enabled and have generated the content type modification log in excel format...need to figure out how to find a specific content type that was modified...any pointers?


Enable item scheduling on a publishing library via SharePoint .NET client API

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); Does anybody know how to enable item scheduling on a publishing library via code (.NET Client API)? This can be done via the Settings UI for the library in Manage Item Scheduling. However, I can't find a way to enable this using the...


Using Counting in a Sharepoint List using SP Online 2013

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); How would I create a column that would count any results after I filtered a list?So far I have tried =COUNT() but it did not work. I use a column name CostCenter


Lookup Column - Shows Some Additional Fields, But Missing Columns

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have created two related lists. The first list is keeps track of specific meetings, with the following:Name of meeting (Single Line Text)Date of meeting (Date and Time)Chair of meeting (Person)The second list keeps track of meeting actions. Among other columns, each item...


SignalR on SharePoint Farm Solution

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I am trying to create a SharePoint webpart using SignalR. At first I tried solution on MVC web site. And I moved files on SharePoint to get solution but it didn't happen. After that I research on the web again and agreed to...


PowerShell script to check if MMS is connected to Web Application

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I want to check if Managed Metadata Service is connected to any Web Application by powershell script. What will be the possible script to check this?


How do you work with the Photo Library in SharePoint 2010?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); SharePoint 2010 Photo Libraries are one of the most broken features I have found yet.It is bad enough that Microsoft Office Picture Manager 2010 MUST be installed, AND specific browser plugins from the DLL's MUST be enabled, AND the browser compatibility mode MUST...


Custom entity extraction

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I need help with custom entity extraction setting. I created an UTF-8, comma separated .csv file, script with the right dictionary (Microsoft.UserDictionaries.EntityExtraction.Custom.Word.N) and UNC path, I'm trying to create it from the right server with the proper rights, search service working properly and...


JSLink Publishing HTML field is not in ctx.CurrentItem

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have the following JSLink template for rendering items in a custom list containing a number of columns of type 'Publishing HTML'. The template is used on both the default view (AllItems.aspx) and the display form (DispForm.aspx).The ‘View’ method works as intended. The...


Cannot find an overload for "Load" and the argument count: "1"

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I am working on some utility functions to ease the administration of our O365 tenant. The thing I'm working on currently is being able to provision One Drive for Business sites for users. I have the following code that works properly so far...


How to change text encoding when inserting values inside a sharepoint list using powershell?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I'm using french words with special characters like "é" "à" etc. When I trying to insert text in my list fields using powershell, it does insert the values but the characters aren't well encoded. For exemple I have a "è" instead of having...


Create new SharePoint user using SharePoint Online Management Shell

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a *.sharepoint.com tenant provisioned through singing up for Office 365. Is there a way to create a new user for the tenant using PowerShell (for SharePoint Online)?This would normally be done manually by going to the admin panel and going through...


Sharepoint Master page Css issue

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a master page in Sharepoint 2013 when i preview that in browser I see this line added<style type="text/css"> .ui-dialog-titlebar,.ms-dlgTitle,#s4-ribbonrow { background-color:rgb(0, 113, 198) ! important; }</style>While as this is not added any where , because of this my title of all...


Filter Sharepoint 2013 Search user from results

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a farm with a two way trust with between DomainA and DomainB. I have Search service and User profile configured.In the people search results I have users from both the domains i.e. domainA\user1 DomainB\user1How do I filter the results.I checked result...


Get documents inside the folder from Shared Document using powershell

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I need to get all the documents name inside the folder from shared document using power shell.Thanks ...


How to set "ShowField" in peoplepicker using powershell

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); Does anyone know how to set "ShowField" in people picker using powershell ? For ex.x, to set the "Required" property, we can user $SiteColumn.required="true" , but for showfield, $siteColumn.showfield="Name" , throws error that the property does not exist


propogate item added in announcement list in site collection to all sub sites' announcement list

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); In my site collection i have an announcement list. and in my site collection some 600+ sub sites exist. sharepoint admin uploads an announcement into this rootweb's announcement list. now is there any way i can add the same announcement -which has title,...


Sys.InvalidOperationException when trying to edit page in sharepoint 2010

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I added a webpart through VS2010. It is a Simple webpart containing ajax script manager,timer and update panel. what it does is it shows the current server time in a label. After i deploy it into my sharepoint site i get following error...


Combining two column conditions in calculated column

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a task list which has color coding for Progress Bar and Task Status based on % Complete and Status column values. I have one more additional condition for: IF status=Blocked then whatever the % Complete value may be the Progress Bar...


How to retrieve AD Informations from Custom Application Page (Using VB)

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I've just created a new application page (aspx with VB). I can't find any solution to gather their AD informations (specific attributes) without asking them their password twice (first time when they login).I'm not a dev, so I must miss something. When I...


How to create new Farm in Share Point 2010 on single server?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I want to create new Farm on Share Point 2010 server. I have already one Farm on same SharePoint 2010 server and want to create new Farm with existing Farm on same server. That means I require multiple farm working on same SharePoint...


PublishingWeb.GetPublishingWeb is not working in SharePoint 2013, CSOM

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); var pWeb = PublishingWeb.GetPublishingWeb(context, context.Web); context.Load(pWeb); if (pWeb != null) { <This condition is true for Team and Publishing Site Both> }This code is not working, it's going in if condition, if we provide Team site context as well.. using (var clientContext =...


Automatically copy items

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); We have 6 different libraries. All of them are working with a checkbox column (management). Is it possible to run a script or something like that, which grabs all documents (management = yes) and copy those into another library? Or show them i...


SharePoint and Workspace synchronization error

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have few document libraries in my SharePoint 2010 site and same holds in my sharepoint workspace.Recently I had made some changes from workspace and after modifying the document when I am trying to synchronize the workspace facing below error.Can any one help...


Sharepoint Designer Workflow Error "Stage title is empty"

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I've been developing a SharePoint Workflow for a Project Server site for almost a month, everything worked fine until yesterday.Now when I try to edit the workflow through Sharepoint designer I get an error for each Stage in the workflow that says something...


Allow all users to search list items Sharepoint 2013

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a list for which I've enabled a search box (from web part settings, miscellaneous).The problem is that for me and the others admins the search works perfectly, but for the other users who have only Read privilege the search doesn't work...


How to convert GlobalBreadCrumbNavPopout to Text based breadcrumb

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); Hi is there a way to convert GlobalBreadCrumbNavPopout text based bread crumb below in SharePoint 2013?Site1 > Test > LastSite You help is appreciated.Thanks and Regards!


jeudi 26 février 2015

Ignore/Exclude file when using Export/Import-SPWeb

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I'm using the Export-SPWeb and Import-SPWeb Cmdlets to migrate a few libraries between SharePoint servers. However, one of the files being migrated is a shared data source which is only valid on the source environment, not the target environment. I therefore need to...


Modify text displayed in thumnail of asset library- O365

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a client with a large Asset Library of car images. The current thumbnail shows the name of the file as well as the image specifics (jpg, size, etc.). The client instead wants the thumbnail to display the name of the car...


Error: "Cannot index into null array"

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I am getting this error while trying to get the list nameCannot index into a null array.+ $clientlist = $web.Lists["Shared Documents"];+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+ CategoryInfo : InvalidOperation: (:) [], RuntimeException+ FullyQualifiedErrorId : NullArrayThanks.


Open Word document in Browser

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have created some document templates for Word, Excel and PowerPoint in office 365 sharepoint online and I have saved them on my desktop, I have created 3 content types as well and each content type is using associated template. I Can see...


How can I change the breadcrumb elements from to ?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I want to markup breadcrumbs semantically in SharePoint 2010 using an ordered list and list items. I've been playing around but can't work out how to do this. <ol class="breadcrumb"> <SharePointWebControls:UIVersionedContent UIVersion="4" runat="server"> <ContentTemplate> <asp:SiteMapPath runat="server" CurrentNodeStyle-CssClass="active"></asp:SiteMapPath> </ContentTemplate></SharePointWebControls:UIVersionedContent> </ol>I feel like NodeTemplate may...


powershell - Request rejected - The requested url was rejected

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); Request rejected - The requested url was rejected while getting context of sharepoint online site - office 365 using powershell ...


Applying css to a sharepoint gridview

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); Within my web-part, I want to make the header row of a gridview match the css from the sharepoint css class called ms-ContentAccent1-bgColor(I want to match the theme of the site). However, when I apply the css to the Headerstyle with the Css-Class...


Created pages not displaying in Top Navigation component

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); The Top Navigation component should display the contents of the menu defined in the Navigation settings. However, I've created several pages (and folders) in my Publishing site which are not appearing in the Top Navigation. The Top Navigation component is empty, providing the...


What/Where is the SharePoint App server, where to point the DNS

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I am trying to setup the SharePoint 2013 farm for apps.We have 2 farms:Test DB Server Test Central Admin Test Front End 1 Test Front End 2Prod DB Server Prod Central Admin Prod Front End 1 Prod Front End 2and a Content Server...


Get Columns via REST

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I'm trying to get a list of all columns/fields for a list via REST using the /_api/Web/Lists(guid'xxxx')/Fields endpoint. This works fine, except it's adding in all of the system and duplicate fields such as LinkTitle, LinkTitleNoMenu, ContentTypeId, etc.Short of filtering it out after...


How can I display contents of lists without allowing changes?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I'm building a rota system in SharePoint 2010 using a contacts list for each team and then pulling the contact detail into a separate custom list, via lookup, for each team to define the rota schedule.At some point I'd like to consolidate the...


How to link to a certain post in the SP Blog site, but displaying the full blog roll

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I've deployed the SP 2013 Blog site template, and appreciate the ease of publishing from Word - that'll make my content guy very happy.I have a 3rd party spotlight solution on my Intranet homepage to cycle through photos for the 3 or 4...


SharePoint Multi Choice Option Font Change

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a sharepoint form with a multi choice CHOICE field, the question is how do I make the font of the clickable options on the forms font size different. It is coming up large.


SharePoint Multi Choice Option Font Change

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a sharepoint form with a multi choice CHOICE field, the question is how do I make the font of the clickable options on the forms font size different. It is coming up large.


SharePoint Multi Choice Option Font Change

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a sharepoint form with a multi choice CHOICE field, the question is how do I make the font of the clickable options on the forms font size different. It is coming up large.


How to synchronize a regular list with a calendar list

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a calendar overlay of 7 calendars in SharePoint 2013. I'd like to synchronize a standard list with the overlaid calendars or a query all the calendars to update my list. Any ideas on how to do this?


SP2013: JavaScript Object Model - Setting the value of a list field

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); How do I set the value of a field in a list using the JavaScript object model? I am trying to automatically create a new wikipage (which I have done) and populate it with content like "Hello!"I know I need to set the...


Migrate wiki Sharepoint 2007 to SharePoint 2010

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); How can I migrate the Team Wiki from a SharePoint Foundation 2007 instance to a separate SharePoint Server 2010 Standard instance?I would like to preserve the page names and the individual pages.


How can I check-in multiple files at once SharePoint 2013?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I've been doing a lot of reading and research today, but haven't been able to find a solution that works for me.Up until yesterday, our sales team was able to mass-check out files for tracking, fill in the data on each file that...


Edit item popups not working with ms-listviewtable class in a CEWP

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I'm using SharePoint 2010 and Internet Explorer 9. (I have no choice in browser or versions -- policy dictates I use these until told otherwise)I actually solved my problem, but I still don't understand why there was a problem, and I really want...


How do I get this field in the External List(ECT->BCS->SQL) to show up in SharePoint Designer Workflow?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have created an External Content Type that has CRUD rights to SQL tables. Off that External Content type I have created an External List. I have a document library that has an InfoPath form on it that kicks off a workflow to...


How can I increase the allowed execution time for a CSOM Client Context?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I am running SharePoint 2013 and have a Windows app that creates SharePoint sites with CSOM.I have used Powershell to adjust the ClientCallableSettings, lengthening the ExecutionTimeout to 3 minutes. That is successful.I have set the ExecutionTimeout of my ClientContext to 3*60*1000, which is...


Debugging remote event receiver - no context token

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I am trying to use the MS supplied BasicDataOperations provider hosted app to play around with and learn about remote event receivers.I was following the instructions from this blog post by Chris O'Brien to deploy the app to a SharePoint Online site, and...


"Search this Site" function not working in my sharepoint site

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); When I try search a record my on my site using "Search this Site" search bar it seems to not work. Do I have to set it up first or what does the search bar even search?Thank you.


Error when trying to open documents via WebDAV

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); When I try to click open on a word document or any document in webDAV via Sharepoint, it says that it couldn't find . Has it been moved, renamed or deleted?Well the document is there I can see it, word opens it tries...


List item Approval Status by Workflow

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have made a 2013 workflow for a list but I cannot get it to work the way I want it too. At the moment it sends me a task to approve or reject the submitted item but it's only on the task...


Starnge Issue : Convert Single Line of Text To Multiple line of text

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I am facing a very strange issue, there is a single line of text column in SharePoint List. I want to change it to Multiple Line of text, when i go to list settings and click on the column it does not give...


wsp Template loaded, but site creation problem

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a wsp file from a different farm sent to me and would like to use it on my organization's sharepoint environment.I loaded the template and activated it and can see it as a template when I want to create a new...


Xsl stylesheet embedded in View page is lost when moving External List between site collections

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I've the External List "ExtList1" with following content:Read List.aspxDispForm.aspx"Read List.aspx" have embedded Xsl stylesheet (tag "Xsl", parent tag "WebPartPages:XsltListViewWebPart"I've moved ExtList1 between site collections from CollectionA to CollectionB with using Export-SpWeb/Import-SpWeb. Related External Content Type exist in both site collections.After that "Read List.aspx"...


SharePoint 2013: Promoted results picture

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a question regarding promoted results in SharePoint 2013 Standard, if a result contains an image, will it still appear if the result gets promoted? Thanks


List item Approval Status by Workflow

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have made a 2013 workflow for a list but I cannot get it to work the way I want it too. At the moment it sends me a task to approve or reject the submitted item but it's only on the task...


Documents(file) name from Shared Documents in SP 2013 using powershell script

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); How do i get each document or file name from Shared Documents using PowerShell script.Thanks ...


Display message when user again trying to respond survey?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); When User Try To Respond Survey Again ,Displaying Some Error message ,but i want to display A User Friendly Message...I Read Some Article But Not Found Any Solution Yet,help me


"The server was unable to save the form at this time. Please try again"

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); When I add new item my custom list I got error. How can I solve this problem? I stopped then started IIS but the problem is continuing.


SharePoint Column Validation formula - to validate multiple email addresses

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); Is it possible to validate the contents of a SharePoint list column, which contains multiple email address separated by semi-colon - ";"Thanks. ...


how to get the url of a list item in jslink?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I am using the jslink code below to display the title of the list in a List View web part as a hyperlink. But the problem is that I don't know how to point to the url of that item? so how can...


Template updating for old documents

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); Good day! I ask you to give me support in resolving my issue.I have a document library in SharePoint site. I created content type inherited from document content type. Created content type has additional fields. I set document template for created content type....


how to change the created date of a folder in sharepoint

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a document library, I have used a powershell command to change the created date of the files uploaded in that library. However, I also want to change the created date of a Folder which is uploaded in that library. Please suggest...


Link to download multiple files

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); We create an app that allows to send (for example, by e-mail) link to user for downloading certain documents. At the moment, we use VirtoSoftware Bulk Download for downloading files via SharePoint UI. Is it possible to somehow create the link and transfer...


when retrieving a Person field PropertyOrFieldNotInitializedException

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I see an exception with quick watch: 'listitems.ListItemCollectionPosition' threw an exception of type 'Microsoft.SharePoint.Client.PropertyOrFieldNotInitializedException'Here is my code. Microsoft.SharePoint.Client.ListItemCollection listitems = list.GetItems(query); context.Load(listitems, items => items.Include(item => item , item => item["MyPerson"])); context.ExecuteQuery(); User u = null; foreach (ListItem item in listitems) // a...


More than one Pages library?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); We have requirements where we need to add multiple pages libraries on a site, but this seems impossible to do via both the GUI and code.Is it all possible / supported ?


email data from sharepoint list to specific people

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a sp 2010 cutom list. Whenever the list gets updated, an email should be sent to some specific people and body of the email should be taken from "messageList" I searched net, most of the solutions suggests workflow. i dont want...


Multiple Application Server

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I am novice in SharePoint. Let me ask the reason why there is a need of multiple (specifically four) application server in a SharePoint farm. Actually we have a client and this is their requirements:4 Web Server (WFE)4 Application Server (I have no...


How to change the content type of a file with .stp (Autocad file) extension?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I need to upload a file with .stp extension to a document library and set a predefined content type to it using server side code. I am able to add the file using SPFileCollection.Add(string fileUrl,byte[] data). This creates the item with default content...


Add Safecontrol assembly in web.config through powershell

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); Can any one guide me in powershell to add safecontrol assembly in sharepoint web app web.config? ...


Delete old items if it exceed List View Threshold

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I'm having a workflow that creates alot of documents in a single library. I know I'm going to exceed the limit of 5000 pretty fast. Old documents can be deleted so the question is: Is there a simple way to delete old files...


mercredi 25 février 2015

How to update metadata for Sharepoint 2013 rest service?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); How to update metadata for Sharepoint 2013 rest service using Java ...


Can we trigger a SP2013 WorkFlow using REST API + Jquery?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); Can anyone suggest whether there is any possibility how to trigger a SP2013 WorkFlow using REST API & Jquery ? ...


my sharepoint ribbon and save button get disabled why?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); When pressing editbutton i am dispalying the height to 300px of my class .center but in editmode the buttons in top get disabled and also save button?


Get SPUser by passing Email address

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); i have an Email address of particular user. Now i want the SP username of that particular email address programatically.Thanks. ...


Get user profile for users that access a specific subsite in Sharepoint 2013

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I want to keep trace of each unique user that accesses a specific subsite (just like Popularity Trends but more advanced). I want to generate a report that contains each unique user's profile: username, the department he belongs to, etc. How can I...


client side IDs of share point elements

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I need to hide some menu items that come OOTB on sharepoint pages. I can do this through javascript/jquery, but am not sure how consistent are the client side IDs of various elements on SP pages. I dont want my code to break...


Add Link to the Quick Launch Navigation while deploying a webpart page in the module

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I like to add a navigation link under the quick launch left nav bar when a module deploys a webpart page as a file element in the feature. Is there a declarative way or do I go with feature event receiver?The environment I...


how to mak Infopath form textbox allow only alphabets

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I am trying to create a textbox in info path form with following criteria:1.) Length should be 1-50 characters .2.) It should not contain any digit.3.) It should contain only alphabets.I try following pattern but it's not working FieldName | does not math...


Select custom site template by default

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); Creating a sub site requires a template selection, Can I show my custom template selected by default, I don't want user to go to custom tab of templates and manually select a template.


Web.config modification in multi server farm

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); i have a Sharepoint web app which has web.config modification.when i do it in single server farm, it works very fine but when i do the same thing in multi server farm which has 10 servers(2 WFE,2 APP and 6 search), it doesnt...


Modify text displayed in thumnail of asset library- O365

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I have a client with a large Asset Library of car images. The current thumbnail shows the name of the file as well as the image specifics (jpg, size, etc.). The client instead wants the thumbnail to display the name of the car...


Get Columns via REST

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I'm trying to get a list of all columns/fields for a list via REST using the /_api/Web/Lists(guid'xxxx')/Fields endpoint. This works fine, except it's adding in all of the system and duplicate fields such as LinkTitle, LinkTitleNoMenu, ContentTypeId, etc.Short of filtering it out after...


Query rules and REST

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); Is it possible to create a query rule and have the condition match a keyword in a complex KQL query? For example the following query is being issued from a third party application using the REST endpoint. Could we create a query rule...


What happens to a paused workflow when the item is changed?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); Let's suppose we have a workflow that is triggered when a task item is created or modified (as chosen in the settings for the workflow). The workflow contains a step that pauses until the day before the due date for the task, then...


SharePoint Online 2013 - Mapping User Profile properties

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); Doing a proof-of-concept for management by doing a manual CSV import of a small subset of user accounts exported from AD using a Get-ADUser|Export-CSV method. They are imported using Import-CSV|New-MSOUser. Process completes without error and all the imported accounts are immediately available in...


Popups in SharePoint Apps

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I created a SharePoint App, but each time I am trying to access it I keep getting pop up authentication window. I am trying also with other apps from the SharePoint store, which makes me think the problem is with the configuration of...


What to Import from WSP to build Web Template solution in Visual Studio?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I'm trying to create a custom web template for SharePoint 2010. The client has already configured a prototype web site in SharePoint, which is essentially a standard blog site, with some modifications. The changes include:edits to several list form pages (for example, hiding...


When I use Calendars Overlay, how do I make Exchange click through to my calendar?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); When I use the calendars overlay feature in SPS, I was able to add an Exchange calendar if I add the URLsOWA URLhttp://ift.tt/1FujQWQ Web servicehttp://ift.tt/1FujQWU ... I assume the only reason the OWA URL exists is so that I can click on my...


Number of days timer job history is kept?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); We've just noticed that our "User Profile Service Application - User Profile Incremental Synchronization" timer job has been failing in our SharePoint 2010 environment for quite some time. This job runs everyday at 1:00 am. When I go to Central Administration > Job...


What are the best Sales Webparts to implement into a existing CRM?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); Best web Parts for Sales? Does anyone know of any great web parts for CRM?http://ift.tt/1C5O6qM ...


RequestUsageExecutionTimeThreshold: what doing this property?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); Undocumented property: SPClientCallableSettings.RequestUsageExecutionTimeThreshold ...


Rest webservices in SharePoint ?

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); Any documentation to learn REST Webservice in SharePoint ?I am trying to create rest webservice for sharepoint . ...


SharePoint Contacts Automated Email Drip Campaign

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); I'm looking for an automated email drip campaign for SharePoint. I want to automatically respond and follow up with leads sending automated responses to leads that are captured thorough web forms.I know smart alert pro, does this. But it requires that you have...


Using AAM for external access to a subsite (http://ift.tt/1m2127C)

(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({}); Platform: Server 2012 R2Version: Sharepoint Foundation 2013Hi,We have the default IIS site setup with a default web application. There is a subsite under this. So to clarify:http://server1 takes us to the default sharepoint pagehttp://server1/SubSite takes us to an actual production site.Now, when trying...