博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Module in powershell
阅读量:5905 次
发布时间:2019-06-19

本文共 1426 字,大约阅读时间需要 4 分钟。

 

Get-Module

~\Desktop> Get-Module

ModuleType Version Name ExportedCommands

---------- ------- ---- ----------------
Manifest 6.1.0.0 Microsoft.PowerShell.Management {Add-Content, Clear-Content, Clear-Item, Clear-ItemProperty...}
Manifest 6.1.0.0 Microsoft.PowerShell.Utility {Add-Member, Add-Type, Clear-Variable, Compare-Object...}
Script 1.0.0.0 posh-git {Add-PoshGitToProfile, Expand-GitCommand, Format-GitBranchName, Get-GitBranchStatusColor...}
Script 2.0.0 PSReadLine {Get-PSReadLineKeyHandler, Get-PSReadLineOption, Remove-PSReadLineKeyHandler, Set-PSReadLineKeyHandler...}

 

Find-Module

Finds modules from an online gallery that match specified criteria.

Install-Module

Downloads one or more modules from an online gallery, and installs them on the local computer.

 Import-Module

 

Adds modules to the current session.

The Import-Module cmdlet adds one or more modules to the current session.

The modules that you import must be installed on the local computer or a remote computer.

 

Import-Module imports a module only into the current session.

To import the module into all sessions, add an Import-Module command to your PowerShell profile.

For more information about profiles, see .

 

$PROFILE  

C:\Users\clu\Documents\PowerShell\Microsoft.PowerShell_profile.ps1

文件内容

Import-Module 'C:\Users\clu\source\repos\GitHub\Other\posh-git\src\posh-git.psd1'

Import-Module 'C:\Users\clu\source\repos\GitHub\Other\PowerShell\build.psm1'

 

转载地址:http://jocpx.baihongyu.com/

你可能感兴趣的文章
《面向对象的思考过程(原书第4版)》一1.1 基本概念
查看>>
《HTML5开发手册》——1.13 小结
查看>>
《21天学通HTML+CSS+JavaScript Web开发(第7版)》——第2章 准备好工具 2.1网站剖析...
查看>>
第70届戛纳电影节:优酷全网首次广播级直播,阿里云提供海外专线技术
查看>>
Linux有问必答:如何在 Ubuntu 15.04 的 GNOME 终端中开启多个标签
查看>>
CentOS 下安装 LEMP 服务(nginx、MariaDB/MySQL 和 php)
查看>>
ROS机器人程序设计(原书第2版)2.1 理解ROS文件系统级
查看>>
v聊聊 Swift 3.0 - 新版本对我们的影响
查看>>
Ubuntu Builder —— 一个制作自己的发行版的工具
查看>>
myeclipse构建MAVEN
查看>>
Android应用框架之BroadcastReceiver
查看>>
java.util.concurrent.ConcurrentSkipListSet 基于跳跃链表的并发set
查看>>
PostgreSQL 10.0 preview 多核并行增强 - 索引扫描、子查询、VACUUM、fdw/csp钩子
查看>>
nlp文本处理开源工具,及聊天机器人实现
查看>>
云效有约|从CTO视角出发,技术资源都去哪儿了?
查看>>
双11技术攻略:企业云架构的正确姿势
查看>>
【云栖大会】再谈开源大数据
查看>>
Sublime秘籍,一般人我不告诉他
查看>>
【ANDROID游戏开发十三】(保存游戏数据 [下文])详解SQLITE存储方式,并把SQLITE的数据库文件存储在SD卡中!!!...
查看>>
INPUT链为DROP时,如何才能正常连接外部网络?
查看>>