win10安装sdkman(posh-gvm)

前言吐槽:有一次专注于搜索结果,走了些弯路。其实踏踏实实按照官网的指引去做,根本没那么多事儿。鄙视自己,尽信书不如无书。

1、打开sdkman官网:http://sdkman.io/index.html
里面的powershell链接跳到github。

win10安装sdkman(posh-gvm)

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

win10安装sdkman(posh-gvm)

3、后续补充
3a、powershell的默认执行策略是Restricted,所有脚本都不运行,需要更改:

set-executionpolicy unrestricted

3b、Powershell控制台的许多更改只会在当前会话有效,需要profile来保存一些基本的初始化工作。
我选择创建私有profile,内容暂时只添加一行:

Import-Module posh-gvm

Tip:executionpolicy用管理员权限改为了unrestricted,有安全风险。如果按照默认的restricted,profile的导入无法执行。

win10安装sdkman(posh-gvm)
关于profile的说明:https://technet.microsoft.com...
网上找到的中文博客:https://www.pstips.net/powers...

相关推荐