Skip to content

Instantly share code, notes, and snippets.

@vhusker
Created May 19, 2015 13:33
Show Gist options
  • Save vhusker/2a6c78b8a99cdf161cfe to your computer and use it in GitHub Desktop.
Save vhusker/2a6c78b8a99cdf161cfe to your computer and use it in GitHub Desktop.
Import-Module -Name Breaks ISE
$> $PSVersionTable
Name Value
---- -----
PSVersion 5.0.10074.0
WSManStackVersion 3.0
SerializationVersion 1.1.0.1
CLRVersion 4.0.30319.0
BuildVersion 10.0.10074.0
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...}
PSRemotingProtocolVersion 2.3
$> Get-Service BITS
Status Name DisplayName
------ ---- -----------
Running BITS Background Intelligent Transfer Ser...
$> Import-Module Azure
$> Get-Module Azure
ModuleType Version Name ExportedCommands
---------- ------- ---- ----------------
Manifest 0.9.1 Azure {Add-AzureAccount, Add-AzureApplicationGatewaySslCertificate, Add-AzureCertificate, Add-AzureDataDisk...}
$> Get-Service BITS
Status Name DisplayName
------ ---- -----------
Running BITS Background Intelligent Transfer Ser...
$> Remove-Module Azure
$> Import-Module -Name Azure
$> Get-Module Azure
$> Get-Service BITS
$>
$> Get-Service BITS
Status Name DisplayName
------ ---- -----------
Running BITS Background Intelligent Transfer Ser...
$> Import-Module Pester
$> Get-Module Pester
ModuleType Version Name ExportedCommands
---------- ------- ---- ----------------
Script 3.3.8 Pester {AfterAll, AfterEach, Assert-MockCalled, Assert-VerifiableMocks...}
$> Get-Service BITS
Status Name DisplayName
------ ---- -----------
Running BITS Background Intelligent Transfer Ser...
$> Remove-Module Pester
$> Import-Module -Name Pester
$> Get-Module Pester
$> Get-Service BITS
$>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment