Action: Send an HTTP request to SharePoint Endpoint: _api/web/fields('FIELD_ID') Headers: { "Content-Type": "application/json;odata=verbose", "IF-MATCH": "*", "X-Http-Method": "PATCH" } Body: { '__metadata': { 'type': 'SP.FieldLookup' }, 'Group': 'YOUR GROUP NAME' }
Etiqueta: group
Agrupar archivos MD en un único HTML y convertirlo a PDF
Si tenemos varios archivos Markdown (MD) y queremos exportarlos a un PDF necesitamos utilizar alguna aplicación de terceros. En este caso usaremos Pandoc. Pandoc es un conversor universal de documentos y lo podéis encontrar aquí: https://pandoc.org/ Una vez lo tengáis instalado, podeis abrir la consola Command Prompt (cmd), navegar hasta la carpeta donde tengamos los …
Sigue leyendo Agrupar archivos MD en un único HTML y convertirlo a PDF
Crear Team Site en SharePoint Online Sin Office 365 Group con PnP PowerShell
Para crear un Team Site sin que tenga un grupo de Office 365 asignado por defecto tan solo debemos específicar el template "STS#3" a la hora de crearlo. Ejemplo con PnP PowerShell: Connect-PnPOnline -Url https://MY_TENANT.sharepoint.com New-PnPTenantSite ` -Title "MY_SITE" ` -Url "https://MY_TENANT.sharepoint.com/sites/MY_SITE" ` -Owner "MY_USER@MY_TENANT.onmicrosoft.com" ` -Template "STS#3" ` -TimeZone 3 ` -Wait Para obtener …
Sigue leyendo Crear Team Site en SharePoint Online Sin Office 365 Group con PnP PowerShell
Windows Server 2012: Add Administrators to Active Directory in 6 Steps
1. Go to Administrative Tools 2. Open Active Directory Users and Computers 3. Go to Builtin and you will see some Groups, like Administrators 4. Double-click on Administrators group 5. Go to Members Tab and click on Add... to insert users as administrators 6. You will see new users in the Members List
SharePoint Calendar – View All Resources By Default
If we create a calendar for resource reservation may not be able to see the items created, because each time we enter this list you must select which resources you want to see. To show you all we have to create the default calendar as follows: 1. Create New Group Calendar. Before click the "Create" …
Sigue leyendo SharePoint Calendar – View All Resources By Default