We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0df3f0 commit cb5dd6fCopy full SHA for cb5dd6f
AzureExt.psm1
@@ -57,4 +57,5 @@ foreach ($FormatFile in $FormatFileList) {
57
Update-FormatData -PrependPath $FormatFile.FullName;
58
Write-Verbose -Message ('Added format file: {0}' -f $FormatFile.Name);
59
}
60
-#endregion
+#endregion
61
+
Functions/Public/Start-AzureRm.ps1
@@ -23,9 +23,6 @@ function Start-AzureRm {
23
$AzureProfile = Add-AzureRmAccount -Credential (Get-Credential);
24
Save-AzureRmProfile -Path $script:AzureProfilePath -Profile $AzureProfile;
25
26
-
27
- ### Load the Azure PowerShell Extensions, if available
28
- if (Get-Module -ListAvailable -Name AzureExt) {
29
- Import-Module -Name AzureExt;
30
- }
+ Import-IseSnippet -Module AzureExt;
31
0 commit comments