https://technet.microsoft.com/en-CA/library/ff431687.aspx
Friday, November 13, 2015
Tuesday, November 3, 2015
Configure Office Online Server (OWA) for SharePoint 2016 Azure Virtual Machine
http://www.learningsharepoint.com/2015/11/03/configure-office-online-server-owa-for-sharepoint-2016-azure-virtual-machine/?utm_source=dlvr.it&utm_medium=linkedin
Friday, October 30, 2015
How to make Azure Virtual Machine’s drive accessible by RemoteApp
http://www.learningsharepoint.com/2015/10/30/how-to-make-azure-virtual-machines-drive-accessible-by-remoteapp/?utm_source=dlvr.it&utm_medium=linkedin
Thursday, October 29, 2015
Windows Server 2016 Domain Controller : Disable User Access Control (UAC) with Group Policy
http://www.learningsharepoint.com/2015/09/08/windows-server-2016-domain-controller-disable-user-access-control-uac-with-group-policy/
SharePoint 2016 : Auto-Indexing List View (5000 Items Threshold)
http://www.learningsharepoint.com/2015/09/08/sharepoint-2016-auto-indexing-list-view-5000-items-threshold/
Which w3wp.exe PID corresponds to which application pool in IIS?
This blog post will show the different methods to identify the process ID (PID) for an active worker process (w3wp.exe) for an application pool
Method 1: - Internet Manager UI
- Open IIS Manager
- In the Connections pane, select the server node in the tree
- In Features View, double-click Worker Processes
- View the list of worker processes in the grid
Method 2: - Appcmd
Appcmd is used to list out the running worker processes. The path to the utility is not set and running directly from the command prompt will fail. Use the following instructions to set the path for the utility.
Location of appcmd.exe %systemroot%\system32\inetsrv
64-bit Windows, use Appcmd.exe from the %windir%\system32\inetsrv directory, not the %windir%\syswow64\inetsrv directory.
Set the path to the location
- Start -> Computer -> Right Click ->Properties
- Advanced System Settings -> Environment Variables
- System Variables -> Path -> Edit
- Add C:\Windows\System32\inetsrv
To start Appcmd.exe
- Click Start, and then click All Programs.
- Click Accessories, and then click Command Prompt.
- At the Command Prompt, > cd %windir%\system32\inetsrv, and then press ENTER if the path is not set. Otherwise, enter appcmd on the command line
To List the started worker processes
>appcmd list wps
For complete listing of appcmds Listing of IIS 7+ Appcmd
Method 3: - Task Manager
- Start Task Manager
- Select the Processes tab
- Add the following columns from View->Select Columns
- PID
- Command Line
- Sort the Image column and find the w3wp.exe process name
- Expand the Command Line column and the worker process name is on the far right
Method 4: - Process Explorer
- Download Process Explorer from http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx
- In Process Explorer, add the following columns from View->Select Columns->Process Image tab
- Image Path
- PID
- Image Type (64 vs. 32 bit)
- Command Line
- Find the svchost.exe in the Process column and the w3wp.exe processes are listed
- Expand the Command Line column and the worker process is listed
Sunday, October 18, 2015
Step-by-step Cumulative Update SharePoint 2013
https://www.linkedin.com/pulse/step-by-step-cumulative-update-sharepoint-2013-dyung-ngo
Tuesday, August 11, 2015
Missing Site Templates while migrating to SharePoint 2013
Issue:The following sites are using templates that are not yet supported after upgrade
Eg:
Eg:
http://servername/samples/<sitename> - #0
http://servername/samples/<sitename> - #1
http://servername/samples/<sitename> - #2
http://servername/samples/<sitename> - #3
Solution:
For this we need to check the site templates in both 14 and 15 hive folder.
We need to copy the missing site templates from 14 hive to 15 hive and also we must copy the site template related xml files (in 1033 folder )from 14 hive to 15 hive.
Power shell commands
==========================
1) Convert the web application from classic to Claims
==========================
Convert-SPWebApplication -Identity http://site url -From Legacy -To Claims -
RetainPermissions
==========================
2)To get the Site collection administrators list in web application
==========================
$web = Get-SPWeb http://site url
$web.SiteAdministrato
1) Convert the web application from classic to Claims
==========================
Convert-SPWebApplication -Identity http://site url -From Legacy -To Claims -
RetainPermissions
==========================
2)To get the Site collection administrators list in web application
==========================
$web = Get-SPWeb http://site url
$web.SiteAdministrato
==========================
3)Test the site before to start the migration
==========================
Test-SPContentDatabase -Name "database name" -WebApplication "site url"
==========================
4)Mount the data base
==========================
Mount-SPContentDatabase -Name "database name" -WebApplication "site url"
==========================
5)DisMount the data base
==========================
Dismount-SPContentDatabase -Name "database name" -WebApplication "site url"
==============================
6) Migrate users in web application
==============================
$wa = get-SPWebApplication http://mum-its-spqa1:91
$wa.MigrateUsers($true)
$wa.ProvisionGlobally()
==============================
7) Add/deploy/Remove the solutions in web application
==============================
3)Test the site before to start the migration
==========================
Test-SPContentDatabase -Name "database name" -WebApplication "site url"
==========================
4)Mount the data base
==========================
Mount-SPContentDatabase -Name "database name" -WebApplication "site url"
==========================
5)DisMount the data base
==========================
Dismount-SPContentDatabase -Name "database name" -WebApplication "site url"
==============================
6) Migrate users in web application
==============================
$wa = get-SPWebApplication http://mum-its-spqa1:91
$wa.MigrateUsers($true)
$wa.ProvisionGlobally()
==============================
7) Add/deploy/Remove the solutions in web application
==============================
Add-SPSolution -LiteralPath c:\contoso_solution.wsp
Install-SPSolution -Identity contoso_solution.wsp -GACDeployment -CompatibilityLevel 15
Uninstall-SPSolution -Identity contoso_solution.wsp
|
Wednesday, July 22, 2015
Retract/Remove Solution - SharePoint 2010
Follow the steps for STSADM:
- Open command prompt and navigate to C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\BIN
- Use the stsadm command = stsadm -o retractsolution -name solutionName.wsp -immediate
- and then remove the wsp = stsadm -o deletesolution -name solutionName.wsp
Follow the steps for Powershell:
- Go to All Programs => Microsoft SharePoint 2010 Products =>SharePoint 2010 Management Shell =>Run as administrator
- Uninstall-SPSolution -identity "solutionName.wsp"
- Remove-SPSolution -identity "solutionName.wsp"
How to download/export the .wsp files in sharepoint 2007
Download the powershell form this link: https://www.microsoft.com/en-us/download/details.aspx?id=20020
Then follow the below steps with power shell.
1) [Void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint")
2) $farm = [microsoft.sharepoint.administration.spfarm]::Local
3) $wsp = $farm.Solutions.Item(“ToolbarManager.wsp“).SolutionFile
4) $wsp.SaveAs(“c:\ ToolbarManager.wsp “)
Taking more time to retract the solutions fine in sharepoint
Below command can use for retracting the solutions if take more time.
STSADM Command: stsadm -o execadmsvcjobs
Wednesday, July 8, 2015
Sunday, July 5, 2015
Thursday, July 2, 2015
Saturday, June 27, 2015
Friday, June 19, 2015
Tuesday, May 26, 2015
Infopath's built in Username() function returning “i:0#.w|Domain\UserName” instead of just UserName
I can modify the UserName() return string to display only the username as opposed to "i:0#.w|Domain\UserName"
using substring-after function we can get only user name instead of "i:0#.w|Domain\UserName"
Eg:
Here I will use two controls one is "LoginUserFullName" ans second is "UserName"
"LoginUserFullName" control has "i:0#.w|Domain\UserName" now am going to store the user name with out domain in "UserName"control by using substring-after(LoginUserFullName, "\")
using substring-after function we can get only user name instead of "i:0#.w|Domain\UserName"
Eg:
Here I will use two controls one is "LoginUserFullName" ans second is "UserName"
"LoginUserFullName" control has "i:0#.w|Domain\UserName" now am going to store the user name with out domain in "UserName"control by using substring-after(LoginUserFullName, "\")
Sunday, May 24, 2015
UPS service Issue: While configuring the UPS, getting No permission of 'Replicating Directory Changes' at the parent domain(domain user name) for domain user name
Solutions:
Permission of 'Replicating Directory Changes' to parent domain for UPS user.
Eg: Here am using system account for UPS configuration. If is there any more than one node in Active Directory(Parent and child) we need to provide permissions for system account in both nodes in AD.
Monday, May 18, 2015
SharePoint on iPad - Microsoft BI
Microsoft has recently released a Cumulative Update 2011-12 for Microsoft SharePoint that enables consuming Microsoft BI data visualizations on Apple iPad running iOS 5 Safari browser. Not all visualizations are supported:
http://venkatpolepalli.blogspot.in/2014/04/sharepoint-on-ipad-microsoft-bi.html
http://venkatpolepalli.blogspot.in/2014/04/sharepoint-on-ipad-microsoft-bi.html
Sunday, May 17, 2015
SharePoint 2016 new features Ignite Updates
http://www.enjoysharepoint.com/Articles/Details/sharepoint-2016-new-features-ignite-updates-21150.aspx
SharePoint Server 2016 Hardware and Software Requirements
http://www.enjoysharepoint.com/Articles/Details/sharepoint-server-2016-hardware-and-software-requirements-21141.aspx
Saturday, May 16, 2015
3 SharePoint Paths for the Next 10 Years
http://www.cmswire.com/cms/social-business/3-sharepoint-paths-for-the-next-10-years-029170.php?utm_content=bufferfd0b9&utm_medium=social&utm_source=linkedin.com&utm_campaign=buffer#null
Friday, May 8, 2015
Thursday, May 7, 2015
How to reduce the size of logging database OR How to purge the old data from Logging Database
Below link is very usefull to reduce the size of logging database
http://blogs.msdn.com/b/manhar/archive/2012/04/17/how-to-reduce-the-size-of-logging-database-or-how-to-purge-the-old-data-from-logging-database.aspx
http://blogs.msdn.com/b/manhar/archive/2012/04/17/how-to-reduce-the-size-of-logging-database-or-how-to-purge-the-old-data-from-logging-database.aspx
Subscribe to:
Posts (Atom)