Browse by Tags

Tagged Content List
  • Wiki Page: SharePoint 2010: How to Copy a List Using PowerShell Script

    Table of Contents Introduction The Basic PowerShell Code Importing the Function Examples of Using the Function See Also Introduction This script, originally created by Rashu Rahul , was in response to an article he wrote on copying SharePoint lists programmatically within same site collection...
  • Wiki Page: How to Use PowerShell to Backup all Resource Control Display Configuration (RCDC) Objects

    FIM ScriptBox Item Summary The objective of this script is to create a backup of all ObjectVisualizationConfiguration objects as XML that are exported by FIM Automation cmdlets. Each Resource Control Display Configuration (RCDC) object is saved in a separate file and the name of the the file...
  • Wiki Page: How to Use PowerShell to Create a Criteria-Based Set

    FIM ScriptBox Item Summary The script code below creates a criteria-based sample Set. Script Code 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 023 024 025 026 027 028 029 ...
  • Wiki Page: BizTalk Server: Administrator Queries and Scripts

    Table of Contents Introduction SQL Scripts PowerShell Scripts Other scripts Other languages See Also Introduction This site is dedicated to gather information for all the resources related to scripting for BizTalk administrators. It should include information with a reference to the exact location...
  • Wiki Page: Windows PowerShell Survival Guide

    This article was formerly titled "Automating IT Tasks with Windows PowerShell Overview."** Table of Contents Introduction and Getting Started Purpose of this Document Scope of this Document Learning PowerShell Fundamentals Guides Quick Reference Materials Videos Covering PowerShell Fundamentals...
  • Wiki Page: How to Use PowerShell to Generate the Custom Expression for the Domain Attribute Flow

    FIM ScriptBox Item Summary The script code below generates the custom expression that is necessary to flow the domain attribute from AD DS to FIM. The custom expression is stored in the clipboard of your computer. Please see the following articles for more details: How Do I Synchronize...
  • Wiki Page: SharePoint 2010: Setup State Service

    PowerShell $EnvironmentName = '<ENVIRONMENTPREFIX>' $ApplicationName = 'State Service' $ApplicationProxyName = $ApplicationName #Change below database name to fit your naming standard $DBname = $EnvironmentName + '_SharePoint_service_State'...
  • Wiki Page: SharePoint 2010: Setup Managed Meta Data service

    Point & click installation Click Central Administration (left menu). Under System Settings, click Manage services on server. Start Managed Metadata Web Service (link on the right side). Click Central Administration (left menu). Under Application Management, click Manage service applications...
  • Wiki Page: SharePoint 2010: Installation & Setup

    This is a public installation guide within the Microsoft Wiki. We will describe both point and click installation as well as the powershell scripted versions. Each section is broken down seperately for a complete customized installation. - If you dont want to think that far, use the wizard. Its proberly...
  • Wiki Page: SharePoint 2010: Création et Modification d'une Document Library et ajout des documents (fr-FR)

    Creation d’une document library Ouvrez Power Shell avec les droits Administrateur et tapez les commandes suivantes: $spWeb = Get-SPWeb -Identity http://Monserveur $listTemplate = [Microsoft.SharePoint.SPListTemplateType]::DocumentLibrary $spWeb.Lists.Add("GokanDocuments"...
  • Wiki Page: SharePoint 2010: How to Set up a Farm

    Point and Cl ick Installation Start SharePoint 2010 Product Configuration Wizard og Click Next Click Yes to restart services Mark "Create a new server farm" and click Next Write databaseserver: "SQL server name or alias or SQL cluster name" Write database...
  • Wiki Page: SharePoint 2010: Business Continuity Plan

    What is a Business Continuity plan? Business continuity is the activity performed by an organization to ensure that critical business functions will be available to customers, suppliers, regulators, and other entities that must have access to those functions. These activities include many daily...
  • Wiki Page: How to Use PowerShell to Export FIM Requests to a Database/File

    Summary This powershell script will query FIM for all "Requests" that have occurred in the past 7 days for any target "Person". This script requires the Quest Powershell Snapin (otherwise you will have to translate the calls ) It is designed to translate the default reference...
  • Wiki Page: Putting a Group of Computers into Maintenance Mode via Windows PowerShell

    Have you ever found yourself in need of putting a group of systems into Maintenance Mode in System Center Operations Manager 2007 R2? If so you can use the script below. Note that in SCOM 2007 R2 there is no need to put the health service and health service watcher into Maintenance Mode separately...
  • Wiki Page: Display Subject Alternative Names of a Certificate with PowerShell

    Subject Alternative Names (SANs) are stored as System.Security.Cryptography.X509Certificates.X509Extension objects in the PowerShell Certificate Provider . First you can get the cert you want to view. $cert = get-childitem cert:\localmachine\my\73844B2206C170903185E777F65E969247462741...
  • Wiki Page: AD FS 2.0: How to Bulk Add Trust Relationships and Claim Rules for Testing

    Overview Included in this article is a Powershell script sample which allows bulk additions and deletions of test Claims Provider Trusts, Relying Party Trusts, and Claim Rules. These test trust relationships and claim rules may be useful for web testing in a lab environment. Usage Be...
  • Wiki Page: Server 2010: Windows 8 using Server Farm installation type without a Domain Controller

    Hi, I'm Guilherme Santos and today I will show you how install SharePoint Server 2010 based on Server Farm Configuration Installation Type on Windows 8 disconnected from a domain controller. First off, you need to follow the steps on the following guide - Setting Up the Development Environment...
  • Wiki Page: SharePoint 2010: Cleaning Up Deleted Databases

    A service application database was deleted in SQL Server Management Studio. After a while, I noticed errors in the event viewer on the WFE and ULS logs complaining that SharePoint was not able to login to the database that I deleted. Obviously, SharePoint still thought that the database existed so...
  • Wiki Page: SharePoint 2010: Powershell ile SharePoint'u nasil kullanabilirim (tr-TR)

    SharePoint 2010 ile ön plana çıkan bir başka özellik PowerShell commend-lets leri ile yönetilebilir olması. Bu makalemde sizlere nasıl SharePoint Server 2010’ü User interface olmadan kullanılacağını göstereceğim. Powershell ekranına erişmek için Windows 7 veya SharePoint ‘un özel PowerShell’de başlatmak...
  • Wiki Page: SharePoint 2010: Delete Manager from UserProfile

    Today's task revolved around removing the Manager I set when testing the profile pages on the my site portal. I had set the manager on a service account so it had to be removed to stop appearing as a colleague to team members and potentially exposing a security risk in giving away the service account...
  • Wiki Page: List all SPNs Used in your Active Directory

    There are a lot of hints & tips out there for troubleshooting SPNs (service principal names). Listing duplicate SPNs is fairly easy, use the “setspn -X” command and you’ll find out. But how do you find out which SPNs are used for which users and computers are used for this? Quite some scripts...
  • Wiki Page: How to Run FIM 2010 PowerShell Cmdlets on non-FIM Machine

    ##DRAFT IN PROGRESS### Table of Contents Intro Credits Get the FIM libraries Check the target machine OS version Use the right tool version x64 x86 Register the FIM libraries Load the pssnap-in Run Powershell with remote URI Hints & Tips References See also Intro <yes, I know, more...
  • Wiki Page: How to Use PowerShell to Display the Statistics of a Management Agent

    FIM ScriptBox Item Summary The script lists the synchronization statistics of a management agent. Script Code 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 023 024 025 026 027 ...
  • Wiki Page: SharePoint 2010 & O365: Windows PowerShell Command Builder

    Announced at the SharePoint Conference 2011 is a new online Silverlight tool for IT Pros and Power Users for SharePoint 2010 and Office 365: "The Windows PowerShell Command Builder for SharePoint 2010 Products and Office 365 is a Silverlight application that enables IT pros and power users...
  • Wiki Page: SharePoint 2010: Windows PowerShell Command Builder

    Microsoft has released a useful tool for making PowerShell scripts to work with SharePoint 2010 and Office 365. The application is written using the technology of Silverlight, which makes it convenient to use. The interface is simple and easy to use (Fig. 1) In Fig. 1 . Interface...
Page 6 of 23 (556 items) «45678»
Can't find it? Write it!