SharePoint 2013 visual upgrade: Behind the Scene

Hello,
I recently migrated site collection from SharePoint 2010 to SharePoint 2013. But is not visually upgraded yet. I wanted to create evaluation site collection before actual upgrading. My questions are:
1) Will it create a new Web application?
2) Will it extend a the existing web application?
3) will it create only a new site collection? If yes, will the size of content database become double?
I am worried about the size of content database, as my DB is almost 50 GB and haven't much space left.
any help would be really appreciated.

Hi Rizwan,
Evaluation Site Collections is a new feature in the SharePoint 2013 upgrade story. Evaluation Site Collections lend site collection administrators the ability to try out the 2013 version of their site collection before actually upgrading the production site
collection’s UI and content.
An upgrade evaluation site collection creates an upgraded version of the site in a new, separate copy of the site that is running on SharePoint 2013. Unlike visual upgrade in SharePoint Server 2010, the upgrade evaluation site collection is a complete copy
of the site collection, separate from the original. Actions taken in the upgrade evaluation do not affect the original site.
Evaluation site collections have a default expiration period of 30 days. And the evaluation site collection will also automatically be deleted when its parent production site collection is upgraded.
More information, please refer to the links:
http://sharepointengineer.com/2012/11/15/sharepoint-2010-to-2013-upgrade-step-by-step-2/#_Toc340767198
http://blog.fpweb.net/sharepoint-2013-evaluation-site-collections/
I hope this helps.
Thanks,
Wendy
Wendy Li
TechNet Community Support

