Categories
How-To Software Technical

Ways to run ollama as a service

There are several ways you can run Ollama as a service, but one of the most popular options is using Google Cloud Run. This platform allows you to deploy and run containerized applications on-demand without managing infrastructure. You can use Docker containers to package and deploy your Ollama model, and then use Cloud Run to […]

Categories
How-To Software Technical

Enable POP3 in Exchange 2010

They say a picture is worth a thousand words — here is one for ya Run this command to configure the POP3 service to start automatically. Set-service msExchangePOP3 -startuptype automatic Run this command to start the POP3 service. Start-service -service msExchangePOP3 – jermal

Categories
How-To Technical

Remove Windows Service

By executing the following command you can remove a windows service: C:> sc delete [service name] TIP:  If you don’t know the service name you’re trying to delete, you can find it by going to Start>Run>services.msc and locate the service name in the service’s property page.   Attn:  No screenshots were harmed in forming this […]