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

PowerShell – Azure – Get-AzurePublishSettingsFile

Posted on September 13, 2016 By David Kittell
Get-AzurePublishSettingsFile

mkdir c:\temp 
mkdir c:\temp\PowerShell
mv '~/Downloads/*.publishsettings' c:\temp\PowerShell

Import-AzurePublishSettingsFile -PublishSettingsFile 'C:\temp\PowerShell\*.publishsettings'

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

Ektron Find Replace In Library

Posted on October 23, 2013October 26, 2015

This script will search and replace specific library links SET XACT_ABORT ON DECLARE @currurl NVARCHAR(500) DECLARE @newurl NVARCHAR(500) DECLARE @search NVARCHAR(500) DECLARE @replace VARCHAR(500) SET @search = ” –string to find SET @replace = ” –replacement string DECLARE @pos INT DECLARE @id BIGINT BEGIN TRAN DECLARE curs CURSOR LOCAL FAST_FORWARD…

Read More

Web Browser Controls

Posted on April 11, 2013March 3, 2016

C# Visual Studio 2010 Project C# WebBrowser using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace WebBrowser { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void btnNavigate_Click(object sender, EventArgs e) { webBrowser1.Navigate(txtAddressBar.Text); } private void btnBack_Click(object sender, EventArgs…

Read More

BASH – Web Ping Log

Posted on January 29, 2024August 17, 2024

Sometimes you need a simple log to know when a site is up or down. Create a script like below and then put it in your crontab. #!/bin/bash echo ‘Begin ping’ if ping -c 1 kittell.net &> /dev/null; then echo "$(date "+%Y-%m-%d %H.%M.%S") – Success" >> /var/log/web_ping.log else echo "$(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
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes
 

Loading Comments...
 

You must be logged in to post a comment.