win10安装sdkman(posh-gvm)
前言吐槽:有一次专注于搜索结果,走了些弯路。其实踏踏实实按照官网的指引去做,根本没那么多事儿。鄙视自己,尽信书不如无书。
1、打开sdkman官网:http://sdkman.io/index.html。
里面的powershell链接跳到github。
2、安装
2a、打开powershell,输入or粘贴
(new-object Net.WebClient).DownloadString('https://raw.githubusercontent.com/flofreud/posh-gvm/master/GetPoshGvm.ps1') | iex
若遇到异常:“请求被中止: 未能创建 SSL/TLS 安全通道。”,请在powershell中输入
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
2b、下载后,导入模块
Import-Module posh-gvm
2c、输入指令验证
gvm help
3、后续补充
3a、powershell的默认执行策略是Restricted,所有脚本都不运行,需要更改:
set-executionpolicy unrestricted
3b、Powershell控制台的许多更改只会在当前会话有效,需要profile来保存一些基本的初始化工作。
我选择创建私有profile,内容暂时只添加一行:
Import-Module posh-gvm
Tip:executionpolicy用管理员权限改为了unrestricted,有安全风险。如果按照默认的restricted,profile的导入无法执行。
关于profile的说明:https://technet.microsoft.com...
网上找到的中文博客:https://www.pstips.net/powers...
相关推荐
82216135 2020-11-19
83206733 2020-11-19
86276537 2020-11-19
83266337 2020-11-19
85276131 2020-11-18
82246435 2020-11-18
82256036 2020-11-18
86256434 2020-11-17
82374197 2020-11-17
梁柏林 2020-11-16
zhouboxiao 2020-11-16
88286632 2020-07-12
IT之家 2020-03-11
80266038 2020-11-15
82791794 2020-09-16
89539834 2020-09-16
梦想软件设计师 2020-09-16