Podemos cambiar el típico logo azul de SharePoint (situado arriba a la izquierda) de todos nuestros sites con el siguiente comando a través de Power Shell: (get-spsite http://mySite.com.AllWeb)s | foreach { $_.SiteLogoUrl = "/_layouts/15/images/NewLogo.jpg"; $_.Update()}
Etiqueta: imagen
How to embed an image in HTML (Usually for Emails)
If you're developing some HTML code that it can be accessed by thousands of people at the same time, if you use images like this: <img alt="" src="http://myimage" /> You could trigger a huge load to your server, because every request of every image goes to your server. Instead of that you could embed the …
Sigue leyendo How to embed an image in HTML (Usually for Emails)