あなたがいたらどうして:
Get-PSProvider
WSManのプロバイダーは表示されませんが、次のことができます。
Set-Location WSMan:\
あなたがいたらどうして:
Get-PSProvider
WSManのプロバイダーは表示されませんが、次のことができます。
Set-Location WSMan:\
PowerShell 3.0では、WSMANはMicrosoft.WSMan.Managementモジュールの一部であり、デフォルトでは読み込まれません。管理モジュールコマンドの1つを実行すると、PowerShellは暗黙的にモジュールをロードし、WSMANドライブが表示されます。
PS> Test-WSMan
wsmid : http://schemas.dmtf.org/wbem/wsman/identity/1/wsmanidentity.xsd
ProtocolVersion : http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd
ProductVendor : Microsoft Corporation
ProductVersion : OS: 0.0.0 SP: 0.0 Stack: 3.0
PS> Get-PSProvider | ft name
Name
----
Alias
Environment
FileSystem
Function
Registry
Variable
WSMan
または、管理モジュールを明示的にロードすることもできます。