A modo resumen: Planifica que vas a necesitar para ejecutar el flow antes de empezar a crear acciones sobre la marcha.Usa naming convention para el flow, usa títulos descriptivos para las acciones y define las variables siempre del mismo modo (por ejemplo, usando Camel Case).Evita concatenar IFs siempre que sea posible (Puedes usar Terminate y …
Etiqueta: start
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 …
Stop-Start SharePoint Services On Server using Management Shell and their Names
We can start and stop SharePoint server services using SharePoint Management Shell and this Scripts: get-spserviceinstance | ? {$_.Typename -eq "YOURSERVICENAME"} | Stop-SPServiceInstance get-spserviceinstance | ? {$_.Typename -eq "YOURSERVICENAME"} | Start-SPServiceInstance We don't have to know the service GUID, we only need its name. For example: get-spserviceinstance | ? {$_.Typename -eq "User Profile Service"} | Stop-SPServiceInstance …
Sigue leyendo Stop-Start SharePoint Services On Server using Management Shell and their Names
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
How To: Activate ASP.NET Session (HttpContext.Current.Session is null)
Follow this steps to activate the ASP.NET Session in your Server: 1. Open the SharePoint Management Shell. 2. Execute the following command: Enable-SPSessionStateService –DefaultProvision 3. You've to change the parameter "enableSessionState" to true on each web application you have: pages enableSessionState="true" enableViewState=.....
Remove HREF attribute from any link with JQuery
You can remove any href that contains specific text inside the link. If you want to remove the link to any page that contains "DispForm" you can do it like this: $('a[href*="DispForm"]').removeAttr("href"); '*=' means 'Contains', but you can use anything you need: *= Contains = Equal != Not equal ^= Starts With $= Ends With