SP2010 I need to set the include in search option switch on all document libraries to off across all site collections on the whole farm?

SP2010 I need to set the include in search option switch on all document libraries to off across all site collections on the whole farm?
Has anybody seen If this can be done programmatically any help would be gratefully welcomed thanks.

i am not sure about the script, why not create crawl rule which will exclude the allitems.aspx from showing in the search results.
Go to search service application, crawling section, click crawl rules to create a crawl rule to excludehttp://*allitems.aspx page.
also check this:
http://social.technet.microsoft.com/Forums/sharepoint/en-US/f431dd0e-871b-4f9e-990e-8f3b7ca932a4/crawl-rule-exclusion-sharepoint-2013
Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

Similar Messages

  • I need to set up an expense form so that our consultant can "filter" by customer type, program type, and finally the purpose of the trip. For instance: the customer types are churches, schools, organizations. The program type would be fund raising, gift p

    I need to set up an expense form so that our consultant can "filter" by customer type, program type, and finally the purpose of the trip. For instance: the customer types are churches, schools, organizations. The program type would be dependent on the customer type selection from the first list. Some examples would be: fund raising, gift planning, surveys, and others. The purpose of the trip would be dependent on the program type selected from the second list. Some examples of trip purposes would be: presentation, design, prospecting. Further, the purpose of trip selection from the third drop-down box would then have to determine the values of other fields by expense type: such as commission, airfare, hotel. etc. I've tried pop-up menu but can't figure out how to "select" from the final popup list and have it populate a field for the purpose of the trip. I've tried to look at the JavaScript examples for dependent drop-down boxes, but can't find any that quite fit what I'm trying to accomplish. I am very new to all of this. No training in writing Javascripts - just trying to wing it. The form has to be very simple for our consultants to use, but also give our office the detail we need to process through the correct account numbers. I would appreciate any detailed step-by-step instructions - kind of a javascript for dummies type of info. HELP!

    An AcroForm is the name given to the type of PDF form that you create in Acrobat. An XFA form is the type of form that you create in LiveCycle Designer. Although they are both PDF files, they are very different structurally and have significant;y different scripting models. So pay attention to the information on AcroForms and ignore anything about XFA. Be sure to get the sample PDF forms so you can look at how it works and where the scripts are placed.
    What you want to do will require scripting, and if you don't have the experience and are unable to use the information in the tutorials to create what you want, you might consider getting someone who has experience do this for you. I'll often suggest code if I can do so quickly, but what you want requires more than a few minutes.

  • SP2013 Set default views across multiple site collections (powershell)?

    I am the editor for a large SharePoint 2013 publishing site with approximately 130+ subsites. Based on our most popular content types, I've create two diffferent default views that will come in handy as we move to a distributed authorship model. (I'm thinking
    specifically about the Quick Edit/Excel-like feature to make quick changes to page/document metadata.) 
    The authors/content owner/editors have NO experience with SharePoint, so while the usual benefit of using views is that they can be tailored to individual needs, I'd like to start them off with something that is VERY easy to change on the fly using Ribbon >
    Library > Quick Edit. It's either that or, as just a power user in the CMS, go to each individual page and document library and change it manually, which could take days, if not longer. The ideal solution would look for all subsite of layout/content type
    foo and change the default views within the page libraries to a set of 17 metadata.
    Any help would be greatly appreciated!
    Ryan D Watters

    Hi Ryan,
    As I understand, you would like to change default view for page/document libraries via powershell.
    Firstly, you need to get all page/document libraries in the site, then add columns to default view.
    Here are some articles for your reference:
    1.Get all document libraries:
    http://www.sharepoint-journey.com/get-all-document-libraries-in-a-site-collection.html
    2.Managing List Views:
    https://nkelkar.wordpress.com/2011/06/21/powershell-create-lists-add-columns-set-new-default-view/
    http://get-spscripts.com/2012/02/managing-creating-and-deleting.html
    Regards,
    Rebecca Tu
    TechNet Community Support

  • File not found when adding a link to another site collection on the navigation page

    When I am adding a link to another site collection in the navigation page, I got the following error. Is there any limitation for the navigation setting? why can't we add a link to another site collection in the navigation page?
    This is SharePoint 2007

    Hi
    the URL provided is working?  (check it in separate browser window )
    Romeo Donca, Orange Romania (MCSE, MCITP, CCNA) Please Mark As Answer if my post solves your problem or Vote As Helpful if the post has been helpful for you.

  • Need help writing script to change version control for all document libraries in all sites

    Hello,
    I found this script, http://get-spscripts.com/2010/10/changing-sharepoint-list-settings-using.html that
    changes versions control for a document library.  However, many sites have many document libraries with different names.  The script below just changes a the settings to a document library that is named "Shared Documents", but does not
    change one if its named something else.  How can change the script to loop through all document libraries so their settings are changed?
    $site = Get-SPSite http://site
    $listName = "Shared Documents"
    #Walk through each site in the site collection
    $site | Get-SPWeb | 
    ForEach-Object {
    #Get the list in this site
    $list = $_.Lists[$listName]
    #Create a version each time you edit an item in this list (lists)
    #Create major versions (document libraries)
    $list.EnableVersioning = $true
    #Create major and minor (draft) versions (document libraries only)
    $list.EnableMinorVersions = $true
    #Keep the following number of versions (lists)
    #Keep the following number of major versions (document libraries)
    $list.MajorVersionLimit = 7
    #Keep drafts for the following number of approved versions (lists)
    #Keep drafts for the following number of major versions (document libraries)
    $list.MajorWithMinorVersionsLimit = 5
    #Update the list
    $list.Update()
    #Dispose of the site object
    $site.Dispose()
    Paul

    Sorry, I agree. It will update Style Library and other out of the box ones. Include the library titles in a collection and run the update against them provided these libraries are common across all sites. If not, you will have to first get an extract of
    all such libraries in all sites say in a CSV file and then update the script below to refer to the CSV records.
    Add-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction Stop;
    #List of Libraries to be updated.
    $Libraries = @("Shared Documents","My Document Library");
    $spAssgn = Start-SPAssignment;
    $site = Get-SPSite http://site -AssignmentCollection $spAssgn
    #Walk through each site in the site collection
    $site | Get-SPWeb -Limit ALL -AssignmentCollection $spAssgn |
    ForEach-Object {
    #Enumerate through all document libraries
    $_.Lists|Where{$_.BaseTemplate -eq "DocumentLibrary" -and $Libraries -contains $_.Title}|Foreach-Object{
    #Get the list in this site
    $list = $_;
    #Create a version each time you edit an item in this list (lists)
    #Create major versions (document libraries)
    $list.EnableVersioning = $true
    #Create major and minor (draft) versions (document libraries only)
    $list.EnableMinorVersions = $true
    #Keep the following number of versions (lists)
    #Keep the following number of major versions (document libraries)
    $list.MajorVersionLimit = 7
    #Keep drafts for the following number of approved versions (lists)
    #Keep drafts for the following number of major versions (document libraries)
    $list.MajorWithMinorVersionsLimit = 5
    #Update the list
    $list.Update()
    Stop-SPAssignment $spAssgn;
    This post is my own opinion and does not necessarily reflect the opinion or view of Slalom.

  • Error occured while creating site collection for the first time in SP2013

    While creating a new site collection in SharePoint 2013, I need to do atleast 4 times " Go back to Site" begore it appears properly. Could you please let me know why this error is occuering while we create site collection for the first time.
    Is it aknown issue or due to RAM contraints.I am using 16 GB of RAM in Web tier.

    You can get by with 16 GB of RAM so I am guessing that is not the cause.  Although, you could verify your memory utilization during the process.  As long as you don't exceed 95% you should be fine.  Next time, I would instead look up the
    error in the ULS logs using the correlation id and see if you can get more details of what is causing the error.
    Corey Roth - SharePoint Server MVP blog:
    www.dotnetmafia.com twitter: @coreyroth |
    SP2 Apps

  • My iphone 5 screen has gone black in the middle of updating a app. i have tried to back it up using itunes and restore it however it will not restore my phone as i have got the app find my iphone switched on. i cannot turn it off as the screen is black

    my iphone 5 screen has gone black in the middle of updating a app. i have tried to back it up using itunes and restore it however it will not restore my phone as i have got the app find my iphone switched on. i cannot turn it off as the screen is black. can anyone help me please??

    christobell86 wrote:
    ... it will not restore my phone as i have got the app find my iphone switched on.
    You can access iCloud.com on a computer to turn it off.
    http://support.apple.com/kb/PH2702

  • While browsing the internet with my iPhone 4S the screen goes black and it looks like it's turning off, but it pops up to the unlock keypad screen.

    While browsing the internet with my iPhone 4S the screen goes black and it looks like it's turning off, but it pops up to the unlock keypad screen. It has plenty battery and I was wondering if it is an issue of using too much of the iPhones RAM or not. I have no other apps open besides Messages. I am getting kind of worried as it started around two weeks ago and it has gotten increasingly frequent.

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these steps in order until the issue is resolved.

  • I deleted all of my music off of my old computer.  The music is still on my IPOD nano and I have a new computer.  Is there anyway I can get the music off of my IPOD on to Itunes on my new computer?

    I deleted all of my music off of my old computer.  The music is still on my IPOD nano and I have a new computer.  Is there anyway I can get the music off of my Ipod on to ITune on my new computer?  Help!

    Yes.  See http://support.apple.com/kb/hT1329

  • After upgrade to 10.6.2 the" entire message" search option grayed out

    Just upgraded to t10.6.2 but now in the mail when searching for a mail the entire mail search option is not available anymore it is there but it is grayed out it can not be activated. That was the beauty if mail.
    on the other hand the To do button now works again
    any idea

    You have not said, but I would guess you are using an IMAP account? If so, then might it be that the selection in Mail Preferences/Accounts/Advanced has gotten changed to not keep copies of messages (and/or attachments) for Offline Viewing? The Entire Mail search will be grayed out when copies of the messages are not stored locally.
    Ernie

  • I am trying to use the liquify tool for the first time. I created a new document (RGB/8) and before I place my photo, the liquify option is available. After I place the photo, the liquify option disappears. What am I doing wrong?

    I am trying to use the liquify tool for the first time. I created a new document (RGB/8). Before I place my photo, the liquify option is available. After I place the photo, the liquify option disappears. What am I doing wrong?

    What am I doing wrong?
    For one thing you forgot to mention the version of Photoshop you use.
    Did you place the image as a Smart Object? Liquify got Smart-capabilities with Photoshop CC.

  • Need help setting up WiFi - Xfinity with Network Switch, Time Capsule, Airport Express and Apple TV

    Hello - I recently got Comcast Xfinity service.  We had switched from a different service.  Our wifi service was never great, but prior to Xfinity, it worked decently.  But now that we have Xfinity, our wifi is much worse and very unreliable.  I am seeking advice on how to setup my various Apple wifi devices in my home.   I have attached a diagram that illustrates what I am dealing with.  We have a large old house with stone walls.  Comcast does not support this issue. 
    To explain the attached diagram, we have a total of 4 levels in our house - an unfinished basement, 1st floor, 2nd floor, and 3rd floor.  The Xfinity router is in the basement and it is connected to a NetGear 10/100 network switch.  I already have ethernet cables running from the network switch in the basement to various locations throughout the house.  So I have ethernet connected to my time capsule and ethernet connected to each of my 3 Airport express devices.  The dark lines running from the network switch to the various devices represents ethernet cable.
    The immediate problem that we are having is that we are unable to connect to our wifi networks.  The networks show on my mac laptop and my iPhone, for example, but I am unable to connect.  I know that I am inputting the correct password, but most of the time, we cannot get in.  Sometimes we can..... Very frustrating!  Also, due to the fact that I setup what I have over several years, I have multiple network names.  I once tried to fix that issue, but was unable to tackle it due to my lack of understanding.
    Here is what I am looking to accomplish:
    1. Seamless wifi access throughout our house.
    2. One name for our wifi network.  Right now we have multiple names for multiple networks.  Just want to simplify and have only one network.  (I guess that an additional "guest network" would be ok, but not absolutely necessary.
    Also, if you think I should disable the Xfinity wifi, and just rely on my mac wifi devices, I am perfectly fine with this.  Just tell me how to do so.
    I have no idea how where to start or how to set this up.  I imagine that I would need to disconnect everything and reset and start from scratch?  Can someone tell me what I should do?  Even general advice would be helpful, but the more specific, the better, given my limited understanding.  Any help or advice would be greatly appreciated.
    Thanks in advance!

    Your photo link is not working. Click on the camera icon to load an image. (Shorten the name of the file to something like WifiNetwork.jpg)
    Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240
    iOS 6 Wifi Problems/Fixes
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Boost Your Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Boost-Your-Wi-Fi-Signal.h tm
    Troubleshooting a Weak Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/Troubleshooting-A-Weak-Wi-Fi-Sig nal.htm
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    Wi-Fi or Bluetooth settings grayed out or dim
    http://support.apple.com/kb/TS1559
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • I am trying to use firefox as the web lauch for citrix ica but when I go to login into remote site - I get the message waiting to find website but it nver finds the website. Has anyone else had this problem?

    I am trying to use firefox as the web lauch for citrix ica client but when I go to login into remote site - I get the message waiting to find website but it nver finds the website. Has anyone else had this problem?
    When I installed firefox, it asked if I wanted to use safari settings and I said yes but I think this might be causing the problem. Safari is no longer compatible with citrix ica client. When I reinstalled firefox it automatically installs the safari info. Does anyone know how to re-install firfox without installing safari info?

    Did anyone ever suggest you reset your PRAM?
    http://docs.info.apple.com/article.html?artnum=2238
    Also might want to try resetting the SMC, although I
    doubt there's an issue there.
    http://docs.info.apple.com/article.html?artnum=304123
    I'm getting tired of people who supposedly know what
    they're doing simply guessing that resinstalling the
    OS might solve the issue. It's like trying to dissect
    a frog with a sledge hammer, and wondering why you
    didn't learn anything about anatomy in the process.
    These sorts of things, although bizarre, should be
    (and probably are) fixable without major surgery.
    Thanks for the suggestion... but I think my first question would be why these parameters would need re-setting? This is a new machine... It has never been shut down hard. It is used at most 10 hours per week... mostly using Office 2004 for MAC. I need to figure this out as I will soon need it as a Cs2/CS3 - Aperture workhorse.
    I too agree that it is best not to use a sledge when a scalpel is needed... but as a novice to the MAC world I may have been misled by Apple support. I seems to have fixed the symptoms ( some) but appears NOT to have addressed the cause... which is what I am after.
    Would TechTool Pro detect a bad HD or RAM?
    Thanks....

  • Include a Search Option

    Hi,
    Im new to Adobe Captivate and need help.
    I am working on a MENU slide set with multiple buttons. Each button points to a different project (exe) which is more of a video manual.
    My requirement is :
    1. To implement a search option within the main MENU project, so that I can search all the content of all the slides of the main MENU project only (say the buttons, texts ,etc using their labels or names)
    2. Can i import an .exe file into the MENU Project? and if yes Is there any disadvantages for that?
    I already tried TOC. But the indexing is limited on the Slide label.
    Thank You in Advance for the help!
    Bharat J.

    1. As you have found, the Search option is limited in Captivate and mostly designed for finding a TOC item in case the course is very large with many topics. 
    2. You cannot 'import' an EXE file into a Captivate project, however, you may be able to link to it from a button or other interactive object. Whether it will launch could depend on the end user's permissions and virus checking software settings.  The TOC is built from slide numbers and slide labels. So you cannot just add another item in that is not in your project.

  • When I open iTunes, it will not allow me to preview or download TV shows. The preview and download options are gray and will not let me view them. I have the latest Quicktime so I don't know what's wrong

    When I open iTunes, it will not allow me to preview or download TV shows. The preview and download options are gray and will not let me view them. I have tried installing the latest Quicktime but it tells me that I have to do software update and when I do, Quicktime does not appear to need an update. I have no idea what to do

    Click on your preference and check the Parental tab for possible restrictions.  Open iTunes, then click the iTunes menu, select preferences after the window opens click on the Parental icon, take a look at the content restrictions section.

Maybe you are looking for

  • Need help - session and lost attribute...

    Hi, We store some attributes in the session. In the web.xml we have session-timeout 20. (it's in minutes). If user use IE 5.5, and is inactive more than 1 minute, and then he send new request from browser (IE 5.5 or 5.0) to application running under

  • Problem with changes and visualization in the forms

    I have a problem with forms, the problem is the next, I do a modification in the database with a update or with form and in other station no visualized the change. The other station need close the form and open for visualize the modification. Why I h

  • Templates Problem in BI Publisher

    Hi All, I was new to BI Publisher, I had installed BI Publisher,BI Publisher Desktop successfully. Created an sql report in Publisher and created a template in MS word. The problem is,I had published the Template for a BI Publisher Report. when I try

  • Creating an Updated Document IBM Style?

    I don't think Acrobat does this but I thought I'd pose the question anyway. Maybe it's a Word of Framemaker question. Suppose one creates a document and it is page numbered. At some point, one wants to update the manual. Let's say put in a new page a

  • 110W power adaptor

    I have a 110W power adaptor from a 2006 Mac mini thats not being used, I need a power adaptor for a late 2009 Mac mini, I was wondering if the 2006 power adaptor is compatible with the late 2009 Mac mini? I know the late 2009 mac mini also uses a 110