- Azure for Architects
- Ritesh Modi
- 191字
- 2021-07-08 09:33:32
PowerShell
PowerShell is an object-based command-line shell and scripting language used for administration, configuration, and management of infrastructure and environments. It is built on top of the .NET framework and provides automation capabilities. PowerShell has truly become a first-class citizen among IT administrators and automation developers for managing and controlling the Windows environment. Today, almost every Windows and many Linux environments can be managed by PowerShell. In fact, almost every aspect of Azure can also be managed by PowerShell. Azure provides rich support for PowerShell. It provides a PowerShell module for each resource provider containing hundreds of cmdlets. Users can use these cmdlets in their scripts to automate interacting with Azure. Azure PowerShell module is available through the web platform installer as well as through the PowerShell Gallery. Windows Server 2016 and Windows 10 provides package management and PowerShellGet modules for quick and easy downloads and installation of PowerShell modules from the PowerShell gallery. The PowerShellGet module provides the Install-Module cmdlet for downloading and installing modules on the system. Installing a module is a simple act of copying the module files at well-defined module locations:
Import-module PowerShellGet Install-Module -Name AzureRM -verbose
- Java程序設計(慕課版)
- Java范例大全
- Oracle從新手到高手
- 跟老齊學Python:輕松入門
- FLL+WRO樂高機器人競賽教程:機械、巡線與PID
- C#程序設計基礎:教程、實驗、習題
- Learning Hunk
- Java EE 7 Performance Tuning and Optimization
- C/C++數據結構與算法速學速用大辭典
- 從零開始學Android開發
- Python Programming for Arduino
- HTML5移動Web開發
- C/C++代碼調試的藝術(第2版)
- 計算機程序的構造和解釋(JavaScript版)
- Microsoft Windows Identity Foundation Cookbook