Aptillon, Inc. – Director and Founding Partner – SharePoint MVP since January 2008 Blog:

Slides:



Advertisements
Similar presentations
Aptillon, Inc. – Director and Founding Partner – SharePoint MVP since January 2008 Blog:
Advertisements

Configuring SharePoint 2013 and Office 365 Hybrid – Part 1
Great people, great experience, great passion Matthew McDermott Director Aptillon, Inc. SharePoint Search Center Configuration.
en-us/sharepoint/fp
Gary Lapointe SharePoint MVP.  SharePoint MVP  Blog: 
What’s New for IT Pros in Microsoft Dynamics AX 2012 Joris de Gruyter – MVP, MCT Sikich, LLP.
SharePoint 2010 Business Productivity: What's new for Developers in Microsoft SharePoint 2010 Matthew McDermott, MVP Aptillon, Able Blue
Great people, great experience, great passion Administering SharePoint with Windows PowerShell Go Beyond the Management Shell with SharePoint and Windows.
SharePoint 2010 First Look: What's new for Developers in Microsoft SharePoint 2010 Matthew McDermott, MVP Aptillon, Able
SharePoint 2010 Administration using PowerShell Brian Caauwe Senior Consultant – SharePoint – MCTS March 20, 2010.
Automating Microsoft Azure with PowerShell MMS Minnesota 2014 Trevor Sullivan and David O’Brien – #MMSMinnesota.
INTELLIGENT DATA SOLUTIONS SSIS Tips and Tricks Bradley Schacht Blog:
Alonso Robles Solutions Architect speakTECH
What’s New for IT Professionals in Microsoft® SharePoint® Server 2013 (Day 2) Sayed Ali (MCTS, MCITP, MCT, MCSA, MCSE ) Senior SharePoint.
Managing Citrix Farms Using MFCOM and Powershell.
FEATURES AND CUSTOMIZATIONS THAT IMPROVE SHAREPOINT’S USER ADOPTION Patrick Curran, MCT SPSDC 12/07/2013.
Microsoft and Community Tour 2011 – Infrastrutture in evoluzione Community Tour 2011 Infrastrutture in evoluzione.
Microsoft SharePoint Server 2010 for the Microsoft ASP.NET Developer Yaroslav Pentsarskyy
Great people, great experience, great passion Solving Enterprise Search Challenges Matthew McDermott, MVP Aptillon, Austin & AbleBlue.
SQL Server Security By Mattias Lind For PASS Security VC.
Konstantin Kosinsky Microsoft Certified Trainer, Microsoft MVP Blog:
Managing System Center 2012 Configuration Manager with Windows PowerShell MEMUG August 23 rd 2013.
Online Conference June 17 th and 18 th SharePoint Online Administration with PowerShell.
ADAPTING YOUR ETL SOLUTION TO USE SSIS 2012 Presentation by Devin Knight
Virtual techdays INDIA │ 9-11 February 2011 Monitoring and managing remote Windows 7 desktops with Windows PowerShell Ravikanth C │ Dell Inc.
Corey Hynes HynesITe, Inc Session Code: SRV317 Objectives Let you walk out of here, being able to run a script against an OU of computers, to make some.
Todd Klindt and Shane Young SharePoint911. Who is this Todd guy?
SharePoint Panel Presented by Shawn Shell, Principal.
Privileged Access Management (PAM) with MIM 2016
FEATURES AND CUSTOMIZATIONS THAT IMPROVE SHAREPOINT’S USER ADOPTION Patrick Curran, MCT SPSDC 06/08/2013.
Yaroslav Pentsarskyy Involved in SharePoint since 2003 SharePoint MVP (2009- Present) Blog: sharemuch.com.
UNDERSTANDING YOUR OPTIONS FOR CLIENT-SIDE DEVELOPMENT IN OFFICE 365 Mark Rackley
Working with PerformancePoint in SharePoint 2013 Christina Wheeler.
Module 14: Advanced Topics and Troubleshooting. Microsoft ® Windows ® Small Business Server (SBS) 2008 Management Console (Advanced Mode) Managing Windows.
The 2007 Microsoft Office System Servers Enterprise Content Management, Workflow and Forms Martin Parry Developer and Platform Group, Microsoft Ltd
Application Lifecycle Management - automated builds and testing for SharePoint projects Chris O’Brien SharePoint MVP OSP432.
Blog PowerShell for Managing Active.
Software services delivering SharePoint, Mobile, and Business Intelligence solutions Understanding and implementing the remote provision pattern in SharePoint.
Inspirirani ljudima. Ugasite mobitele. Hvala.. Paolo Pialorsi Senior Consultant PiaSys ( Publishing apps for SharePoint 2013 on Microsoft.
Configure on-premises SharePoint environment for App/Add-in Koncern-it Dias 1.
Wharton Computer Consulting, Inc. PowerShell Basics for SQL Server One Tool to Manage All SQL Servers Michael Wharton
What's New in Visual Studio 2010 Debugging Brian Peek Senior Consultant, ASPSOFT, Inc. Microsoft MVP - C#
Introduction to Enterprise Search Corey Roth Blog: Twitter: twitter.com/coreyrothtwitter.com/coreyroth.
Sponsored by: Professional Association for SQL Server Advanced Reporting Services Slicers.
Pass Microsoft Installing and Configuring Windows Server 2012 exam in just 24 HOURS! 100% REAL EXAM QUESTIONS ANSWERS Microsoft Installing.
Joy Rathnayake Senior Architect – Virtusa Pvt. Ltd.
Building AD-SQL-APP Server on AZURE
Real-world OS Deployment Samples
Microsoft Azure Deployment Planning Services
Managing Windows Server 2012
Achieve more in less time using the new SQL PowerShell
Automate Custom Solutions Deployment on Office 365 and Azure
PowerShell 2.0 Remoting Ravikanth C.
Policy Based Management: Introduction & implementation
Microsoft Azure Deployment Planning Services
Excel Services Deployment and Administration
Microsoft Azure Deployment Planning Services
PowerShell and ConfigMgr – New cmdlets for 1511 and Beyond
Managing Exchange Online using PowerShell
Five mistakes to avoid when deploying Enterprise Mobility + Security
Cloud Data Replication with SQL Data Sync
Building your SharePoint Farm with PowerShell
SQL Server Management Studio Tips and Tricks
@archladies archladies.com
OneDrive for Business: Administration, Security and Compliance
Michelle Haarhues Keeping up with SSMS.
PowerShell + SharePoint Online – An Admins Guide to Administration in the O365 Cloud Marrell Sanders – Sr. SharePoint Administrator SharePoint Saturday.
Making your M Queries Dynamic in Power BI
Presentation transcript:

Aptillon, Inc. – Director and Founding Partner – SharePoint MVP since January 2008 Blog:

Documentation: help Discovery: – Get-Command – Get-Member – Get-Verb

Not like throwing an exception! help about_Preference_Variables Exact same thing

Baloon Tips Text to Speech

Bug: Enables Kerberos Omitting will disable Kerberos Bug: Enables Kerberos Omitting will disable Kerberos

But Wait! What’s wrong with this example?!?!

Don’t rely on the SPAssignmentCollection!

Be Careful! Extra Work is Needed for normal function calls!

Type help about_functions_advanced_parameters for more examples

Provides cmdlet properties via a hash table Create a hash table: – $varname Pass to cmdlet –

When activating Features via PowerShell, close your PowerShell session after each updated Solution deployment – Applies to any references to code that have been updated, not just Features (but Features are the more common scenario)

Run Enable-PsRemoting on the client and server machines Must Enable CredSSP on client and server machines – Client: Enable-WSmanCredSSP -Role Client - DelegateComputer – Server: Enable-WSmanCredSSP -Role Server Increase the MaxMemoryPerShellMB setting on server (default is 150MB) – Set-Item WSMan:\localhost\Shell\MaxMemoryPerShellMB 1024 Decrease MaxShellsPerUser and MaxConcurrentUsers (default is 5) – Set-Item WSMan:\localhost\shell\MaxShellsPerUser 2 – Set-Item WSMan:\localhost\shell\MaxConcurrentUsers 2

Use Register- PSSessionConfiguration to preload SharePoint PowerShell Snap-In – Must also set threading options Use Set-PSSessionConfiguration with -ShowSecurityDescriptorUI parameter to set security Provide configuration name when calling New-PSSession

– Buy my book PowerShell.com – lots of good tips PowerShell Cheat Sheet: –

SharePoint MVPs Microsoft Certified Master Consultants, Trainers, Authors, Speakers, Bloggers Great People, Great Experience, Great Passion Matthew McDermottDavid MannGary LapointeDarrin BishopMaurice PratherDan HolmeTodd Baginski

Questions?