Borrar DLL de la GAC sin GACUTIL

En ocasiones podemos encontrarnos con situaciones en las que no se nos actualizan las DLL de la GAC y no podemos borrarlas. Nuestro primer intento sería utilizar el comando GACUTIL: http://idttechblog.wordpress.com/2014/09/25/borrar-dll-de-la-gac/ El problema es que si estamos en un entorno de producción no deberíamos tener instalado Visual studio (ante todo, buenas prácticas) por lo que no …

Sigue leyendo Borrar DLL de la GAC sin GACUTIL

SharePoint 2013: Stop Crawls using PowerShell

Run this Script in PowerShell to stop all your Crawls: Get-SPEnterpriseSearchCrawlContentSource -SearchApplication "Search Service Application" | ForEach-Object {$_.StopCrawl()} You could also start full Crawls on every Content Source changing the StopCrawl command like this: Get-SPEnterpriseSearchCrawlContentSource -SearchApplication "Search Service Application" | ForEach-Object {$_.StartFullCrawl()}

Start Local HTTP Server in MacOS X with One Simple Command

You can start a local web server to try your web site with one single command. Open Terminal, navigate to the folder that you want to use as a local server and type one of the following commands: To open with browser typing: http://localhost:8000 python -m SimpleHTTPServer If you don't want to write the port …

Sigue leyendo Start Local HTTP Server in MacOS X with One Simple Command