<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>The Ops Community ⚙️: Joseph Deblasio</title>
    <description>The latest articles on The Ops Community ⚙️ by Joseph Deblasio (@techdude16).</description>
    <link>https://community.ops.io/techdude16</link>
    <image>
      <url>https://community.ops.io/images/4QJ4_EFqQqgqVVZTMK1oQqA0iBFKS4OamElruaIHiM0/rs:fill:90:90/g:sm/mb:500000/ar:1/aHR0cHM6Ly9jb21t/dW5pdHkub3BzLmlv/L3JlbW90ZWltYWdl/cy91cGxvYWRzL3Vz/ZXIvcHJvZmlsZV9p/bWFnZS8xNjA0Lzc4/YTFjNjQ1LTZmZTYt/NDNjZi04MjY0LWE4/MjMwMWY3NTMwOC5w/bmc</url>
      <title>The Ops Community ⚙️: Joseph Deblasio</title>
      <link>https://community.ops.io/techdude16</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://community.ops.io/feed/techdude16"/>
    <language>en</language>
    <item>
      <title>The ultimate PowerShell Azure and Windows operating systems resource!</title>
      <dc:creator>Joseph Deblasio</dc:creator>
      <pubDate>Sat, 25 Feb 2023 15:59:58 +0000</pubDate>
      <link>https://community.ops.io/techdude16/the-ultimate-powershell-azure-and-windows-operating-systems-resource-1d0g</link>
      <guid>https://community.ops.io/techdude16/the-ultimate-powershell-azure-and-windows-operating-systems-resource-1d0g</guid>
      <description>&lt;p&gt;_Through the years writing Powershell scripts mostly for automation purposes I have come across some great blogs that were quite handy and authored by some exceptionaly people. What if I put them all in one place? Well here it is!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://linktr.ee/Techdude16"&gt;https://linktr.ee/Techdude16&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;&lt;a href="//Linktr.ee/Techdude16"&gt;&lt;/a&gt;_&lt;/p&gt;

&lt;p&gt;Joseph &lt;/p&gt;

</description>
      <category>powershell</category>
      <category>azure</category>
      <category>devops</category>
      <category>automation</category>
    </item>
    <item>
      <title>PowerShell install on Ubuntu 20.04</title>
      <dc:creator>Joseph Deblasio</dc:creator>
      <pubDate>Thu, 22 Dec 2022 00:46:37 +0000</pubDate>
      <link>https://community.ops.io/techdude16/powershell-install-on-ubuntu-2004-2a6f</link>
      <guid>https://community.ops.io/techdude16/powershell-install-on-ubuntu-2004-2a6f</guid>
      <description>&lt;h1&gt;
  
  
  Update the list of packages
&lt;/h1&gt;

&lt;p&gt;sudo apt-get update&lt;/p&gt;

&lt;h1&gt;
  
  
  Install pre-requisite packages.
&lt;/h1&gt;

&lt;p&gt;sudo apt-get install -y wget apt-transport-https software-properties-common&lt;/p&gt;

&lt;h1&gt;
  
  
  Download the Microsoft repository GPG keys
&lt;/h1&gt;

&lt;p&gt;wget -q "&lt;a href="https://packages.microsoft.com/config/ubuntu/%24(lsb_release"&gt;https://packages.microsoft.com/config/ubuntu/$(lsb_release&lt;/a&gt; -rs)/packages-microsoft-prod.deb"&lt;/p&gt;

&lt;h1&gt;
  
  
  Register the Microsoft repository GPG keys
&lt;/h1&gt;

&lt;p&gt;sudo dpkg -i packages-microsoft-prod.deb&lt;/p&gt;

&lt;h1&gt;
  
  
  Update the list of packages after we added packages.microsoft.com
&lt;/h1&gt;

&lt;p&gt;sudo apt-get update&lt;/p&gt;

&lt;h1&gt;
  
  
  Install PowerShell
&lt;/h1&gt;

&lt;p&gt;sudo apt-get install -y powershell&lt;/p&gt;

&lt;h1&gt;
  
  
  Start PowerShell
&lt;/h1&gt;

&lt;p&gt;pwsh&lt;/p&gt;

</description>
      <category>powershell</category>
      <category>linux</category>
      <category>automation</category>
    </item>
    <item>
      <title>PowerShell SMTP code</title>
      <dc:creator>Joseph Deblasio</dc:creator>
      <pubDate>Sat, 17 Dec 2022 19:50:16 +0000</pubDate>
      <link>https://community.ops.io/techdude16/powershell-smtp-code-3a33</link>
      <guid>https://community.ops.io/techdude16/powershell-smtp-code-3a33</guid>
      <description>&lt;h1&gt;
  
  
  &lt;strong&gt;PowerShell SMTP code&lt;/strong&gt;
&lt;/h1&gt;

&lt;h1&gt;
  
  
  &lt;strong&gt;Joseph deblasio&lt;/strong&gt;
&lt;/h1&gt;

&lt;h1&gt;
  
  
  &lt;strong&gt;use mailtrap.io for SMTP relay port 25&lt;/strong&gt;
&lt;/h1&gt;

&lt;p&gt;$message = New-Object Net.Mail.MailMessage;&lt;br&gt;
$message.From = "&lt;a href="mailto:me@datacenter.com"&gt;me@datacenter.com&lt;/a&gt;";&lt;br&gt;
$message.To.Add($email);&lt;br&gt;
$message.subject = "Sending alert for process 13";&lt;br&gt;
$message.Body = "This is a critical Alert - Action Required";&lt;br&gt;
$smtp = New-Object Net.Mail.SmtpClient("smtp.google.com", 587);&lt;br&gt;
$smtp = EnableSSL = $true;&lt;br&gt;
$smtp.credentials = New-Object System.Net.NetworkCredential($Username, $Password);&lt;br&gt;
$smtp.Send($message);&lt;/p&gt;

</description>
      <category>powershell</category>
      <category>azure</category>
      <category>smtp</category>
      <category>automation</category>
    </item>
  </channel>
</rss>
