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 PowerShell – Get Static IP of Azure VMs

Posted on July 11, 2016 By David Kittell
Get-AzureVM | Select-Object -Property Name, @{Name='StaticIP';Expression={(Get-AzureStaticVNetIP -VM $_ ).IPAddress}}
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

Raspberry Pi – Dynamic MOTD

Posted on September 12, 2019September 22, 2020

Similar to UNIX – Set SSH Banner but this will update at every login incase something changes. mkdir /etc/update-motd.d cd /etc/update-motd.d touch 00-header && touch 11-server-info && touch 99-footer chmod +x /etc/update-motd.d/* rm /etc/motd ln -s /var/run/motd /etc/motd #!/bin/bash # Functions – Start # Function to convert IP Subnet Mask…

Read More

Folder Exists

Posted on December 14, 2013October 26, 2015

Public Function FolderExists(ByVal FolderPath As String) As Boolean Dim f As New IO.DirectoryInfo(FolderPath) Return f.Exists End Function If FolderExists("c:windows") = False Then ‘Folder Does’t Exist Else ‘Folder Does Exist End If Originally Posted on December 14, 2013Last Updated on October 26, 2015 All information on this site is shared with…

Read More

MSSQL Server Information

Posted on August 27, 2015May 13, 2016

If you have ever started a new job and we told to “Dig into the database and learn” these scripts likely have come to mind whether or not you knew/know them. SELECT @@Servername AS [Server Name] –,@@ServiceName AS [Service Instance] ,Name AS [Database Name] ,create_date AS [Service Started] ,DATEDIFF(s, create_date,…

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