Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

Azure RM – Remove Azure RM PowerShell Modules

Posted on March 7, 2018 By David Kittell
foreach ($module in (Get-Module -ListAvailable AzureRM*).Name |Get-Unique) {

write-host "Removing Module $module"

Uninstall-module $module

} 

All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Azure Code PowerShell

Post navigation

Previous post
Next post

Related Posts

NetStat – Get Network Statistics

Posted on May 16, 2016June 16, 2020

sudo lsof -i # Get all network traffic information sudo lsof -i |grep *:http # Get all network traffic information using port 80 HTTP netstat -tulpn # Get all network traffic information netstat -tulpn | grep :80 # Get all network traffic information using port 80 HTTP netstat -o #…

Read More

Draw an arrow within a box

Posted on December 20, 2013October 26, 2015

Imports System.Drawing Imports System.Drawing.Drawing2D Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub Private Sub Form1_Paint(ByVal sender As System.Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles MyBase.Paint ‘ Create pen. Dim blackPen As New Pen(Color.Black, 3) ‘ Create triangle. Dim point1 As New Point(15,…

Read More

Bash – Trim/Remove White Space

Posted on May 4, 2017August 25, 2019

sed ‘s/^[ \t]*//’ sed ‘s/[ \t]*$//’ sed ‘s/^[ \t]*//;s/[ \t]*$//’ Originally Posted on May 4, 2017Last Updated on August 25, 2019 All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • Open On Screen Keyboard (OSK)
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes