LoginSignup
0
1

More than 1 year has passed since last update.

Windows10環境

Last updated at Posted at 2020-04-26

家庭でのWindows10マシン(デュアルブートで2つあるSSDのうち、もう片方にはubuntuが入っている)

  • 2020/04/26

steamにてモンハンを起動すると、ドライバが古いとか言われる。
nvidiaのHP[https://www.nvidia.co.jp/Download/driverResults.aspx/159534/jp]からドライバをインストール。
geforce experienceのところでエラー?になった模様。とりあえず閉じるで完了。

  • 2020/07/24

OracleのHP[https://java.com/ja/download/win10.jsp] よりJavaSetup8u261をダウンロード、インストール

  • 2021/12/04

PowerShell7をインストール
(現在のPowerShell5と共存できる模様)

現在のバージョン確認

PS C:\Users\tommy> $PSVersionTable.PSVersion

Major  Minor  Build  Revision
-----  -----  -----  --------
5      1      19041  1320

更新

>winget search Microsoft.PowerShell
名前               ID                           バージョン ソース
------------------------------------------------------------------
PowerShell         Microsoft.PowerShell         7.2.0.0    winget
PowerShell Preview Microsoft.PowerShell.Preview 7.2.0.10   winget

>winget install --id Microsoft.PowerShell --source winget

結局ポップアップウィンドウが出るんですけど。オプションかなんかで抑制できるのかどうかは不明。

  • dotnet.core sdk 3.1をインストール

なぜか.net core はruntimeしか入っていなかったので、sdkを改めて入れた。
dotnet-sdk-3.1.415-win-x64.exe

  • dotnet sdk 6.0 をインストール

dotnet-sdk-6.0.100-win-x64.exe

  • dotnetで使用可能なpowerShellライブラリをインストール
C:\Users\tommy>dotnet tool install --global PowerShell
  • powershell に azure power shellを追加 正直、powershellあんまり使ってないので、ちゃんとわかっているか不明だが、、、、
PS C:\Users\tommy> Install-Module -Name Az -Scope CurrentUser -Repository PSGallery

# 以下のようなエラーが、、、
Install-Package: The following commands are already available on this
system:'Login-AzAccount,Logout-AzAccount,Resolve-Error,Send-Feedback'. This module 'Az.Accounts' may override the
existing commands. If you still want to install this module 'Az.Accounts', use -AllowClobber parameter.
# こうすればいいらしい
PS C:\Users\tommy> Install-Module -Name Az -Scope CurrentUser -AllowClobber
# とりあえず完了
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1