Microsoft Sharepoint Workspace Mac Rating: 3,6/5 3712 reviews
-->

Collaborate for free with online versions of Microsoft Word, PowerPoint, Excel, and OneNote. Save documents, spreadsheets, and presentations online, in OneDrive. Mar 13, 2020  How do I use the folder synchronization feature of SharePoint Workspace 2010 with Microsoft Office for Mac 2011? I can use Microsoft SharePoint Workspace 2010 in Windows to setup a folder to synchronize across multiple computers, and it works great with my other laptop running Windows 7 and SharePoint Workspace 2010.

  1. Download and install the SharePoint Migration Tool. On October 21, 2019, Microsoft acquired Mover, a leading provider of cloud file migration, including admin-led and self-service offerings.As customer demand to move content to the cloud continues to grow, Mover will help make it easier than ever for customers to migrate files to Microsoft 365.
  2. SharePoint Workspace (previously known as Microsoft Office Groove) is a collaboration software program that helps teams work together dynamically and effectively, even if team members work for different organizations, work remotely, or work offline.

You can use Visual Studio or your own custom development environment to build SharePoint Framework solutions. You can use a Mac, PC, or Linux.

Note

Before following the steps in this article, be sure to Set up your Office 365 tenant.

Ctrl+click each of these folders if present, and Move to Trash.UBF8T346G9.ms.UBF8T346G9.Office.UBF8T346G9.OfficeOsfWebHostRemove from Dock and restart.If you put any of the Office applications in your Dock, go to each one and ctrl + click Options Remove from Dock.Restart your Mac to complete the uninstall.Related Topics. Microsoft office for mac. You should back up these folders before you delete them.Click the back arrow to go back to the Library folder and open Group Containers. Note that some of these folders may not be present.com.microsoft.errorreporting.com.microsoft.Excel.com.microsoft.netlib.shipassertprocess.com.microsoft.Office365ServiceV2.com.microsoft.Outlook.com.microsoft.Powerpoint.com.microsoft.RMS-XPCService.com.microsoft.Word.com.microsoft.onenote.mac. All of your Office for Mac 2011 apps will continue to function. Warning: Outlook data will be removed when you move the three folders listed in this step to Trash.

You can also follow these steps by watching this video on the SharePoint PnP YouTube Channel:


Install developer tools

Mac

Install NodeJS

Install NodeJS LTS version 10.

  • If you are in Windows, you can use the msi installers (x86 or x64) in this link for the easiest way to set up NodeJS (notice that these direct links evolve over time, so check the latest v10 from the above directory).
  • If you have NodeJS already installed, check that you have the correct version by using node -v. It should return version 10.19.0.

Important

The current supported LTS version of NodeJS for the SharePoint Framework is Node.js v8.x and Node.js v10.x. Notice that 9.x, 11.x or 12.x versions are currently not supported with SharePoint Framework development.

Note

If you are building SharePoint Framework components for SharePoint Server 2016, refer to additional details in the SPFx & SharePoint Server 2016 section for additional details on which version of NodeJS you should install.

Install a code editor

You can use any code editor or IDE that supports client-side development to build your web part, such as:

The steps and examples in this documentation use Visual Studio Code, but you can use any editor of your choice.

Install Yeoman and gulp

Yeoman helps you kick-start new projects, and prescribes best practices and tools to help you stay productive. SharePoint client-side development tools include a Yeoman generator for creating new web parts. The generator provides common build tools, common boilerplate code, and a common playground website to host web parts for testing.

Enter the following command to install Yeoman and gulp:

Install Yeoman SharePoint generator

The Yeoman SharePoint web part generator helps you quickly create a SharePoint client-side solution project with the right toolchain and project structure.

To install the SharePoint Framework Yeoman generator globally, enter the following command:

For more information about the Yeoman SharePoint generator, see Scaffold projects by using Yeoman SharePoint generator.

Install a modern web browser

Microsoft Sharepoint Workspace Audit Service

You should be using a modern web browser like Edge, Chrome or Firefox as the development browser. Local workbench does not support usage of Internet Explorer 11.

Trusting the self-signed developer certificate

The SharePoint Framework's local webserver, used when testing your custom solutions from your development environment, uses HTTPS by default. This is implemented using a development self-signed SSL certificate. Self-signed SSL certificates are not trusted by your developer environment. You must first configure your development environment to trust the certificate.

A utility task is included in every SharePoint Framework project in the form of a gulp task. You can elect to do this now, or wait until you create your first project as covered in the Build your first SharePoint client-side web part (Hello World part 1): Preview the web part tutorial.

Once a project has been created with the Yeoman generator for the SharePoint Framework, execute the following command from within the root folder of the project.

Note

This assumes you have installed all dependencies with npm install after creating the project. This step will install all gulp tasks as part of a project.

Optional tools

Following are some tools that might come in handy as well:

SPFx & SharePoint Server 2016

SharePoint Server 2016 uses the SharePoint Framework (SPFx) v1.1. Around this the time of the v1.1 release, NodeJS was transitioning from NodeJS v6.x to v8.x. In this update, NodeJS introduced a change where the default HTTP protocol switched from HTTP1 to HTTP2. SPFx v1.1 was written for HTTP1, not HTTP2, so this change impacted the local web server for SPFx v1.1 projects.

In NodeJS v8.x, you can force HTTP1 by setting the following environment variable to instruct NodeJS to use HTTP1 instead of the default HTTP2: NODE_NO_HTTP2=1. This environment variable only exists in NodeJS v8.x. Therefore, if you are building SPFx solutions for SharePoint Server 2016, you should use NodeJS v8.x.

Microsoft Sharepoint Workspace Administrator

This issue does not impact later versions of SPFx because they have been updated to support HTTPs.

For more information, refer to issue #1002.

Next steps

You are now ready to build your first client-side web part!

Troubleshooting

Microsoft Sharepoint Workspace Download

Unable to Trust the Self-signed Development Certificate

Microsoft Sharepoint

If you are working with SharePoint Server 2016 / SPFx v1.1, first check the SPFx & SharePoint Server 2016 section above to ensure you are running a supported version of NodeJS.

In some cases, executing the command gulp trust-dev-cert, does not have the desired effect of trusting the self-signed development certificate on your machine. In rare cases such as these, you may need to delete a hidden folder that's generated in your profile folder. Locate & delete the folder <homedir>/.gcb-serve-data and then try to trust the self-signed development certificate again.

Unable to Install Packages with NPM - Corporate Proxies

Microsoft Sharepoint Workspace Mac

If your development environment is behind a corporate proxy, you need to configure NPM to use that proxy. Refer to the npm-config documents on how to configure your development environment behind a corporate proxy.. specifically the proxy & http-proxy settings. More information: How to setup Node.js and Npm behind a corporate web proxy

Note

Microsoft Sharepoint Workspace 2010

If you find an issue in the documentation or in the SharePoint Framework, report that to SharePoint engineering by using the issue list at sp-dev-docs repository. Thanks for your input in advance.