Similar Messages

  • SharePoint 2013 Visual Web Part Custom Property.

     How to create drop down control to display existing libraries in current web site using a custom web part property?i want to show this control on web part configuration.then users can select the relevant library without typing.(SharePoint
    2013 Visual Web Part).
    Thanks 

    This has been answered for SP 2010 at SP:SO. Things wont change much in SP 2013 as far as VWP is concerned. Basically you will need to implement Custom Web Part Editor.
    http://stackoverflow.com/questions/6946153/edit-webpart-properties-with-dynamic-dropdownlist
    Here is an example.
    http://sptechbytes.blogspot.ca/2013/02/sharepoint-2010-creating-custom-editor.html
    Amit

  • Links work behind the scene

    Hi All,
    I have a pdf which is pretty much a guide. I created InDesign file with layers and exported as pdf.
    I'm trying to do the following:
    When i hit one of the navigation links, a layer associated with that link shows up. In layer that showed up, i have more links associated with images in its own layers. Everything works like i want.
    The problem is that links in non active layers work behind the scene when i hover over so i can hit link in non active layres.
    Is there a way to solve this problem?
    The script (in link action) i'm using to show/hide layers is:
    var ocgs = this.getOCGs();
    for (var i=0; i<ocgs.length; i++)
    if (ocgs[i].name == "LayerName")
    ocgs[i].state = ocgs[i].state=true;
    var ocgs = this.getOCGs();
    for (var i=0; i<ocgs.length; i++)
    if (ocgs[i].name == "LayerName")
    ocgs[i].state = ocgs[i].state=false;
    I'm using Acrobat 9 pro
    Please help
    Thanks in advance

    Hi,
    Thanks for the answer. I solved the problem in acrobat with buttons.
    Thanks anyway

  • Behind the Scenes in Captivate 2

    I'm creating an application where I ask the user to enter
    comments in a text entry box. What I want to be able to do is save
    whatever they type in the text box and display it in a later slide
    so they can compare their comments to an "expert's" assessment.
    When I was at a learning conference, I heard some Captivate
    users refer to going "behind the scenes" to make changes to
    Captivate. Is that what I need to do here? Any suggestions?

    See "Text Input/Output" by Silke Fleischer, posted on the
    Captivate Exchange:
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&loc=en_us&extid=1253 021
    Works great!

  • Multiple Guest Accounts / Behind-the-scenes Login

    How would we go about logging a visitor in as a specific user behind-the-scenes (without them even seeing the Login Screen)? This question is driven from a requirement where we need to display a replica of the subportal branding at the guest view level. (Needs to go on the wish list for sure: Redirecting to a subportal and/or subportal guest accounts.) For example, if I created a [subportalname] Guest user for a subportal and wanted to automatically log a visitor in as that user, how would I trigger that process? Login PEI doesn't help me - none of those events seem to fire until the user is presented with the Login screen and manually clicks Log In - Looking at the Interpreter class right now, where we see the Guest login functionality (DoGuestLogin, etc.). How might we pass around a username and password and trigger an automatic login attempt with that data? We're basically looking for a work-around for multiple guest accounts - 1 per subportal - so that branding can appear right up front before a user actually logs in. We will have a parameter somewhere to branch out which subportal guest user to log the visitor in as. We've gone down a couple of different routes with no luck.
    Again, due to a tight timeframe, we need details - like, "Create a custom activity space replacing the Interpreter class, edit [blah] function and use [blah] function to pass in your hardcoded username and password. Rebuild [blah] and deploy [blah] dlls to [blah] directories."
    Regards,
    Sarah WheelerCox Enterprises, Inc.

    It turns out this is pretty complicated due to the internals of how user sessions get initialized. I've managed to get a test working where it logs you in as a guest in a different sub-portal. I can give you some rough information now.
    You will need a Login PEI, and a custom Space and IloginControl/IHTTPControl. Obviously, you will need to edit the Login PEI xml file and the CustomActivitySpaces.xml file to get your customizations deployed.
    The OnAfterLogin() method of the ILoginActions PEI should look something like this:
    publicRedirect OnAfterLogin(Object _oUserSession, ApplicationData arg1)
    IPTSession ptSession = (IPTSession) _oUserSession;
    if(ptSession.GetSessionInfo().GetCurrentUserID() == PT_INTRINSICS.PT_USER_GUEST)
    if(PTDebug.IsInfoTracingEnabled(Component.Portal_Browsing))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Info,
    "Guest user login redirecting to guestloginspace to go to non-standard guest user.");
    Redirect guestRedirect = newRedirect();
    guestRedirect.SetLinkCreateNewSpace(GuestLoginSpace.STR_MVC_CLASS_NAME, null);
    guestRedirect.SetControl(GuestLoginSpace.STR_MVC_CLASS_NAME);
    returnguestRedirect;
    returnnull;
    and the LoginControl that I mentioned earlier is a bit more complicated than I implied. It also needs to be an IHTTPControl for login purposes. The custom space is very simple, so I will skip it. Here's the full class code for the custom guest login control:
    publicclassGuestLoginControl implementsILoginControl, IHTTPControl
    publicstaticfinalString STR_MVC_CLASS_NAME = "GuestLogin";
    privateAActivitySpace m_asOwner;
    privateIPTSession m_UserSession;
    /**theseneedtobenulledoutafterexecution.*/
    privateIWebData m_WebData = null;
    privateIXPRequest m_xpRequest = null;
    *@seecom.plumtree.uiinfrastructure.activityspace.ILoginControl#DoGetSession()
    publicbooleanDoGetSession()
    returntrue;
    *@seecom.plumtree.uiinfrastructure.activityspace.ILoginControl#GetSession()
    publicObject GetSession()
    // We need to set this manually before the Interpreter does because
    // DoTasksAfterLogout depends on it.
    // m_asOwner.SetUserSession(subportalGuestUser);
    LoginResult rReturn = null;
    try
    rReturn = LoginHelper.INSTANCE.AttemptLogin(m_UserSession, m_asOwner,
    m_xpRequest, m_WebData);
    catch(Exception e)
    if(PTDebug.IsErrorTracingEnabled(Component.Portal_UI_Infrastructure))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Error,
    "AttemptLogin() failed.", e);
    if(!rReturn.m_bSuccess)
    if(PTDebug.IsErrorTracingEnabled(Component.Portal_UI_Infrastructure))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Error,
    "GuestSubportalLoginControl AttemptLogin() failed: "+
    rReturn.m_strError);
    if(null!= rReturn.m_Redirect)
    if(PTDebug.IsErrorTracingEnabled(Component.Portal_UI_Infrastructure))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Error,
    "GuestSubportalLoginControl AttemptLogin() return redirect ignored.");
    m_xpRequest = null;
    m_WebData = null;
    returnm_UserSession;
    *@seecom.plumtree.uiinfrastructure.activityspace.IControl#CheckActionSecurityAndExecute(XPHashtable)
    publicRedirect CheckActionSecurityAndExecute(XPHashtable arg0)
    if(PTDebug.IsInfoTracingEnabled(Component.Portal_UI_Infrastructure))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Info,
    "GuestSubportalLoginControl Execute() creating redirect to login space for dljr.");
    m_UserSession = PortalObjectsFactory.CreateSession();
    m_UserSession.Connect("non-standard guest", "", null);
    ILink rReturn = LoginHelper.INSTANCE.GetDefaultPageRedirect(newRedirect(), m_UserSession, m_asOwner);
    if(PTDebug.IsInfoTracingEnabled(Component.Portal_UI_Infrastructure))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Info,
    "GuestSubportalLoginControl Execute() finished.");
    return(Redirect) rReturn;
    *@seeIHTTPControl
    *@paramr
    *@parampageData
    publicvoidSetHTTPItems(IXPRequest r, IWebData pageData)
    m_xpRequest = r;
    m_WebData = pageData;
    *@seecom.plumtree.uiinfrastructure.activityspace.IControl#Init(IModel,AActivitySpace)
    publicvoidInit(IModel arg0, AActivitySpace _asOwner)
    m_asOwner = _asOwner;
    *@seecom.plumtree.uiinfrastructure.activityspace.ILoginControl#SetRedirectForUseAfterLogin(Redirect)
    publicvoidSetRedirectForUseAfterLogin(Redirect arg0)
    *@seecom.plumtree.uiinfrastructure.activityspace.IMVCObject#GetName()
    publicString GetName()
    returnSTR_MVC_CLASS_NAME;
    *@seecom.plumtree.uiinfrastructure.activityspace.IManagedObject#Create()
    publicObject Create()
    returnnewGuestLoginControl();

  • Running "nightly scripts" and other behind the scenes tasks

    I keep seeing posts about how the iMac Intel runs nightly scripts and/or other tasks behind the scenes. There is no mention of this in the user manual nor does Apple warn you about not putting the computer to sleep so that these tools will run. My iMac hard drive is asleep every night (as am I...) how can I get these things to run manually? How often? And can someone point me to literature to support this info?
    Thanks much,
    HS

    522/2968
    Hi HS,
    "There is no mention of this in the user manual"
    That's because the three nightly maintenance scripts are not important at all, and don't affect Mac OS X performance.
    They are only a relic from the glorious Unix system times when it was used on rather small capacities HDs, on computers that were running non stop for months or years...
    Running them yourself manually, as a "perfectionist measure", can be done easily using the "daily, weekly & monthly" features in OnyX or Cocktail for example. All three tasks together, once a month or so, is fine. No harm (but useless) rerunning them many times.
    Litterature:
    The KB article is quite old, it shows only the default 10.2 times and commands:
    - http://docs.info.apple.com/article.html?artnum=107388
    (almost same as 10.3 and 10.4 though)
    What I really would like to learn, is whether the scripts have been modified in the Intel version of Tiger.
    Could you please (or Joseph or somebody else), in Finder, Go To (shiftcommandG) this folder:
    /private/etc/
    see if there is still the same
    /private/etc/periodic
    folder, with the three
    /private/etc/periodic/daily
    /private/etc/periodic/weekly
    and
    /private/etc/periodic/monthly
    scripts?
    (I'm asking because I don't own an Intel Mac myself).
    Next you would Go To (⇧⌘G) this folder:
    /System/Library/LaunchDaemons
    please, see if you find those three files
    /System/Library/LaunchDaemons/com.apple.periodic-daily.plist
    /System/Library/LaunchDaemons/com.apple.periodic-weekly.plist
    and
    /System/Library/LaunchDaemons/com.apple.periodic-monthly.plist
    If they are still there, you can open them (with TextEdit if your Developer Tools are not installed), and read the default times when the tasks are scheduled to run.
    Thanks in advance!
    Axl

  • Exception behind the scenes while trying to paint images

    Hi,
    I am trying to load up an image (bufferedimage) by pasting 2 images one after the other. The response type of the jsp is set to image/jpg. I am able to see the image, but behind the scenes, i get an exception like this
    [3/7/08 12:51:40:819 EST] 34a16964 SystemErr R java.lang.IllegalStateException: Context has not been prepared for next connection
    [3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at com.ibm.ws.webcontainer.srt.NilSRPConnection.prepareForWrite(SRTConnectionContext.java:593)
    [3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at com.ibm.ws.webcontainer.srt.SRTServletResponse.commit(SRTServletResponse.java:303)
    [3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at com.ibm.ws.webcontainer.srt.SRTServletResponse.alertFirstFlush(SRTServletResponse.java:227)
    [3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at com.ibm.ws.webcontainer.srt.BufferedServletOutputStream.flushBytes(BufferedServletOutputStream.java:359)
    [3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at com.ibm.ws.webcontainer.srt.BufferedServletOutputStream.flush(BufferedServletOutputStream.java:343)
    [3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at javax.imageio.stream.FileCacheImageOutputStream.close(FileCacheImageOutputStream.java:226)
    [3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at com.sun.imageio.stream.StreamCloser$1.run(StreamCloser.java:79)
    [3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at java.lang.Thread.run(Thread.java:570)
    Any ideas here?
    Thanks

    Hello INFINITI11,
    I've build a test machine and I can update the content so the online content doesn't have problem in my mind.
    You may need to check your network setting here because we can see this error:
    "The operation being requested was not performed because the user has not logged on to the network. The specified service does not exist."
    You can check your account privilege and check whether you have any policy settings on your OS. You'd better also check that you've disabled all Anti-virus software.
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • SharePoint 2013 - blog upgrade

    Hi,
    I did an upgrade of SharePoint 2010 to 2013. Most things work fine, but I have some issues with upgrading a blog. I got these scenarios:
    I upgrade the blog in 2010 design, everything works fine, until I make a visual upgrade to 2013. After visual upgrade the blog still seems to be fine, but when I select a category to filter categories, all links are broken. So f.e. I klick a category linked
    to "Lists/Kategorien/Category.aspx?CategoryId=15&Name=Firewall" for category "Firewall", all results are linked to "Lists/Kategorien/". Even the categories in navigation are now linked to "Lists/Kategorien/".
    To solve this I tried various export/import settings, with features enabled/disabled, but no success. ULS Log didn't show usefull informations at this time. So the Question: Why do I experience this behavior? Any idea to solve this?
    I get a different error, when I try to import the blog, when the site collection has publishing feature enabled. Than I don't even can access any blog site, I get an error: sorry that didn't work. On export site is publishing feature enabled, dunno
    why I can't just import here.
    Hopefully I can get some help here. Best solution for me is to get error 1 fixed, I don't need publishing features. SharePoint 2010 was installation with SP1 and CU august 2012.
    Thanks for help
    iruhe

    I experienced this issue after removing the Blog Tools web part from the page.  Once I added it back, the issue was resolved.

  • Issues with SharePoint 2013 after upgrading from windows 2012 to 2012 r2

    We have a Sharepoint with Sp1 environment on windows 2012. Recently we upgraded the windows 2012 to 2012 r2. After the upgrade sharepoint environment is completely unstable.
    At first all the sites returned 401 errors. After resolving by resetting the object cache accounts the sites are back.
    Then i see that none of the performance point dashboards work. I figured that claims to windows token service is defaulted to local system account. I previously configured with a domain account. I reconfigured to work with domain account. 
    All the dashboard pages throw error.
           Some Error logs:Failed to get document content data. System.ComponentModel.Win32Exception (0x80004005): Cannot complete this function     at Microsoft.SharePoint.SPSqlClient.GetDocumentContentRow 
    Application error when access /Dashboards/Performance Dashboard/Main.aspx, Error=The EnableScriptGlobalization property cannot be changed during async postbacks or after the Init event.   at System.Web.UI.ScriptManager.set_EnableScriptGlobalization(Boolean
    value)    
      4.  I tried to create a new dashboard and this time the performancepoint designer wont launch. After some troubleshooting i see that c2w host file didnot have the caller  C:\Program Files\Windows Identity Foundation\v3.5. 
           I added <add value="WSS_WPG" /> and now it launches
      5.  Now the Dashboard launches and peruser identity works without having kerberos enabled at IIS. I have all the spn and required delegations setup for this url . But i did not configure at the IIS level
    yet.
    It looks like lot of things got messed up and reset. Can we upgrade to windows 2012 r2 with a sharepoint application inplace. what is the recommended approach and Whats happening with Performancepoint dashboards. IS there a known issue with sharepoint 2013
    sp1.
    Raj-Shpt

    Thanks for the above article. Few issues are solved . One of the main issue is with Performancepoint Dashboard.
     I have all the spn and required delegations setup for this url . But i did not configure at
    the IIS level yet. Still per user identity works without having kerberos enabled at IIS.
    Raj-Shpt

  • How to Add a User Control to a SharePoint 2013 Visual Web Part ?

    Hi,
    1.I have created SharePoint 2013 Farm Solution through VS 2012.
    2.Added visual Web part
    3.Created a User control (Farm Solution ) and added some Control From tool Box.
    4.Drag and drop user control from solution explorer to visual web part.
    so its  Register tag and with prefix tag user controls automatically added on visual web part source. when i try to build solution it throws Exception:
    Exception :The name 'InitializeControl' does not exist in the current context.
    Please Provide solution after try/or proper workaround.
    Thanks,
    Siddheshwar

    Site name=http://sitename:22222/
    Visual Web part:
    <%@ Assembly Name="$SharePoint.Project.AssemblyFullName$" %>
    <%@ Assembly Name="Microsoft.Web.CommandUI, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="asp" Namespace="System.Web.UI" Assembly="System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %>
    <%@ Import Namespace="Microsoft.SharePoint" %>
    <%@ Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Src="~/_controltemplates/15/SP2013Controls/SPControls.ascx" TagPrefix="uc1" TagName="SPControls" %>
    <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="SPWebpart.ascx.cs" Inherits="SP2013Controls.SPWebpart.SPWebpart" %>
    <uc1:SPControls runat="server" id="SPControls" />
    User Control Code:
    <%@ Assembly Name="$SharePoint.Project.AssemblyFullName$" %>
    <%@ Assembly Name="Microsoft.Web.CommandUI, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="asp" Namespace="System.Web.UI" Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %>
    <%@ Import Namespace="Microsoft.SharePoint" %>
    <%@ Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="SPControls.ascx.cs" Inherits="SP2013Controls.ControlTemplates.SP2013Controls.SPControls" %>
    <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox><asp:Button ID="Button1" runat="server" Text="Button" />
    Deployement Location:{SharePointRoot}\Template\ControlTemplates\SP2013Controls\
    After User controls added on webpart .g.cs file getting blank.
    After 1st Build:
    'InitializeControl' does not exist in the current context
    The file '/_controltemplates/15/SP2013Controls/SPControls.ascx' does not exist.
    after 2nd Build Try:
    'InitializeControl' does not exist in the current context

  • Could not load file or assembly AjaxToolkit error in SharePoint 2013 Visual Webpart

    I wanted to use ajax controls in visual webpart for sharepoint 2013 so i followed steps.
    1-I cut this snippet (see below) from <head></head> Section and paste in <body></body> Section for my master page since it's a requirement for SharePoint 2013 ajax functionality.
    Snippet:
    <!--MS:<SharePoint:AjaxDelta id="DeltaSPWebPartManager" runat="server">-->
    <!--MS:<WebPartPages:SPWebPartManager runat="server">-->
    <!--ME:</WebPartPages:SPWebPartManager>-->
    <!--ME:</SharePoint:AjaxDelta>-->
    2-downloaded a latest ajax tool kit and then added ajax toolkit dll from the toolkit library in my solution's bin-->debug folder
    now add ajax entries in web.config in these sections
    in <SafeControls>
          <SafeControl Assembly="ajaxcontroltoolkit, Version=4.1.7.1213, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e, processorArchitecture=MSIL" Namespace="AjaxControlToolkit" TypeName="*" />
    in <assemblies>
    <add assembly="AjaxControlToolkit, Version=4.1.7.1213, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e" />
    in <controls>
    <add tagPrefix="ajax" namespace="AjaxControlToolkit" assembly="AjaxControlToolkit, Version=4.1.7.1213, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e" />
    finally registered ajax in visual web part as 
    <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxtoolkit" %>
    added following calender control
    <asp:TextBox MaxLength="10" ID="txtToDate" runat="server" CssClass="FormTextBoxSmall"></asp:TextBox>
    <asp:ImageButton ID="calReqDateTo" runat="server" ImageUrl="" />
    <ajaxtoolkit:CalendarExtender id="CalendarExtender2" runat="server" targetcontrolid="txtToDate"
        format="dd/MM/yyyy" popupbuttonid="calReqDateTo" />
    reset iis and deployed my solution but when i deployed it throws error 
    "could not load file or assembly AjaxToolkit,Version=4.1.7.1213 "
    please help

    Hi,
    In this below thread they have discussed and resolved your issue.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/60fa19fe-86a0-446b-b61f-11a82fe4287f/how-to-implement-ajax-toolkit-for-sharepoint2013?forum=sharepointdevelopment&prof=required
    Please let us know if you need further details
    Sekar - Our life is short, so help others to grow
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

  • Hide option for SharePoint 2013 UI upgrade

    Hello,
    I just want to know if there is a way to hide the banner which pops up for UI upgrade on SharePOint 2013? We are trying to leave few sites on 2010 UI only.
    Thanks,

    Hi,
    Per my understanding, you want to hide the banner which pops up for UI upgrade as below:
    You can add this custom CSS style into the master page, it will hide the banner for all the pages in the current site collection.
    <style type="text/css">
    #status_preview {
    display: none !important;
    </style>
    About how to add custom CSS style into master page:
    http://techtrainingnotes.blogspot.com/2012/05/adding-javascript-and-css-to-sharepoint.html
    Thanks                      
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Patrick Liang
    TechNet Community Support

  • Sharepoint 2013 Visual Web part Deloyment

    Hello,
    I built a visual web part(sharepoint 2013) using visual studio 2012. But when I tried deploying, I got this error message:
    "Error occured in deployment step 'Activate Features': Feature id '****' is not installed in this farm, and cannot be added to this".
    Approaches I made to fix this :
    1) Tried changing the scope of Feature to Farm/Web/WebApplication
    2) Tried installing feature manually using Install-SPFeature -AllExistingFeatures
    3) Tried resetting IIS
    None of these attempts helped me. Can someone help me on this ?
    Thanks
    KG

    Hi,
    According to your post, my understanding is that you get error while deploying the visual web part.
    To narrow down whether the issue is related to the project itself, you can do some steps as below.
    Re-open the visual studio, create a new clean project with a simple visual web part then check whether it works.
     What’s more, you can check whether feature assembly is register in GAC or not. So try to uninstall feature and use below command: (if have not done before)
    Install-SPSolution -Identity MYfeature.wsp  -GACDeployment -force
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • SharePoint 2013 Foundation Search - Change the admin components to the new WFE server

    Hi,
    We tried to move the Search Service Application from one server to another server which was newly joined in the Farm.
    In this case,the Search Service in my App server - which was working earlier also did not work. I tried almost all Powershell scripts to stop the service, and i could not make it.
    Please let me know, how to stop the search service in both servers and to run only in the new server that i have joined.
    Also, we need to move all Search Admin components to the new server, and from then Search Index should work only in the new server and not the old one.
    Kindly let me know the possibility how can this be achieved. 
    Thanks in Advance!

    Hi Karthikanandh,
    If you want to stop the Search service in both servers and only run in the new server, then you can stop the service in Central Administration in both the two servers and start the service in new server.
    Please go to Central Administration > System Settings > Manage service on server > change the server to the one that you need to stop the search service and then stop the search service.
    To move the search admin component to another server, then you need to clone the active Search topology and move that component, and then then activate the topology and move the remaining components.
    http://sharepoint.rackspace.com/sharepoint-2013-search-administration-tutorial
    http://blogs.technet.com/b/pfelatam/archive/2013/05/10/create-a-search-topology-in-sharepoint-2013.aspx
    http://technet.microsoft.com/en-us/library/jj862354.aspx#Search_Comp_Clone
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Unable to import Thesaurus in SharePoint 2013 - Failed to start the flow

    I am having issue with importing Thesaurus into SharePoint 2013. I have tried with seed file on local and remote server without success. On ULS stack, it lists  "Cannot start flow. The admin service is unavailable". But if
    I retrieve status of search topology, it lists admin components (running on two app server) are active. Any idea how this could be resolved or direction I can head to?
    This is what I have tried :
    PS C:\Users\user> $sa = Get-SPEnterpriseSearchServiceApplication
    PS C:\Users\user> Import-SPEnterpriseSearchThesaurus -SearchApplication $sa -FileName \\server_name\testThesaurus.csv 
        + CategoryInfo          : ResourceUnavailable: (Microsoft.Offic...aurusDictionary:ImportThesaurusDictionary) [Import-SPEnterpriseSearchThesaurus],  
       InvalidOperationException
        + FullyQualifiedErrorId : Microsoft.Office.Server.Search.Cmdlet.ImportThesaurusDictionary
    On ULS I get the following entries:
    CtsConnection.StartFlow: Failed to start the flow: Microsoft.ThesaurusDeployment. Exception: System.ServiceModel.FaultException: Cannot start flow. The admin service is unavailable.    Server stack trace:     
     at System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRuntime operation, ProxyRpc& rpc)    
     at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)    
     at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)    
     at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)    Exception rethrown
     at [0]:     
     at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)    
     at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)    
     at Microsoft.Ceres.ContentEngine.Services.ContentIntegrationEngine.IContentIntegrationEngineManagementAgent.ExecuteFlow(String name, FlowEvaluationConfig config)    
     at Microsoft.Ceres.ContentEngine.ComponentClient.CtsConnection.StartFlow(String flowName, IDictionary`2 parameters)
    MK Sin

    Hi,
    Please check if it is related to the primary search host controller, make sure it is enabled for the farm, then check results again.
    $searchApp = Get-SPEnterpriseSearchServiceApplication
    Get-SPEnterpriseSearchLinguisticComponentsStatus -SearchApplication $searchApp
    Get-SPEnterpriseSearchHostcontroller
    Import-SPEnterpriseSearchThesaurus -SearchApplication $searchApp -Filename \\sp\custom_thesaurus.csv
    Thanks
    Daniel Yang
    TechNet Community Support

Maybe you are looking for

  • Read uniquely named file. Sender File Adapter unsuitable for synchronous

    Hi All, We have a requirement to read a specific file that has a unique name based on a transaction ID. The transaction ID will be passed from the source application. The communication is required to be synchronous. There could be multiple requests/f

  • AU plug-in, in Components folder, not in GarageBand

    I've been searching through forums for an answer to this, but so far, no luck: I've installed MOTU Symphonic Instrument v1.1.3, which is a stand-alone app as well as an AU plug-in. The plug-in is now in Library>Audio>Plug-ins>Components, but in Garag

  • Brush tool appears as a brush not a circle!!!

    The title says it all. My brush tool cursor is a brush not the circle. HELP, i have heard of color select(Alt) and crosshairs(CAPSLOCK) brush cursors but have not heard of a picture of a brush as my cursor!!!! Thanks anyway

  • TRM Task Creation

    We are planning for ECC with Dec. WMS & TRM When I do GR in ECC it will create a inbound delivery [IDOC] in Dec. WMS and T.O is created. If we have TRM then the T.O will be splitted ito various tasks. My Questions is: 1. How are these tasks assigned

  • 57f4 Challan reconsilation

    Dear All , If i do not reconsile the 57f4 challan in MM module what impact it will have in account side ? where ? How to see the same ? Regards