Once the recording is done in Microsoft Teams, after the meeting is completed; we may need to share the recording with the attendees and also sometimes needed to allow them to download the recording. Microsoft Teams provides options to share the recording with the attendees and also allows them to download the recording. Through this […]
An Introduction to Apache Pulsar
Apache Pulsar is a distributed messaging system and a streaming platform originally developed by Yahoo, in 2012; the main goal was to develop a scalable and reliable messaging platform to address the gaps which were not fulfilled with the existing Enterprise Messaging Systems (EMS). It was Open-Sourced in the year 2016; contributed to the Apache […]
Windows 10 – How to Find and Manage Notifications?
Notifications are alerts to alert the user(s) to perform a particular action, or to notify the user(s) for the actions performed or to be performed by the Operating System or Applications. How to Find Notifications in Windows 10? At the right end of the Taskbar, we can find the notification area. We can also call […]
PowerShell – How to create temporary files?
Yet times, we need to create temporary files in PowerShell scripts to store the temporary data for the program’s need. These files are created in the temporary folder which was set in the Operating System configuration. PowerShell provides New-TemporaryFile cmdlet to do the job for us to create a temporary file(s) through the scripts. Create […]
PowerShell – How to display and open Control Panel items?
Usually, we open control panel items from the Control Panel. Sometimes it is required to open them through the commands or APIs and PowerShell provides useful commands to display the control panel items and allows to open them. Note that, some control panel items will appear only when the right hardware is detected; with that, […]
PowerShell – How to enable or disable network adapters?
PowerShell provides a set of cmdlets to enable or disable network adapters. These cmdlets we are going to discuss through this article, are in NetAdapter module. Enable a network adapter Enable-NetAdapter cmdlet enables a network adapter. To connect to the network, network adapters must be enabled. Through its’ -Name the parameter we can pass the […]
PowerShell – How to get network adapter details?
PowerShell provides a bunch of cmdlets through the NetAdapter module to manage network adapters. Through this article, we are going to discuss how we get the network adapter details, properties, etc, using PowerShell cmdlet(s). Get-NetAdapter is to get the details/properties of the network adapter. The below command shows the basic details of the network adapter. PS […]
Microsoft Teams – How to change notification style?
Microsoft Teams provides an option to change the notification style to allow us to select either Teams built-in style or native Operating System style. Through this article, we are going to discuss how to change notification style in Teams. Step 1. Open Microsoft Teams. Step 2. On the top right side of the window, you […]
PowerShell – How to unzip files?
In our previous article, we have discussed about zip / compress the selected files or directories using PowerShell Compress-Archive cmdlet. Through this article, we are going to discuss how to unzip the zipped files. Expand-Archive cmdlet – Unzip files from Archived file(s) PowerShell provides Expand-Archive cmdlet to unzip the zipped files. Through its -Path argument […]
Powershell – How to zip / compress / archive selected files or directories?
Windows PowerShell provides commands to zip (compress) and unzip the files. Through this article, we are going to discuss the PowerShell command to zip the selected files or directories. Compress-Archive cmdlet – Compress / Zip / Archive the selected files or directories PowerShell provides Compress-Archive cmdlet, to archive the specified files or directories. We can […]