PowerShell Module Commands: Unterschied zwischen den Versionen

Aus Wiki-WebPerfect
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: „== Example for Hyper-V Module 1.1 and 2.0.0.0 == <source lang="powershell"> Import-Module Hyper-V -RequiredVersion 1.1 $HvM1 = Get-Command -Module Hyper-V Remo…“)
 
K
 
(5 dazwischenliegende Versionen des gleichen Benutzers werden nicht angezeigt)
Zeile 4: Zeile 4:
 
$HvM1 = Get-Command -Module Hyper-V
 
$HvM1 = Get-Command -Module Hyper-V
 
Remove-Module Hyper-V
 
Remove-Module Hyper-V
 +
 
Import-Module Hyper-V -RequiredVersion 2.0.0.0
 
Import-Module Hyper-V -RequiredVersion 2.0.0.0
 
$HvM2 = Get-Command -Module Hyper-V
 
$HvM2 = Get-Command -Module Hyper-V
compare $HvM1 $HvM2
+
 
 +
Compare-Object $HvM1 $HvM2
 
</source>
 
</source>
  
 +
 +
== Get the definition of a function from a PowerShell module ==
 +
<source lang="powershell">Get-Content function:<FUNCTION_NAME> </source>
  
  

Aktuelle Version vom 24. Januar 2022, 10:32 Uhr

Example for Hyper-V Module 1.1 and 2.0.0.0

Import-Module Hyper-V -RequiredVersion 1.1
$HvM1 = Get-Command -Module Hyper-V
Remove-Module Hyper-V
 
Import-Module Hyper-V -RequiredVersion 2.0.0.0
$HvM2 = Get-Command -Module Hyper-V
 
Compare-Object $HvM1 $HvM2


Get the definition of a function from a PowerShell module

Get-Content function:<FUNCTION_NAME>