New pages
(Latest | Earliest) View (newer 50) (older 50) (20 | 50 | 100 | 250 | 500)
- 19:01, 17 May 2012 Troubleshooting UPS (hist) [599 bytes] Wahidsaleemi (Talk | contribs) (Created page with '* [http://www.spdoctor.net/Pages/article.aspx?name=UPS-Checklist UPS Checklist] * Steps that UPS Provisioning Takes [http://blogs.msdn.com/b/spses/archive/2010/12/02/guide-to-use…')
- 08:15, 6 May 2012 Previews (hist) [40,519 bytes] Wahidsaleemi (Talk | contribs) (Created page with ' # <syntaxhighlight lang="XML"> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" > <xsl:param name="Keyword" /> <xsl:param name="Result…')
- 21:02, 12 April 2012 Test-Service (hist) [1,813 bytes] Wahidsaleemi (Talk | contribs) (Created page with '<syntaxhighlight lang="powershell"> # Name: Test-Service.ps1 # Author: Chris Harris # Version: 1.0 # Updated: 10/26/2008 # Description: Checks whether a service is running at…')
- 18:35, 8 March 2012 Find-UnusedSC (hist) [284 bytes] Wahidsaleemi (Talk | contribs) (Created page with 'From Todd Klindt, this will find all site collections that have no content modified in 90 days. <syntaxhighlight lang="PowerShell"> get-spsite -limit all | Where-Object { $_.Last…')
- 00:31, 27 February 2012 Backup SPFarm (hist) [60,881 bytes] Wahidsaleemi (Talk | contribs) (Created page with 'This is a copy of version 2.1 of [http://spfarmbackup.codeplex.com/ CodePlex: SPFarmBackup] = Params Files = <syntaxhighlight lang="xml"> <?xml version="1.0" encoding="utf-8"?> …')
- 04:08, 26 February 2012 FindSharePointFarms (hist) [869 bytes] Wahidsaleemi (Talk | contribs) (Created page with '* From: [http://www.wildwires.com/Blog/12-02-24/Finding_Every_Server_That_Has_SharePoint_Installed.aspx Stacy Drapers Blog] <syntaxhighlight lang="powershell"> $objSearcher = New…')
- 03:49, 26 February 2012 Masterpage.wsp (hist) [4,326 bytes] Wahidsaleemi (Talk | contribs) (Created page with '= Intro = This is taken from [http://sharepointchick.com/archive/0001/01/01/deploying-a-custom-master-page-in-sharepoint-2010.aspx Mirjam van Olst blog]. I've added my own clarif…')
- 04:50, 28 January 2012 MissingDependencies (hist) [1,197 bytes] Wahidsaleemi (Talk | contribs) (Created page with 'Some quick links to help diagnose the “Missing server side dependencies” errors from the health check analyzer in SharePoint 2010. ===MissingFeature Codeplex Solution=== * […')
- 20:42, 9 January 2012 Scratch (hist) [119 bytes] Wahidsaleemi (Talk | contribs) (Created page with 'http://office.microsoft.com/en-us/sharepoint-server-help/enable-reservation-of-resources-in-a-calendar-HA101810595.aspx')
- 17:20, 9 December 2011 Troubleshooting Kerberos (hist) [2,801 bytes] Wahidsaleemi (Talk | contribs) (Created page with '=Microsoft Support= [http://support.microsoft.com/default.aspx?scid=kb;en-us;326985 How to troublshoot Kerberos errors in IIS] =KRB_AP_ERR_MODIFIED= Source: [http://jespermchris…')
- 20:02, 7 November 2011 Get Managed Password (hist) [1,079 bytes] Wahidsaleemi (Talk | contribs) (Created page with 'This will retrieve the password for managed accounts when SharePoint has changed them. <syntaxhighlight lang="PowerShell"> function Bindings() { return [System.Reflection.Binding…')
- 02:31, 2 November 2011 Modify XML (hist) [709 bytes] Wahidsaleemi (Talk | contribs) (Created page with '= Modify web.config = On that note just used a nifty piece of PowerShell to set the "CallStack='True'" and "CustomErrors='Off'" on a site I was testing so thought I would send i…')
- 20:35, 1 October 2011 LowFileType (hist) [755 bytes] Wahidsaleemi (Talk | contribs) (Created page with 'The following PowerShell will set the Inclusions for Low File Types for the '''current user'''. <syntaxhighlight lang="PowerShell"> $Lowriskregpath ="HKCU:\Software\Microsoft\Win…')
- 17:36, 23 September 2011 Backup web.config (hist) [944 bytes] Wahidsaleemi (Talk | contribs) (Created page with 'From [http://sharepintblog.com/2011/09/15/backup-sharepoint-web-config-file-with-powershell/ Brian Cartmel] <syntaxhighlight lang="PowerShell"> #Define variables $webappName = "h…')
- 06:02, 17 August 2011 Backup ULS (hist) [1,740 bytes] Wahidsaleemi (Talk | contribs) (Created page with '<syntaxhighlight lang="powershell"> # PowerShell script to backup SharePoint 2010 diagnostic logs Add-PsSnapin Microsoft.SharePoint.PowerShell Start-SPAssignment -Global # Th…')
- 06:00, 10 August 2011 Fix Alerts (hist) [5,853 bytes] Wahidsaleemi (Talk | contribs) (Created page with 'Source: [http://blogs.microsoft.co.il/blogs/leonide/archive/2011/04/11/sharepoint-2010-sharepoint-alerts-don-t-work-after-upgrading-from-sharepoint-2007.aspx Link] Use this cons…')
- 17:19, 6 August 2011 ConvertClaims (hist) [2,034 bytes] Wahidsaleemi (Talk | contribs) (Created page with '<-- Authentication Source:[http://blogs.technet.com/b/speschka/archive/2010/07/20/migrating-from-windows-classic-auth-to-windows-claims-auth-in-sharepoint-2010-part-2.aspx St…')
- 07:30, 6 August 2011 Create PowerShell Profile (hist) [794 bytes] Wahidsaleemi (Talk | contribs) (Created page with 'This creates a profile for the current user. These are my preferred settings <syntaxhighlight lang="powershell"> New-item -type file -path $profile -force notepad $profile </syn…')
- 05:16, 6 August 2011 SharePoint WarmUp (hist) [4,275 bytes] Wahidsaleemi (Talk | contribs) (Created page with '<-- Maintenance From [http://ikarstein.wordpress.com/2011/08/03/sharepoint-warm-up-now-with-timeout/ Ingo Karstein] <syntaxhighlight lang="powershell'> # SharePoint Warmup …')
- 03:15, 6 August 2011 Backup SP Farm (hist) [17,909 bytes] Wahidsaleemi (Talk | contribs) (Created page with ''''<-- Maintenance''' Concept from [http://gallery.technet.microsoft.com/scriptcenter/9b99c435-8831-4c9e-a70b-1f13158ef22a Scripting Guy] <syntaxhighlight lang="powershell"…')
- 03:11, 6 August 2011 Backup IIS (hist) [1,319 bytes] Wahidsaleemi (Talk | contribs) (Created page with 'Concept from [https://www.nothingbutsharepoint.com/sites/itpro/Pages/Backup-and-Restore-SharePoint-2010-IIS-Web-Server-Configuration-through-PowerShell.aspx nbsp article] On a S…')
- 02:31, 6 August 2011 RBS Links (hist) [614 bytes] Wahidsaleemi (Talk | contribs) (Created page with '*[http://www.simple-talk.com/dotnet/.net-tools/sharepoint-2010-storing-documents-on-the-file-system-with-remote-blob-storage/ Good article on RBS; how it works; some vendors; ins…')
- 02:13, 6 August 2011 Global Visual Upgrade (hist) [255 bytes] Wahidsaleemi (Talk | contribs) (Created page with 'To upgrade all sites within a Web Application, type each line into SharePoint Management Console <syntaxhighlight lang="powershell"> $webapp = Get-SPWebApplication http://sitenam…')


