Ir al contenido principal

Entradas

O365 - Forms - Transferir la propiedad de un formulario

Fuente :  https://support.office.com/es-es/article/transferir-la-propiedad-de-un-formulario-921a6361-a4e5-44ea-bce9-c4ed63aa54b4 Si ha creado una encuesta, una prueba o un sondeo, puede moverlos fácilmente a un grupo para que todos los miembros del grupo se conviertan en propietarios de ese formulario. Transferir el formulario a un grupo En el explorador Web, vaya a  Forms.Office.com . En la pestaña  mis formularios  , busque el formulario que desea transferir. Haga clic en  más acciones de formulario    y, a continuación, seleccione  mover . Nota:  Solo puede mover el formulario si es el propietario de ese formulario. No puede transferir la propiedad de un formulario que está compartido con usted. Seleccione el grupo al que desea transferir el formulario y, a continuación, haga clic en  mover . El formulario que ha movido aparecerá en la pestaña  formularios de grupo  . ¿Qué ocurre con el libr...

AZURE - Finding the Azure AD Connect server in the forest

What if customer doesn’t know where the Azure AD Connect server is deployed . Find the MSOL Account on Users Container in Active Directory. Copy the Description of the Account – you can find the Azure AD Connect Server Deployed on. Account created by the Windows Azure Active Directory Sync tool with installation identifier ‘f9be57f6eab24e6b22222e69a’  running on computer ‘AD-CONNECT-SERVER01’  configured to synchronize to tenant ‘ azure365pro.onmicrosoft.com’. This account must have directory replication permissions in the local Active Directory and write permission on certain attributes to enable Hybrid Deployment. if Server is moved recently and if they use the default Azure AD Service Account You can login to Microsoft 365 Admin Center Health – Directory Sync Status – Directory Sync Service Account may help on the server name

SQL - No se puede adjuntar la base de datos - Error de activación de archivo - El registro no se puede reconstruir

No se puede adjuntar la base de datos - Error de activación de archivo - El registro no se puede reconstruir Una vez estuve en una situación en la que mi cliente se enfrentó a un desastre.  Perdieron el disco que tenía el archivo de registro de transacciones.  Como no tenían una supervisión efectiva, se dieron cuenta de que las tareas de copia de seguridad estaban fallando.  Básicamente, solo tienen archivos MDF para las bases de datos de usuarios y se les dejó la opción de reconstruir el registro.  Hay una opción no documentada llamada ATTACH_FORCE_REBUILD_LOG.  Aquí está el comando que funcionó en mi laboratorio. CREATE DATABASE SQLAuthority ON (FILENAME = 'C:\MSSQL\DATA\SQLAuthority_original.mdf' ) FOR ATTACH_FORCE_REBUILD_LOG Restaurar desde una copia de seguridad es siempre la mejor solución, por encima de eso, este es el último recurso.  Fuente:  https://blog.sqlauthority.com/2016/11/04/sql-server-unable-attach-database...

PowerShell - SharePoint - How to get SPO site created date

You can get SPO site collection date by using below PowerShell script Get-SPSite -Limit All | % { $root = $_ . rootweb; $date = $root . created . toShortDateString();   Write-Host " $( $root . url) was created on $( $date ) " }    Fuente: https://www.c-sharpcorner.com/forums/how-to-get-spo-site-created-date 

PowerShell - SPOnPremise - Calculate and Set Distributed Cache Size

#calculation from:  http://technet.microsoft.com/en-us/library/jj219613.aspx $membanks = get-wmiobject Win32_PhysicalMemory $sum = 0 $i = 1 foreach ( $membank in $membanks ) {   write-host "Capacity Memory $i = " ( $membank . capacity / 1024 / 1024 )   $sum = ( $membank . capacity / 1024 / 1024 ) + $sum   $i = $i + 1 } write-host "Sum of Memory = " $sum $cachesize = ( $sum - 2048 ) / 2 if ( $cachesize > 16384 )   {   $cachesize = 16384 #not more than 16GB   } write-host "Distributed Cachesize will be updated to: " $cachesize #Update-SPDistributedCacheSize -CacheSizeInMB $cachesize Fuente: https://blogs.technet.microsoft.com/sp/?p=213 

PowerShell - SharePointOnline - Queries the active site collections in O365 tenant to generate reports based on template type used by the site collection

# Requires Windows PowerShell version 3 $tenant = "" <#   Description:     Queries the active site collections in O365 tenant to generate reports based on template type used     by the site collection. And will generate report with all site collections in tenant.     Details of the discovered sites are written to a .csv file for each template type.     The .csv files will be found in the directory the script is ran from.   Requirements:     SharePoint Online Management Shell - Current build     http://www.microsoft.com/en-us/download/details.aspx?id=35588 ============================================================== #> # Set tenant values $SPOAdminCenter = "https:// $tenant -admin.sharepoint.com" $AdminCredential = "" #Report Files Names $reportNameGroups = "GroupsSiteInfo_ $(( Get-Date ) . ToString( "yyyy-MM-dd_hh.mm.ss" )) .c...