Articles on Trending Technologies

Technical articles with clear explanations and examples

How to display specific properties from Get-Service output in PowerShell?

Chirag Nagrekar
Chirag Nagrekar
Updated on 22-Jan-2020 3K+ Views

To display the other properties of the services than the default ones (which are supported by Get-Member), you need to pipeline the Select-Object (alias Select) command. For example, in the below command we will display theService name, start type and status of the service.CommandGet-Service | Select-Object Name, StartType, StatusOutputName                                                   StartType  Status ----                                               ...

Read More

How to get all properties and methods available for the service in PowerShell?

Chirag Nagrekar
Chirag Nagrekar
Updated on 22-Jan-2020 3K+ Views

To display all the properties and methods available for the get-service cmdlet you need to pipeline Get-Member (alias gm). MemberType ‘Property’ is to display the specific property like machinename, servicename, etc. and with the MemberType ‘Method’ you can perform specific operations on the object, for example, Start, Stop, Pause the service, etc.CommandThe below command is to display all the members (properties, methods) the Get-Service.Get-Service | Get-MemberOutputName                         MemberType ----                         ---------- Name             ...

Read More

Identify Your Stakeholders: Before the Ship Sinks

Samual Sam
Samual Sam
Updated on 22-Jan-2020 198 Views

Let’s discuss a scenario of a company where no formal project management processes is in place. A company which believes more on manpower rather than processes. For example, it is a construction company and recently won a tender to construct a flyover in a busy road in the city.That’s a great news for the company, the company grabs the work order from the mouths of its competitors and jumped to start making the flyover. They informed the architects, engineers and the workers to start the work. Everyone planned their work as usual. The architects draw their diagrams, and the engineers ...

Read More

How to get the services on a local computer with PowerShell?

Chirag Nagrekar
Chirag Nagrekar
Updated on 22-Jan-2020 666 Views

To get the services on the local computers you need to use Get-Services cmdlet. This command will give you all the services which have running, stopped, stop pending or start pending status, and which has startup type is Automatic, Manual or Disabled.The output of the default table will display Status, Name, and DisplayName three columns.CommandGet-ServiceOutputStatus   Name               DisplayName ------   ----               ----------- Stopped  AarSvc_158379      Agent Activation Runtime_158379       Running  AdobeARMservice    Adobe Acrobat Update Service Stopped  AdobeFlashPlaye... Adobe Flash Player Update ...

Read More

In Google Photo Gallery, Enable Face Recognition

Samual Sam
Samual Sam
Updated on 22-Jan-2020 779 Views

In the modern world, almost all prefer to have their own space. That’s not all, we also find people using different advanced methods to secure their gadgets, especially mobile phones using pin numbers, drawing patterns, etc. More recently, we find, people preferring to have facial recognition or fingerprint mobile lock in order to have more security.Facial recognition is a great feature on Google photos, similar to Facebook or Apple photos it has built in features like facial recognition and it can automatically organize photos based on the people’s faces.A significant point to remember, in case if you are accessing your ...

Read More

ISO It's time for an Upgrade

Samual Sam
Samual Sam
Updated on 22-Jan-2020 246 Views

ISO standards and certifications are in the market since few decades now. They have made a significant impact on the industries and has created their own stand. They are now a synonym for an effective Quality-measuring tool. With due course of time, the ISO standards have been improved and are in accord with the current trends. High-LevelStructure of ISO has seen a complete revamp to accommodate the need for an Integrated Management System (IMS).Need for IMSAn organization usually opts for more than one certification, due to need to remain in the competition and for better business opportunities. It was observed ...

Read More

Key Technology Trends in 2017

Samual Sam
Samual Sam
Updated on 22-Jan-2020 291 Views

Every year the growth rate of information and technology sector is in the faster phase. 2016 was one of the major accelerators for the growth of the sector. There were few challenges for the companies with existing technologies and upcoming technologies. Beyond the challenges, few technologies remained at the top and will continue to be in the top list in the upcoming year 2017 too. Let’s see what are the technologies which are going to be the boom in the year 2017 and what are the changes which are going to happen in the existing technology.Cloud ComputingFor the past 5+ ...

Read More

How to Install Taskwarrior (Terminal Based Todo Application)

Sharon Christine
Sharon Christine
Updated on 22-Jan-2020 347 Views

Taskwarrior is an open-source, cross-platform time and task management tool. It has a command-line interface rather than a graphical user interface. If you spend a lot of time on Linux terminal (as a developer or system administrator) then constantly switching to a web app or another GUI based todo applications may not be a very productive thing to do. In that case, you may want to try a simple command line application instead. This article explains How to install Taskwarrior in Ubuntu.To install Taskwarrior, use the following command –$ sudo apt-get install taskThe sample output should be like this –Building ...

Read More

How to Install Subversion Server on Ubuntu 16.04

Sharon Christine
Sharon Christine
Updated on 22-Jan-2020 512 Views

Subversion is a free/open supply variation manipulate process (VCS). That is, Subversion manages records and directories, and the alterations made to them, over time. This makes it possible for you to get better and older models of your information or evaluate the historical past of how your data is modified. On this regard, many people suppose of a variation to manage procedure as a variety of “time computing device.”Before installing subversion, it should require apache. To install apache, use the following commands-$ sudo apt-get update $ sudo apt-get install apache2To get more information about apache installation, read this articleTo install ...

Read More

Laptop Updates For The Month of January 2016

Samual Sam
Samual Sam
Updated on 22-Jan-2020 172 Views

January 2016 has seen a lot of releases in the laptop arena that left the markets not only surprised but also crowded. Some of them have been setting new trends, while others are retaining the sales in the market. All in all, let us have a look at some of the best devices that are being listed in the trending gadgets currently.Asus Zenbook UX305 – Budget Friendly ?Weighing only 1.2Kg, it is easy to carry anywhere you go, and will never feel the burden. Lightweight always is seen along with a lot ofLightweight always is seen along with a lot ...

Read More
Showing 55501–55510 of 61,297 articles
Advertisements