This blog contains the technical articles on different technologies along with architectural models
Chocolatey Package Manager
Get link
Facebook
X
Pinterest
Email
Other Apps
-
Chocolatey is a command-line package manager for Windows operating system based on the NuGet package manager. Chocolatey manages its own package feed; however, you can set up your own local repository for the enterprise environment to control the package's source for installation. If you are familiar with Linux or macOS environments, the Chocolatey is similar to Apt and Homebrew, respectively
Prerequisites
Windows 10 + / Windows Server 2012+
PowerShell 5.1 +
Installing Chocolatey on Windows
You can install Chocolatey by either using the PowerShell script method or downloading the offline installer. Follow the steps below to download and install Chocolatey using the online method:
Open PowerShell in Administrator Mode by right-clicking on the application and choosing Run as Administrator:
You need to update the script execution policy on your device before installing any package. Run the following command in the PowerShell terminal to allow script execution for the system:
Type Y when prompted for confirmation and allow the changes:
The output of the command will look like this:
Verify the installation using the following command while in the same terminal session:
Like most other PowerShell commands and tools, Chocolatey also comes with an inbuilt search and help command to make it easier to find the packages and get help for associated commands.
You can search for packages using the list, search, or info command. All these commands are an alias for each other and display similar results. The result for a package winrar looks like this:
Another useful command to know while using Chocolatey is the info command. Unlike the search command, this command gives out detailed information about the package and lists install instructions and any accepted parameters for the installation of the package. Below is an example of the Winrar package:
Another common argument that you might often use when identifying any command's possible commands and arguments are the help argument. The --help, /? or -? can be used to get assistance with almost any command.
Installing Chocolatey Packages
Once you have done enough research on the package you want to install, the next step is to download and install the package. The command used to install the chocolatey package is choco installfollowed by the name of the package of choice. The install command first downloads the package from the remote repository and then installs it on the operating system as part of one command.
The output of the command choco install Winrar will look like this:
Run the following command and see the results in action:
Microsoft Office365 EWS servers have been extended to support authorization via the industry-standard OAuth 2.0 protocol. Using OAUTH protocol, user can do authentication by Microsoft Web OAuth instead of inputting user and password directly in application Microsoft / Office 365 OAuth + EWS We can use the OAuth authentication service provided by Azure Active Directory to enable our application to connect with IMAP, POP or SMTP protocols to access Exchange Online in Office 365. To use OAuth with our application we need to register application on Azure Active directory and other steps also we need to do to get the access token back. Below are the steps To use Microsoft/Office365 OAUTH in your application, you must create an application in https://portal.azure.com . Sign into the Azure portal using either a work or school account or a personal Microsoft account. If your account gives you access to more than one tenant, select your account in the top ...
IoT technology The Internet of Things (IoT) is a system of interrelated computing devices, mechanical and digital machines. IoT is a network of sensors where data is exchanged, using different connectivity protocols, with systems. This set up can be leveraged to create a new business application or to enhance an existing process. The exchange of the data can be bi-directional between sensors and systems Examples of sensors can be temperature sensors, motion sensors, flow meters, heart meter monitors, biometric devices, smoke detectors, & etc Examples of connectivity can be wifi, radio, GPRS, GSM, LAN, WAN, & etc. Examples of systems can be a remote health monitoring applications, SCADA applications, etc Look at next slide about the complete flow of IoT process Examples A doctor in US would like to monitor the heart rate and ECG of a patient in Hyderabad. This is done with the patient having sensors attached to him that collect the ECG data and the hea...
Object-oriented programming can be defined as a programming model which is based upon the concept of objects. Objects contain data in the form of attributes and code in the form of methods. In object-oriented programming, computer programs are designed using the concept of objects that interact with the real world. Object-oriented programming languages are various but the most popular ones are class-based, meaning that objects are instances of classes, which also determine their types Ex : C++,Java,C# Object Oriented Programming concepts · Classes · Objects · Data abstraction · Data encapsul...
Comments
Post a Comment