Tagged Questions
0
votes
0answers
4 views
sharepoint 2013 webpart is not shown to fba user
I have a strange problem. First let me introduce environment. We are 2 people developing same sharepoint on same machine with different users and we are using SVN to merge our projects. We are both ...
0
votes
1answer
26 views
How to change the deployment URL in a sharepoint hosted app later?
I downloaded the following microsoft example for a sharepoint hosted app:
http://code.msdn.microsoft.com/office/SharePoint-2013-Hello-b3ca20f3
When I build an app myself I can set the deployment ...
0
votes
1answer
94 views
Publishing SharePoint Application Page to a remote server
I created a SharePoint Application Page. I chose Deploy as a Farm Solution and was able to make the application page work and get deployed on the local (development) SharePoint server. But apparently ...
0
votes
0answers
100 views
Error deploying feature SP2013
I've created a Feature and I want it to be activated when installed.
This is the code:
public override void FeatureInstalled(SPFeatureReceiverProperties properties)
{
SPWeb web = ...
2
votes
1answer
191 views
Powershell Start-Process ignored in remote session
I am starting a new process using:
$removeArguments = "-Command `"&{import-module .\deploy-utility.psm1; RemoveSolutions -solutionNames $solutionNames -url $url;}`""
start-process powershell ...
0
votes
1answer
173 views
How to deploy to sharepoint?
Been working some with SharePoint 2010 for a litle while and it feels like my deployment method is way to slow and way to complicated, so my question is basically..
Is there anyway for me to deploy a ...
0
votes
1answer
381 views
Sharepoint 2010 - Add group on deploy
in order to provide webparts and custom webtemplates for a site-collection, I need to create custom groups. I do that in the following way:
using (SPSite site = properties.Feature.Parent as ...
0
votes
1answer
400 views
Activated Solution on Sharepoint 2010 is not visible
I have activated a WSP file which includes a website template. This works and I can see the solution int he solution gallery. When I try to create a website, based on that template, its not showing ...
1
vote
1answer
76 views
UserControl and Feature activation
I have a sharepoint solution package with a Custom UserControl inside. When I deploy the .wsp the user control is placed in the CONTROLTEMPLATES directory. Is there any way to "delay" this step until ...
1
vote
1answer
986 views
Visual Studio deployment doesn't activate SharePoint feature
I have a simple SharePoint project with one farm-scoped feature. The feature contains no modules; it just refers to an SPClaimProviderFeatureReceiver-derived class which in turn points to an ...
0
votes
1answer
119 views
SSRS Report published on Sharepoint not displaying Regex as expected
I am trying to publish a report on SharePoint 2010 (integrated mode) that was installed with SQL Server 2012. The report was created in Visual Studio 2010. The data source is a SharePoint list of ...
1
vote
2answers
522 views
SharePoint 2007 WSP Deployment Best Practices
I'm building a few WSPs (a custom web part and a branding wsp both scoped to site collection level) using WSP builder on VS2010. Our SharePoint 2007 Farm contains two Web applications.
I'd like to ...
0
votes
0answers
104 views
How to deploy and build my SharePoint solution automatically?
I have the new TFS and VS12. My plan is, to deploy and of course build my SharePoint solution automatically via a default template build definition. I've already a deployment script.
So far, so good. ...
1
vote
1answer
332 views
Automated Build & Deploy in SharePoint
How should I specify my build definition in Visual Studio 2012 in order to build and deploy a SharePoint solution automatically?
0
votes
2answers
97 views
viewsworkflow inactive - after deployment?
my workflow is deployed through the following script in SharePoint 2010:
# Set CurrentDirectory
$callingDir = Split-Path -Parent $MyInvocation.MyCommand.Path
[Environment]::CurrentDirectory = ...