&lt;?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Articles from February 2016 on PowerShell.org - Welcome Automaters!</title><link>https://powershell.org/articles/2016/02/</link><description>Recent content in Articles from February 2016 on PowerShell.org - Welcome Automaters!</description><generator>Hugo</generator><language>en-us</language><atom:link href="https://powershell.org/articles/2016/02/index.xml" rel="self" type="application/rss+xml"/><item><title>A study in Powershell scripting – A beginners guide Part 2</title><link>https://powershell.org/articles/2016-02-26-a-study-in-powershell-scripting-part-2/</link><guid>https://powershell.org/articles/2016-02-26-a-study-in-powershell-scripting-part-2/</guid><pubDate>Fri, 26 Feb 2016 21:54:50 +0000</pubDate><description>&lt;p&gt;In this post I elaborate the steps that I went through to build the function to extract users into alphabetical order. I talk about the problems I face and how I resolved them.&lt;br&gt;
I also post snippets of my code that I used so that new people can see how I wrote it.&lt;br&gt;
I&amp;rsquo;m hoping that this help the new people that are out there.&lt;br&gt;
Biggest tip in the post is what the secret sauce is on how to pass results from one cmdlet to another. As always always pleased to know people&amp;rsquo;s thoughts.&lt;br&gt;
Link &lt;a href="http://weiyentanitjournal.com/index.php/2016/02/26/a-study-in-learning-powershell-part-2/"&gt;here&lt;/a&gt;.&lt;/p&gt;</description><content:encoded>&lt;![CDATA[<p>In this post I elaborate the steps that I went through to build the function to extract users into alphabetical order. I talk about the problems I face and how I resolved them.<br>
I also post snippets of my code that I used so that new people can see how I wrote it.<br>
I&rsquo;m hoping that this help the new people that are out there.<br>
Biggest tip in the post is what the secret sauce is on how to pass results from one cmdlet to another. As always always pleased to know people&rsquo;s thoughts.<br>
Link<a href="http://weiyentanitjournal.com/index.php/2016/02/26/a-study-in-learning-powershell-part-2/">here</a>.</p>
]]></content:encoded></item><item><title>A study in Powershell Scripting – A beginners Guide Part I</title><link>https://powershell.org/articles/2016-02-25-a-study-in-powershell-scripting-a-beginners-guide-part-i/</link><guid>https://powershell.org/articles/2016-02-25-a-study-in-powershell-scripting-a-beginners-guide-part-i/</guid><pubDate>Thu, 25 Feb 2016 11:27:42 +0000</pubDate><description>&lt;p&gt;I thought I would post my learning experiences as a person that has very little programming background. Don did say in one of the TechEd&amp;rsquo;s a few  years ago that even a beginner could share their experiences with others. So I thought that I should contribute with the approach that I use to write my scripts so that other people starting to begin their Powershell adventure could benefit.&lt;br&gt;
The scenario in this case is to do with three Active Directory security groups and synchronizing with a master Active Directory security group.&lt;br&gt;
Link to blog post &lt;a href="http://weiyentanitjournal.com/index.php/2016/01/31/a-study-in-learning-powershell-part-1/"&gt;here&lt;/a&gt;.&lt;/p&gt;</description><content:encoded>&lt;![CDATA[<p>I thought I would post my learning experiences as a person that has very little programming background. Don did say in one of the TechEd&rsquo;s a few  years ago that even a beginner could share their experiences with others. So I thought that I should contribute with the approach that I use to write my scripts so that other people starting to begin their Powershell adventure could benefit.<br>
The scenario in this case is to do with three Active Directory security groups and synchronizing with a master Active Directory security group.<br>
Link to blog post<a href="http://weiyentanitjournal.com/index.php/2016/01/31/a-study-in-learning-powershell-part-1/">here</a>.</p>
]]></content:encoded></item><item><title>I'm Not A Developer</title><link>https://powershell.org/articles/2016-02-19-im-not-a-developer/</link><guid>https://powershell.org/articles/2016-02-19-im-not-a-developer/</guid><pubDate>Fri, 19 Feb 2016 12:57:33 +0000</pubDate><description>&lt;p&gt;Are you intimidated by scripting? Does PowerShell seem too much like programming to you? You aren&amp;rsquo;t a developer, why should you learn this mumbo jumbo?&lt;br&gt;
It turns out, PowerShell is quite easy to get started with. Can you run ipconfig? Do you know how to give someone instructions? You could probably pick up the PowerShell basics in a month of lunches or so.&lt;br&gt;
Don&amp;rsquo;t believe me? &lt;a href="http://ramblingcookiemonster.github.io/PowerShell-Is-Too-Hard/"&gt;I spent a few minutes to compare a simple task in four languages&lt;/a&gt;. PowerShell is a single, easy to understand command. Python is two lines and starts to include some syntax like .().&lt;br&gt;
We won&amp;rsquo;t even look at the C example here, but check out this C# code that simply reads and prints out the content of a file:&lt;/p&gt;</description><content:encoded>&lt;![CDATA[<p>Are you intimidated by scripting? Does PowerShell seem too much like programming to you? You aren&rsquo;t a developer, why should you learn this mumbo jumbo?<br>
It turns out, PowerShell is quite easy to get started with. Can you run ipconfig? Do you know how to give someone instructions? You could probably pick up the PowerShell basics in a month of lunches or so.<br>
Don&rsquo;t believe me?<a href="http://ramblingcookiemonster.github.io/PowerShell-Is-Too-Hard/">I spent a few minutes to compare a simple task in four languages</a>. PowerShell is a single, easy to understand command. Python is two lines and starts to include some syntax like .().<br>
We won&rsquo;t even look at the C example here, but check out this C# code that simply reads and prints out the content of a file:</p><p><code>// Modified with suggestions from Anton. // Better ways to do this, but, I'm not a developer ; ) using System; using System.IO; class ReadFromFile { static void Main() { foreach(string s in File.ReadAllLines(@"C:\file.txt")) { Console.WriteLine(s); } } }</code>You can get a feel for what&rsquo;s going on, and there are many ways to skin a cat, but let&rsquo;s compare this to PowerShell:</p><p><code>Get-Content C:\file.txt</code>This was one example among many. Read or write a CSV, execute a SQL query, create a VM, kick off an AzureRM template, modify an AD user, the list goes on. All of these are individual PowerShell commands, that handle a whole bunch of code behind the scenes, giving you simple, task-based commands.<br>
This lets you worry about the actual problem you are trying to solve, not the nitty gritty programming details. Have you ever had to write your own<a href="http://www.sorting-algorithms.com/">sorting code</a>, rather than just using </p><p><code>Sort-Object</code>?<br>
Come join the fun, you&rsquo;ll save yourself time and effort, and help out your team and organization in the process. Learn PowerShell.<br>
Cheers!</p>
]]></content:encoded></item><item><title>Last Chance for PowerShellSummit.org Registration</title><link>https://powershell.org/articles/2016-02-18-last-chance-for-powershellsummit-org-registration/</link><guid>https://powershell.org/articles/2016-02-18-last-chance-for-powershellsummit-org-registration/</guid><pubDate>Thu, 18 Feb 2016 18:52:02 +0000</pubDate><description>&lt;p&gt;Here&amp;rsquo;s a sort of last call: Registration ends on March 1st, 2016, giving you just about ten days from today (Feb 18th). Additionally, we&amp;rsquo;ve got just around 24 seats remaining. About 5 of those are available as 3-day seats, and about 19 as 4-day seats. We&amp;rsquo;ll try and slide that availability around so you&amp;rsquo;re not forced into one or the other, but this is basically last call for attendees either way. Hope we&amp;rsquo;ll see you there!&lt;/p&gt;</description><content:encoded>&lt;![CDATA[<p>Here&rsquo;s a sort of last call: Registration ends on March 1st, 2016, giving you just about ten days from today (Feb 18th). Additionally, we&rsquo;ve got just around 24 seats remaining. About 5 of those are available as 3-day seats, and about 19 as 4-day seats. We&rsquo;ll try and slide that availability around so you&rsquo;re not forced into one or the other, but this is basically last call for attendees either way. Hope we&rsquo;ll see you there!</p>
]]></content:encoded></item><item><title>Convert VBA Macros To PowerShell for Microsoft Office Automation</title><link>https://powershell.org/articles/2016-02-18-convert-vba-macros-to-powershell-for-microsoft-office-automation/</link><guid>https://powershell.org/articles/2016-02-18-convert-vba-macros-to-powershell-for-microsoft-office-automation/</guid><pubDate>Thu, 18 Feb 2016 14:46:34 +0000</pubDate><description>&lt;p&gt;There is a lot of documentation out there for interacting with Microsoft Office including Outlook, Excel, Word, etc with Visual Basic for Applications (VBA). A lot of time you may only be able to find VBA examples. VBA&amp;rsquo;s require template files to be sent to the desktop and are a real hassle when trying to automate across multiple machines.&lt;br&gt;
There are not many A to B examples of translating VBA to PowerShell so I took a problem I had solved in the past and presented the before and after. Hopefully it will provide enough information to allow others to convert VBA code into PowerShell for their scenarios.&lt;br&gt;
You can check out the full article on &lt;a href="http://wp.me/p7al1Q-5f"&gt;PowerShellBlogger.com&lt;/a&gt;.&lt;/p&gt;</description><content:encoded>&lt;![CDATA[<p>There is a lot of documentation out there for interacting with Microsoft Office including Outlook, Excel, Word, etc with Visual Basic for Applications (VBA). A lot of time you may only be able to find VBA examples. VBA&rsquo;s require template files to be sent to the desktop and are a real hassle when trying to automate across multiple machines.<br>
There are not many A to B examples of translating VBA to PowerShell so I took a problem I had solved in the past and presented the before and after. Hopefully it will provide enough information to allow others to convert VBA code into PowerShell for their scenarios.<br>
You can check out the full article on<a href="http://wp.me/p7al1Q-5f">PowerShellBlogger.com</a>.</p>
]]></content:encoded></item><item><title>Planning for PowerShell+DevOps Global Summit 2017… Need Your Opinion</title><link>https://powershell.org/articles/2016-02-16-planning-for-powershelldevops-global-summit-2017-need-your-opinion/</link><guid>https://powershell.org/articles/2016-02-16-planning-for-powershelldevops-global-summit-2017-need-your-opinion/</guid><pubDate>Tue, 16 Feb 2016 17:35:31 +0000</pubDate><description>&lt;p&gt;So, we&amp;rsquo;re already doing some planning for the 2017, 2018, and 2019 events. Because, you know. We do that around here ;).&lt;br&gt;
One thing we&amp;rsquo;re considering is an option to lock-in venue pricing for that three-year period, helping to ensure we can keep our pricing at around $950 for a 3-day event. Doing so requires a hotel room block lock-in as well. On the plus side, that&amp;rsquo;ll lock in hotel pricing for 3 years too, which is great in terms of affordability and predictability. It&amp;rsquo;s scary, because we&amp;rsquo;re committing to paying for those rooms whether people sleep in &amp;rsquo;em or not. Another upside is bringing all or most attendees together into one hotel, along with our speakers.&lt;br&gt;
So what we&amp;rsquo;re considering is opening 2017 registration by only offering packages of either 3 or 4 days (it&amp;rsquo;ll be your pick) which are _inclusive of your hotel room. _This would be at a Marriott property, and we could provide receipts/invoices that showed the conference/travel expense breakout, if you needed. So up front, you&amp;rsquo;d only be able to buy that complete package. The package would also likely include something like a Sunday night meet &amp;rsquo;n&amp;rsquo; greet at the hotel - again, only open to people staying there.&lt;br&gt;
Closer to the event, say in the 60 days before, we&amp;rsquo;d open registration to ticket-only sales, for however many seats we had remaining.&lt;br&gt;
This is obviously an unabashed attempt to reduce risk by &amp;ldquo;forcing&amp;rdquo; people into the hotel package. Realizing that some people might not be able to book &amp;ldquo;inclusive&amp;rdquo; packages due to company policies, we&amp;rsquo;d try to also offer an option where you could buy just a ticket early-on, but were required to book your room in our block. Honestly, this is all about making sure we fill the block.&lt;br&gt;
Our feeling is that a 3-day package would be around $1500 including hotel (3 nights), and you&amp;rsquo;d have the option of booking on additional nights if you wanted to. it&amp;rsquo;d be about $2300 for a 4-day/4-night package, if we do the pre-con day again (which is likely as it&amp;rsquo;s been our most popular option for 2016).&lt;br&gt;
Another advantage of having our rates and dates locked in so far out is that we could let attendees put down a (refundable) deposit for 2017, 2018, and/or 2019 - locking in your seat before registration even opens, so you don&amp;rsquo;t have to worry about hitting the website at midnight sharp the day sales open ;). Now that we&amp;rsquo;re a nonprofit, collecting that in advance is much more do-able.&lt;br&gt;
Anyway&amp;hellip; we&amp;rsquo;d like some input from the community. Take &lt;a href="http://polldaddy.com/poll/9312274/"&gt;a quick, one-question poll&lt;/a&gt; to tell us what you think.&lt;/p&gt;</description><content:encoded>&lt;![CDATA[<p>So, we&rsquo;re already doing some planning for the 2017, 2018, and 2019 events. Because, you know. We do that around here ;).<br>
One thing we&rsquo;re considering is an option to lock-in venue pricing for that three-year period, helping to ensure we can keep our pricing at around $950 for a 3-day event. Doing so requires a hotel room block lock-in as well. On the plus side, that&rsquo;ll lock in hotel pricing for 3 years too, which is great in terms of affordability and predictability. It&rsquo;s scary, because we&rsquo;re committing to paying for those rooms whether people sleep in &rsquo;em or not. Another upside is bringing all or most attendees together into one hotel, along with our speakers.<br>
So what we&rsquo;re considering is opening 2017 registration by only offering packages of either 3 or 4 days (it&rsquo;ll be your pick) which are _inclusive of your hotel room. _This would be at a Marriott property, and we could provide receipts/invoices that showed the conference/travel expense breakout, if you needed. So up front, you&rsquo;d only be able to buy that complete package. The package would also likely include something like a Sunday night meet &rsquo;n&rsquo; greet at the hotel - again, only open to people staying there.<br>
Closer to the event, say in the 60 days before, we&rsquo;d open registration to ticket-only sales, for however many seats we had remaining.<br>
This is obviously an unabashed attempt to reduce risk by &ldquo;forcing&rdquo; people into the hotel package. Realizing that some people might not be able to book &ldquo;inclusive&rdquo; packages due to company policies, we&rsquo;d try to also offer an option where you could buy just a ticket early-on, but were required to book your room in our block. Honestly, this is all about making sure we fill the block.<br>
Our feeling is that a 3-day package would be around $1500 including hotel (3 nights), and you&rsquo;d have the option of booking on additional nights if you wanted to. it&rsquo;d be about $2300 for a 4-day/4-night package, if we do the pre-con day again (which is likely as it&rsquo;s been our most popular option for 2016).<br>
Another advantage of having our rates and dates locked in so far out is that we could let attendees put down a (refundable) deposit for 2017, 2018, and/or 2019 - locking in your seat before registration even opens, so you don&rsquo;t have to worry about hitting the website at midnight sharp the day sales open ;). Now that we&rsquo;re a nonprofit, collecting that in advance is much more do-able.<br>
Anyway&hellip; we&rsquo;d like some input from the community. Take<a href="http://polldaddy.com/poll/9312274/">a quick, one-question poll</a> to tell us what you think.</p>
]]></content:encoded></item><item><title>2016-February Scripting Games Puzzle</title><link>https://powershell.org/articles/2016-02-06-2016-february-scripting-games-puzzle/</link><guid>https://powershell.org/articles/2016-02-06-2016-february-scripting-games-puzzle/</guid><pubDate>Sat, 06 Feb 2016 15:07:55 +0000</pubDate><description>&lt;p&gt;Although we have a couple of puzzles queued up, we&amp;rsquo;ll be taking a brief break for the month of February 2016. So, no puzzle this month!&lt;br&gt;
However, **we are in need of puzzles, including sample solutions and explanations. **This is a community effort, so if you&amp;rsquo;ve never contributed - now&amp;rsquo;s a great time to start! Drop an email to admin@ this domain. Include a ZIP file with your puzzle, solution, and explanation - all in plain-text files, please. You can include screen shots, as needed, as PNG files.&lt;br&gt;
We&amp;rsquo;re also in need of a Games Master, who can collect monthly puzzles, queue them up for publishing, and scan reader submissions for noteworthy entries. Drop an e-mail if you&amp;rsquo;re interested.&lt;br&gt;
Belong to a user group? Why not spend some time in your next meeting coming up with a puzzle or two that your group can submit? Make them easy or tricky, fun or devilish - it&amp;rsquo;s up to you. A user group could also collectively take on the Games Master role, giving you an important activity (reviewing entries and queuing them for publishing) at each monthly group meeting.&lt;br&gt;
Become a contributor, and help keep this highly visible part of the PowerShell community up and running!&lt;/p&gt;</description><content:encoded>&lt;![CDATA[<p>Although we have a couple of puzzles queued up, we&rsquo;ll be taking a brief break for the month of February 2016. So, no puzzle this month!<br>
However, **we are in need of puzzles, including sample solutions and explanations. **This is a community effort, so if you&rsquo;ve never contributed - now&rsquo;s a great time to start! Drop an email to admin@ this domain. Include a ZIP file with your puzzle, solution, and explanation - all in plain-text files, please. You can include screen shots, as needed, as PNG files.<br>
We&rsquo;re also in need of a Games Master, who can collect monthly puzzles, queue them up for publishing, and scan reader submissions for noteworthy entries. Drop an e-mail if you&rsquo;re interested.<br>
Belong to a user group? Why not spend some time in your next meeting coming up with a puzzle or two that your group can submit? Make them easy or tricky, fun or devilish - it&rsquo;s up to you. A user group could also collectively take on the Games Master role, giving you an important activity (reviewing entries and queuing them for publishing) at each monthly group meeting.<br>
Become a contributor, and help keep this highly visible part of the PowerShell community up and running!</p>
]]></content:encoded></item><item><title>MSPSUG Feb 9th Virtual Meeting: Intro into the #PowerShell ISE, #Git, #PSPester &amp; #OneDrive</title><link>https://powershell.org/articles/2016-02-05-mspsug-feb-9th-virtual-meeting-intro-into-the-powershell-ise-git-pspester-onedrive/</link><guid>https://powershell.org/articles/2016-02-05-mspsug-feb-9th-virtual-meeting-intro-into-the-powershell-ise-git-pspester-onedrive/</guid><pubDate>Fri, 05 Feb 2016 15:01:11 +0000</pubDate><description>&lt;p&gt;Join the Mississippi PowerShell User Group virtually on Tuesday, February 9th 2016 at 8:30pm Central Time when &lt;a href="http://twitter.com/ryanyates1990"&gt;Ryan Yates&lt;/a&gt; will be presenting an “&lt;em&gt;&lt;strong&gt;Intro session to Teaching the IT Pro how to Dev with ISE, Git, Pester &amp;amp; OneDrive&lt;/strong&gt;&lt;/em&gt;”.&lt;br&gt;
With the amount of additional technologies needed to optimise the efficency of writing PowerShell this can seem very overwelming to someone new to PowerShell and could even put them completely off following an efficency optimised script creation workflow. So in this session I will be Demoing a way of working that can help users progress into Test Driven Development with the Help of a module that adds additional functionality to PowerShell ISE to make this easier to work with.&lt;br&gt;
Visit the &lt;a href="http://mspsug.com/2016/01/26/mspsug-february-2016-virtual-meeting-intro-into-the-powershell-ise-git-pester-onedrive/"&gt;Mississippi PowerShell User Group&lt;/a&gt; website to learn more about Ryan and to find out more details about this month’s meeting.&lt;br&gt;
The Mississippi PowerShell User Group Meetings are held online (via Skype for Business) on the second Tuesday of each month at 8:30pm Central Time and are free to attend. The system requirements to attend these online meetings can be found on the MSPSUG website under the “&lt;a href="http://mspsug.com/attendee-info/"&gt;Attendee Info&lt;/a&gt;” section.&lt;br&gt;
Register via &lt;a href="http://mspsug.eventbrite.com/"&gt;EventBrite&lt;/a&gt; to receive the URL for this meeting.&lt;br&gt;
Note: It is not necessary to live in Mississippi or join our user group to attend our meetings or present a session for our user group.&lt;br&gt;
µ&lt;/p&gt;</description><content:encoded>&lt;![CDATA[<p>Join the Mississippi PowerShell User Group virtually on Tuesday, February 9th 2016 at 8:30pm Central Time when<a href="http://twitter.com/ryanyates1990">Ryan Yates</a> will be presenting an “<em><strong>Intro session to Teaching the IT Pro how to Dev with ISE, Git, Pester &amp; OneDrive</strong></em>”.<br>
With the amount of additional technologies needed to optimise the efficency of writing PowerShell this can seem very overwelming to someone new to PowerShell and could even put them completely off following an efficency optimised script creation workflow. So in this session I will be Demoing a way of working that can help users progress into Test Driven Development with the Help of a module that adds additional functionality to PowerShell ISE to make this easier to work with.<br>
Visit the<a href="http://mspsug.com/2016/01/26/mspsug-february-2016-virtual-meeting-intro-into-the-powershell-ise-git-pester-onedrive/">Mississippi PowerShell User Group</a> website to learn more about Ryan and to find out more details about this month’s meeting.<br>
The Mississippi PowerShell User Group Meetings are held online (via Skype for Business) on the second Tuesday of each month at 8:30pm Central Time and are free to attend. The system requirements to attend these online meetings can be found on the MSPSUG website under the “<a href="http://mspsug.com/attendee-info/">Attendee Info</a>” section.<br>
Register via<a href="http://mspsug.eventbrite.com/">EventBrite</a> to receive the URL for this meeting.<br>
Note: It is not necessary to live in Mississippi or join our user group to attend our meetings or present a session for our user group.<br>
µ</p>
]]></content:encoded></item><item><title>Using PowerShell to make Azure Automation Graphical Runbooks – Part 2</title><link>https://powershell.org/articles/2016-02-03-using-powershell-to-make-azure-automation-graphical-runbooks-part-2/</link><guid>https://powershell.org/articles/2016-02-03-using-powershell-to-make-azure-automation-graphical-runbooks-part-2/</guid><pubDate>Thu, 04 Feb 2016 07:08:25 +0000</pubDate><description>&lt;p&gt;The &lt;a href="http://www.powershell.amsterdam/2016/01/29/using-powershell-to-make-azure-automation-graphical-runbooks-part-1/"&gt;previous article&lt;/a&gt; in this series covered the release of the Microsoft Azure Automation Graphical Authoring SDK, and began to outline some of the classes used and, where possible, the visible elements they relate to in the Azure portal itself.&lt;br&gt;
This second part of the series focuses on probably the most time consuming and challenging part of scripting these runbooks, those to do with Activities.&lt;br&gt;
You can read the full article at &lt;a href="http://www.powershell.amsterdam/2016/02/03/using-powershell-to-make-azure-automation-graphical-runbooks-part-2/"&gt;www.powershell.amsterdam&lt;/a&gt;&lt;/p&gt;</description><content:encoded>&lt;![CDATA[<p>The<a href="http://www.powershell.amsterdam/2016/01/29/using-powershell-to-make-azure-automation-graphical-runbooks-part-1/">previous article</a> in this series covered the release of the Microsoft Azure Automation Graphical Authoring SDK, and began to outline some of the classes used and, where possible, the visible elements they relate to in the Azure portal itself.<br>
This second part of the series focuses on probably the most time consuming and challenging part of scripting these runbooks, those to do with Activities.<br>
You can read the full article at<a href="http://www.powershell.amsterdam/2016/02/03/using-powershell-to-make-azure-automation-graphical-runbooks-part-2/">www.powershell.amsterdam</a></p>
]]></content:encoded></item><item><title>Microsoft PowerShell team panel – Twin Cities February meeting</title><link>https://powershell.org/articles/2016-02-03-microsoft-powershell-team-panel-twin-cities-february-meeting/</link><guid>https://powershell.org/articles/2016-02-03-microsoft-powershell-team-panel-twin-cities-february-meeting/</guid><pubDate>Thu, 04 Feb 2016 00:21:21 +0000</pubDate><description>&lt;p&gt;Ever wonder just what the heck the Microsoft PowerShell team was thinking? Come find out!&lt;br&gt;
Keith Bankston is the senior program manager for PowerShell. Mark Gray is the senior program manager for DSC. Michael Greene is the program manager responsible for understanding customer feedback and getting it into PowerShell.&lt;br&gt;
Join us for a panel discussion where they will answer all of our questions about PowerShell and we in turn will answer their questions about how we use PowerShell and how we would like to use it in the future.&lt;br&gt;
Target North Campus&lt;br&gt;
7300 Oak Grove Parkway&lt;br&gt;
Brooklyn Park, MN&lt;br&gt;
This is a secure facility. &lt;a href="http://www.meetup.com/Twin-Cities-PowerShell-User-Group/events/228593479/"&gt;RSVP&lt;/a&gt; with full name is required. If you do not use your full name on meetup, please email us your full name. Park in the guest lot to the west of the complex. Check in with security with photo ID. You will be escorted to the meeting room.&lt;br&gt;
Food and networking begin at 4:30. The main meeting will run from 5 to 7.&lt;/p&gt;</description><content:encoded>&lt;![CDATA[<p>Ever wonder just what the heck the Microsoft PowerShell team was thinking? Come find out!<br>
Keith Bankston is the senior program manager for PowerShell. Mark Gray is the senior program manager for DSC. Michael Greene is the program manager responsible for understanding customer feedback and getting it into PowerShell.<br>
Join us for a panel discussion where they will answer all of our questions about PowerShell and we in turn will answer their questions about how we use PowerShell and how we would like to use it in the future.<br>
Target North Campus<br>
7300 Oak Grove Parkway<br>
Brooklyn Park, MN<br>
This is a secure facility.<a href="http://www.meetup.com/Twin-Cities-PowerShell-User-Group/events/228593479/">RSVP</a> with full name is required. If you do not use your full name on meetup, please email us your full name. Park in the guest lot to the west of the complex. Check in with security with photo ID. You will be escorted to the meeting room.<br>
Food and networking begin at 4:30. The main meeting will run from 5 to 7.</p>
]]></content:encoded></item><item><title>Connect to all Office 365 Services with PowerShell</title><link>https://powershell.org/articles/2016-02-02-connect-to-all-office-365-services-with-powershell/</link><guid>https://powershell.org/articles/2016-02-02-connect-to-all-office-365-services-with-powershell/</guid><pubDate>Tue, 02 Feb 2016 18:50:40 +0000</pubDate><description>&lt;p&gt;If you are not on Office 365 or have a tenant set up with Microsoft yet, now is the time to reserve your tenant name! With utilizing Office 365, a lot of administration is only available from a PowerShell session. There is a mix of outdated information on what you actually need to install and execute in order to connect to all of the Office 365 services. As a result, I accumulated and wrote up the current download requirements and commands to connect and administer every Office 365 service from one PowerShell session. I hope this saves everyone a lot of time and effort!&lt;br&gt;
Head over to &lt;a href="http://wp.me/p7al1Q-53"&gt;PowerShellBlogger.com&lt;/a&gt; to read the full article &lt;a href="http://wp.me/p7al1Q-53"&gt;here&lt;/a&gt;.&lt;/p&gt;</description><content:encoded>&lt;![CDATA[<p>If you are not on Office 365 or have a tenant set up with Microsoft yet, now is the time to reserve your tenant name! With utilizing Office 365, a lot of administration is only available from a PowerShell session. There is a mix of outdated information on what you actually need to install and execute in order to connect to all of the Office 365 services. As a result, I accumulated and wrote up the current download requirements and commands to connect and administer every Office 365 service from one PowerShell session. I hope this saves everyone a lot of time and effort!<br>
Head over to<a href="http://wp.me/p7al1Q-53">PowerShellBlogger.com</a> to read the full article<a href="http://wp.me/p7al1Q-53">here</a>.</p>
]]></content:encoded></item><item><title>PowerShellSummit.org Registration Status for 2-Feb-2016 (also, recordings)</title><link>https://powershell.org/articles/2016-02-02-powershellsummit-org-registration-status-for-2-feb-2016-also-recordings/</link><guid>https://powershell.org/articles/2016-02-02-powershellsummit-org-registration-status-for-2-feb-2016-also-recordings/</guid><pubDate>Tue, 02 Feb 2016 14:43:52 +0000</pubDate><description>&lt;p&gt;OK, here&amp;rsquo;s a quick update of where we&amp;rsquo;re at with registration for &lt;a href="http://powershellsummit.org"&gt;PowerShell + DevOps Global Summit 2016&lt;/a&gt;.&lt;br&gt;
We&amp;rsquo;d originally scheduled 150 seats for the April event, inclusive of speakers. Yesterday (1st Feb) we opened 3-day sales (previously, only 4-day seats had been available), and are now at 126 total attendees. So we&amp;rsquo;ve got 24 seats of our original space remaining.&lt;br&gt;
The venue assures us that we can accommodate at least another 25 people, possible as many as 50 more. So we&amp;rsquo;re working with them to make that happen - in the meantime, &lt;strong&gt;I strongly recommend you register soon&lt;/strong&gt; if you plan to attend. It looks like, no matter what, we&amp;rsquo;ll be in a sellout situation again this year.&lt;br&gt;
Now, keep in mind that we&amp;rsquo;ve greatly expanded the event this year. We&amp;rsquo;re running three full-day pre-conference workshops (that&amp;rsquo;s what you get for the extra day in the 4-day pass). We&amp;rsquo;re having an informal gathering on Sunday evening (after the pre-cons) at the Courtyard Downtown Bellevue, a bar crawl Monday night, and a reception with the WMF team on Tuesday evening. In addition to two tracks of content, we have a third track which will run some extra-long sessions (although not all day). We&amp;rsquo;re also welcoming the WMF team on Tuesday after lunch for a &amp;ldquo;State of the Shell&amp;rdquo; address by two of the main team leaders, followed by &amp;ldquo;Lightning Demos&amp;rdquo; from a variety of team members. It&amp;rsquo;s a lot of content.&lt;br&gt;
As always, we&amp;rsquo;ll be recording &lt;em&gt;most&lt;/em&gt; of the sessions. Basically, the pre-con sessions won&amp;rsquo;t be recorded, nor will the extra-long &amp;ldquo;bonus&amp;rdquo; sessions in the third track (we only have two sets of recording gear). All of what we do record will go on YouTube as usual. However, this year, &lt;a href="http://pluralsight.com"&gt;Pluralsight&lt;/a&gt; will be on-hand with camera crews in our two main rooms, and they&amp;rsquo;ll be producing recordings that include screen capture as well as live video of the speakers. Those &amp;ldquo;better&amp;rdquo; recordings will go into the Pluralsight library, and everyone attending in person will receive free access to those even if you don&amp;rsquo;t have a subscription. For anyone not attending, you can either access our screen-caps on YouTube for free, or use a Pluralsight subscription to access the nicer videos. This is an experiment with Pluralsight and we appreciate their support!&lt;br&gt;
Oh, and we&amp;rsquo;ll also be offering Verified Effective exams (no computer required!) on Wednesday, to anyone who&amp;rsquo;s interested (no advance registration required).&lt;br&gt;
Anyway, as you can see, it&amp;rsquo;s going to be a busy-busy-busy Summit, and it&amp;rsquo;s looking firmly to be a sellout, even if we&amp;rsquo;re able to secure the extra space at the venue. So &lt;strong&gt;register right the heck now&lt;/strong&gt; if you plan to attend. If you&amp;rsquo;re just now getting around to talking the boss into it - well, honestly, you shoulda started back in November ;). At $950 for the 3-day pass, though, this is probably the best educational deal you or your company will ever find, and more than a few people see enough value to pay their own way every year.&lt;br&gt;
So I hope we&amp;rsquo;ll see you there!&lt;/p&gt;</description><content:encoded>&lt;![CDATA[<p>OK, here&rsquo;s a quick update of where we&rsquo;re at with registration for<a href="http://powershellsummit.org">PowerShell + DevOps Global Summit 2016</a>.<br>
We&rsquo;d originally scheduled 150 seats for the April event, inclusive of speakers. Yesterday (1st Feb) we opened 3-day sales (previously, only 4-day seats had been available), and are now at 126 total attendees. So we&rsquo;ve got 24 seats of our original space remaining.<br>
The venue assures us that we can accommodate at least another 25 people, possible as many as 50 more. So we&rsquo;re working with them to make that happen - in the meantime, <strong>I strongly recommend you register soon</strong> if you plan to attend. It looks like, no matter what, we&rsquo;ll be in a sellout situation again this year.<br>
Now, keep in mind that we&rsquo;ve greatly expanded the event this year. We&rsquo;re running three full-day pre-conference workshops (that&rsquo;s what you get for the extra day in the 4-day pass). We&rsquo;re having an informal gathering on Sunday evening (after the pre-cons) at the Courtyard Downtown Bellevue, a bar crawl Monday night, and a reception with the WMF team on Tuesday evening. In addition to two tracks of content, we have a third track which will run some extra-long sessions (although not all day). We&rsquo;re also welcoming the WMF team on Tuesday after lunch for a &ldquo;State of the Shell&rdquo; address by two of the main team leaders, followed by &ldquo;Lightning Demos&rdquo; from a variety of team members. It&rsquo;s a lot of content.<br>
As always, we&rsquo;ll be recording <em>most</em> of the sessions. Basically, the pre-con sessions won&rsquo;t be recorded, nor will the extra-long &ldquo;bonus&rdquo; sessions in the third track (we only have two sets of recording gear). All of what we do record will go on YouTube as usual. However, this year,<a href="http://pluralsight.com">Pluralsight</a> will be on-hand with camera crews in our two main rooms, and they&rsquo;ll be producing recordings that include screen capture as well as live video of the speakers. Those &ldquo;better&rdquo; recordings will go into the Pluralsight library, and everyone attending in person will receive free access to those even if you don&rsquo;t have a subscription. For anyone not attending, you can either access our screen-caps on YouTube for free, or use a Pluralsight subscription to access the nicer videos. This is an experiment with Pluralsight and we appreciate their support!<br>
Oh, and we&rsquo;ll also be offering Verified Effective exams (no computer required!) on Wednesday, to anyone who&rsquo;s interested (no advance registration required).<br>
Anyway, as you can see, it&rsquo;s going to be a busy-busy-busy Summit, and it&rsquo;s looking firmly to be a sellout, even if we&rsquo;re able to secure the extra space at the venue. So <strong>register right the heck now</strong> if you plan to attend. If you&rsquo;re just now getting around to talking the boss into it - well, honestly, you shoulda started back in November ;). At $950 for the 3-day pass, though, this is probably the best educational deal you or your company will ever find, and more than a few people see enough value to pay their own way every year.<br>
So I hope we&rsquo;ll see you there!</p>
]]></content:encoded></item></channel></rss>