services – POFTUT

Windows WMIC (Windows Management Interface Command) Tutorial with Examples

WMIC or Windows Management Interface Command is a simple command line tool used to issue WMI commands. WMI command generally used to query all of the system related information like Computer Name, BIOS Serial Number, Mac Address etc. Batch WMIC WMIC provides two type of usage. Batch usage is the most popular where we can … Read more

How To Check Windows Service Status With Get-Service Command In Powershell

Service are one of the most important part of the operating systems. There are different tools and commands to list these services. Powershell provides Get-Service commandlet in order to list these services and filter them acording to the provided filter. List All Services We will start with a simple use case where we will list all … Read more

Python Standard Library

Python is popular language where it provides a lot of features. These features provides easy ways to accomplish programming tasks. But only using Python language features is not enough to write successful applications. There is also big need for libraries. Libraries provides easy to to generic functions, classes, lists and various structures. Python Standard Library is … Read more

Linux Systemctl Service Management Tutorial

Hi, today we will learn managing Linux services with systemd or systemctl. While Linux kernel booting, it loads drivers, mount file systems, starting memory management, creating system calls, etc. But after that what? Linux starts an init process to create a further system and user services and processes. To manage system services we need a … Read more

How To Start, Stop and Get Status of Linux Service With Systemd?

Services are all over the Linux world. Enterprise Linux world turn over services. There are different tools to manage Linux services like Sys-V, upstart, systemd etc. Systemd is gaining popularity in recent times. Fedora, CentOs, RedHat uses systemd for a long time. Ubuntu started to use systemd too. Here we will look into basics of … Read more