Skip to main content

Add a SharePoint folder to Windows 7’s Explorer

Windows XP has a feature called "My Network Places" where you could very easily make a website folder (SharePoint folders) or FTP folders available in Windows Explorer. Windows 7 also has the feature, but it is somewhat hidden. Here’s how to make it work in Windows 7.

1. Using Internet Explorer browse to the location that you’d like to make available in Windows Explorer.

2. In SharePoint click the ‘Action’ button, and select ‘Open in Windows Explorer’

3. A new explorer window will open.

4. Right-Click the folder that you would like to make available in Windows Explorer and select ‘Copy address as text’.

5. Right-click Computer, and click "Add a network location".

5. Click Next.

6. Select ‘Choose a custom network location’.

image

7. Paste in the URL copied in step 4. And, click ‘Next’.

8. Give the location a name:

9. Click ‘Finish’

image

10. This new location will now be available in windows explorer by the name provided.

image

Comments

Popular posts from this blog

How to get SPUser or SPGroup from Person or Group field

You have person or group field in SharePoint list and you want to programmatically get the user or person. The below code to gets SPUser from User or Group field in the list when multiple choice and Groups are not allowed in the field: //get SPUser SPFieldUser userField = (SPFieldUser)item.Fields.GetField("Users"); SPFieldUserValue userFieldValue = (SPFieldUserValue)userField.GetFieldValue(item["Users"].ToString()); SPUser user = userFieldValue.User; This part of code would help you to get SPUser when multiple choice is allowed and groups are not allowed: //Multiple choices are allowed SPFieldUser userField = (SPFieldUser)item.Fields.GetField("Users"); SPFieldUserValueCollection userFieldValueCollection = (SPFieldUserValueCollection)userField.GetFieldValue(item["Users"].ToString()); foreach (SPFieldUserValue userFieldValue in userFieldValueCollection) {     Console.WriteLine("     " + userFieldValue.User.LoginName); } And when group

SharePoint publishing page scheduling

In SharePoint 2010 publishing enabled team site collection is not showing schedule button in publish ribbon. Solution: Here is how to enable it  though the UI: Locate the SharePoint Server Web site on which you want to enable content approval and item scheduling. Click  Site Actions , click  Site Settings , and then click  Modify Pages Library Settings . Under  General Settings , click  Versioning Settings . Click  Yes  next to  Content Approval , and then click  OK . Click  Manage item scheduling .   Click to enable the  Enable scheduling of items in this list  check box, and then click  OK .

Changing Content Type Hub URL

Change the Hub URL through powershell by using: Set-SPMetadataServiceApplication -Identity " " -HubURI " " For Ex: Set-SPMetadataServiceApplication -Identity "Managed Metadata Service" -HubURI "http://contenttype.Domain.Com" When you try to do this you get this rather scary message: This is SharePoint telling you that this is a major thing so be careful! Essentially all your content types that you have published out will be removed if they can, and you have to republish all of your content types out again which can cause some issue.