&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 September 2012 on PowerShell.org - Welcome Automaters!</title><link>https://powershell.org/articles/2012/09/</link><description>Recent content in Articles from September 2012 on PowerShell.org - Welcome Automaters!</description><generator>Hugo</generator><language>en-us</language><atom:link href="https://powershell.org/articles/2012/09/index.xml" rel="self" type="application/rss+xml"/><item><title>PSCX 2.1 and 3.0 Release Candidates Posted</title><link>https://powershell.org/articles/2012-09-15-pscx-2-1-and-3-0-release-candidates-posted/</link><guid>https://powershell.org/articles/2012-09-15-pscx-2-1-and-3-0-release-candidates-posted/</guid><pubDate>Sun, 16 Sep 2012 02:45:47 +0000</pubDate><description>&lt;p&gt;Oisin and I have been busy prepping the PowerShell Community Extensions to support Windows PowerShell 3.0. With this release, we are providing two packages. There is a &lt;a href="http://pscx.codeplex.com/releases/view/93945"&gt;Pscx-2.1.0-RC.zip&lt;/a&gt; that is xcopy deployable just like PSCX 2.0. Just remember to unblock the ZIP before extracting it otherwise you&amp;quot;™ll get errors when you try to import the module. Pscx 2.1 can be used to target both Windows PowerShell 2.0 and 3.0. In order to do this, Pscx 2.1 is still compiled against .NET 2.0 and it can&amp;quot;™t take advantage of any Windows PowerShell 3.0 specific features.&lt;/p&gt;</description><content:encoded>&lt;![CDATA[<p>Oisin and I have been busy prepping the PowerShell Community Extensions to support Windows PowerShell 3.0. With this release, we are providing two packages. There is a<a href="http://pscx.codeplex.com/releases/view/93945">Pscx-2.1.0-RC.zip</a> that is xcopy deployable just like PSCX 2.0. Just remember to unblock the ZIP before extracting it otherwise you"™ll get errors when you try to import the module. Pscx 2.1 can be used to target both Windows PowerShell 2.0 and 3.0. In order to do this, Pscx 2.1 is still compiled against .NET 2.0 and it can"™t take advantage of any Windows PowerShell 3.0 specific features.</p><p>The second package is<a href="http://pscx.codeplex.com/releases/view/94637">Pscx-3.0.0-RC.msi</a>. This is a traditional Windows installer package. The benefit of using an MSI is that the user doesn"™t have to worry about unblocking the file before installing it. The MSI file is also Authenticode signed with an extended validation code signing certificate so it should make it past Windows 8 SmartScreen. I"™d like to extend a big thanks to<a href="http://www.digicert.com/">DigiCert</a> for graciously donating the EV code signing certificate to us.</p><p>INSTALLATION NOTE: the WiX-based installer modifies the PSModulePath environment variable but the modification doesn"™t always seem to be in effect after installation. If Import-Module Pscx &ldquo;“RequiredVersion 3.0.0.0 fails to load PSCX, import the module by path (C:\Program Files (x86)\PowerShell Community Extensions\Pscx3\Pscx\Pscx.psd1) until you get a chance to reboot. After that, you shouldn&rdquo;™t have to specify the path.</p><p>Another aspect of Pscx 3.0 is that it is compiled against .NET 4.0 and takes advantage of some features specific to Windows PowerShell 3.0. Over time, we will focus our new feature efforts on the Pscx 3.0 branch.</p><h3 id="pscx-21-and-30-side-by-side-support" class="ps-heading">PSCX 2.1 and 3.0 Side-by-Side Support<a class="ps-heading-anchor" href="#pscx-21-and-30-side-by-side-support" aria-label="Link to this section" title="Link to this section"><i class="fas fa-link" aria-hidden="true"/></a></h3><p>With this release, you can install Pscx 2.1 and 3.0 side-by-side. Note however that if you xcopy install Pscx 2.1 into your user"™s Modules directory, PowerShell will find that version of Pscx before the 3.0 version. In order to ensure you load a specific version of Pscx, use the &ldquo;“RequiredVersion parameter on Import-Module e.g.</p><p><code>Import-Module Pscx -RequiredVersion 3.0.0.0</code>### Support for AllSigned Execution Policy</p><p>Each of the two packages above (2.1 and 3.0) supported execution in an AllSigned environment. All of the script files (*.ps1, *.psm1 and *.ps1xml) have been signed. Of course, this means you can&rdquo;™t modify these scripts (i.e. to fix bugs) and still run them AllSigned.</p><h3 id="new-features" class="ps-heading">New Features<a class="ps-heading-anchor" href="#new-features" aria-label="Link to this section" title="Link to this section"><i class="fas fa-link" aria-hidden="true"/></a></h3><p>There are not a lot of new features in this release but there are a few handy additions including:</p><ul><li>Get-Parameter &ldquo;“ thanks to Jason Archer for contributing this great way to visual a command&rdquo;™s parameter information.</li><li>Import-VisualStudioVars &ldquo;“ for developers who like to spend their time in PowerShell instead of cmd.exe, this function takes care of importing the build environment for the specified version of Visual Studio. The 2008, 2010 and 2012 versions of Visual Studio are supported.</li><li>Start-PowerShell &ldquo;“ a wrapper for PowerShell.exe that utilizes the PowerShell parameter parsing engine to make invocation of various flavors of PowerShell (from PowerShell obviously) easier. While testing the AllSigned support I used this command a lot:<code>Start-PowerShell -NoProfile -ExecutionPolicy AllSigned -Version 2</code>* Get-ExecutionTime &ldquo;“ since PowerShell 2.0, the HistoryInfo object for a command has included both the StartExecutionTime and the EndExecutionTime. This command makes it easy to see the total execution time for any command e.g.:</li></ul><p>`C:\PS&gt; Get-ExecutionTime
Id ExecutionTime HistoryInfo</p><hr><p>1 00:00:02.9919258 Get-ChildItem C:\Windows\System32
2 00:00:00.2650339 Get-Process
3 00:00:00.2499424 Get-Service
`### Bug Fixes</p><p>Oisin spent a good deal of time fixing issues in the Read-Archive and Expand-Archive cmdlets. We updated the version of 7z that we are using (to 9.x) and modified the cmdlets to use<a href="http://sevenzipsharp.codeplex.com/">SevenZipSharp</a>. I also fixed a number of bugs in Invoke-Elevated (alias su), Set-Writable, Edit-File and type accelerators breaking on PowerShell 3.0.</p><p>As you use these release candidates please report any issues to the<a href="http://pscx.codeplex.com/workitem/list/basic">Pscx CodePlex project</a>. Thanks for supporting Pscx!</p><p><a href="http://feeds.wordpress.com/1.0/gocomments/rkeithhill.wordpress.com/271/"><img src="http://feeds.wordpress.com/1.0/comments/rkeithhill.wordpress.com/271/" alt=""/><img src="http://stats.wordpress.com/b.gif?host=rkeithhill.wordpress.com&amp;blog=18780344&amp;%23038;post=271&amp;%23038;subd=rkeithhill&amp;%23038;ref=&amp;%23038;feed=1" alt=""/>
]]></content:encoded></item><item><title>PowerShell Summit North America 2013 Call for Content</title><link>https://powershell.org/articles/2012-09-13-powershell-summit-north-america-2013-call-for-content/</link><guid>https://powershell.org/articles/2012-09-13-powershell-summit-north-america-2013-call-for-content/</guid><pubDate>Thu, 13 Sep 2012 18:04:53 +0000</pubDate><description>&lt;p&gt;In case you haven&amp;quot;™t heard already, there is a great opportunity to learn a lot more about PowerShell coming up next year.  It&amp;quot;™s the PowerShell Summit North America 2013 conference, and it is held on Microsoft campus in Redmond, WA from April 22 to 24, 2013.  This conference is run by the PowerShell.org community, and it will present a ton of deep technical content on anything to do with PowerShell.  What content will be covered, you ask?  Well, that&amp;quot;™s up to you.&lt;/p&gt;</description><content:encoded>&lt;![CDATA[<p>In case you haven"™t heard already, there is a great opportunity to learn a lot more about PowerShell coming up next year.  It"™s the PowerShell Summit North America 2013 conference, and it is held on Microsoft campus in Redmond, WA from April 22 to 24, 2013.  This conference is run by the PowerShell.org community, and it will present a ton of deep technical content on anything to do with PowerShell.  What content will be covered, you ask?  Well, that"™s up to you.</p><p>We are now accepting content proposals from anyone who wants to present at this conference.  All you need to do to submit your session proposals is to add a new topic to the<a href="https://powershell.org/discuss/viewforum.php?f=22">Session Submissions forum on PowerShell.org</a> for each session you want to present.</p><h4 id="who-can-present" class="ps-heading">Who can present?<a class="ps-heading-anchor" href="#who-can-present" aria-label="Link to this section" title="Link to this section"><i class="fas fa-link" aria-hidden="true"/></a></h4><p>Anyone who has something to share with other PowerShell experts and enthusiasts that will help them learn more about PowerShell can propose a topic they would like to present at this conference.  There will be a survey shared with the community that allows them to vote for the sessions they want to see, so ultimately the community will decide who can present at this conference.  Note that when reviewing the community results, the conference organizers reserve the right to make some modifications to the sessions that are selected to balance the topics that are discussed and to be able to better accommodate speakers who are offering to present multiple sessions.</p><h4 id="what-topics-will-be-discussed" class="ps-heading">What topics will be discussed?<a class="ps-heading-anchor" href="#what-topics-will-be-discussed" aria-label="Link to this section" title="Link to this section"><i class="fas fa-link" aria-hidden="true"/></a></h4><p>There will be around 100 PowerShell experts and enthusiasts at this conference, including some PowerShell MVPs, some non-PowerShell MVPs, and some members of the PowerShell team.</p><p>At a conference like this they will be looking for advanced sessions that show them deep technical content on various aspects of PowerShell as well as real-world practical applications of PowerShell.  They"™ll likely want to learn more about workflow, remoting, CIM, and many other technologies used by PowerShell.  They"™ll also likely want to learn about how PowerShell is used in practice with PowerShell extensions like PowerCLI to manage vSphere deployments at Scale, or how PowerShell is being used with multiple technologies (SharePoint, System Center Orchestrator, Exchange, NetApp, Active Directory, etc.) to deal with the real-world management challenges that exist in enterprise organizations.  These are just some examples of the topics that might be discussed in sessions at this conference.  It is important to note that no presentations will include any NDA information.  As mentioned, topics will be voted on by the community and then those results will be reviewed by conference organizers to come up with the final list of topics that will be presented at the conference.</p><p>Please keep in mind that there will be two tracks for this event: one will have the content with the deepest technical depth, and another will have real world and more intermediate to advanced level content.  With two tracks, you really shouldn"™t be shy about submitting sessions if you think you might have something to add.  Chances are, if you"™ve been using PowerShell for a while and if you continue to use it very regularly, you probably have knowledge and experience that you can share with others.  Don"™t worry about which track your session will ultimately fall in.  The conference organizers will figure those details out as part of their agenda planning.</p><h4 id="" class="ps-heading"><a class="ps-heading-anchor" href="#" aria-label="Link to this section" title="Link to this section"><i class="fas fa-link" aria-hidden="true"/></a></h4><h4 id="where-will-the-conference-be-held" class="ps-heading">Where will the conference be held?<a class="ps-heading-anchor" href="#where-will-the-conference-be-held" aria-label="Link to this section" title="Link to this section"><i class="fas fa-link" aria-hidden="true"/></a></h4><p>The conference will be held on Microsoft campus in Redmond in buildings 40 and 41 from April 22 to 24th, 2013. There may be additional activities surrounding the conference, but the core sessions will be April 22, 23 and 24.</p><h4 id="when-can-i-submit-a-proposal" class="ps-heading">When can I submit a proposal?<a class="ps-heading-anchor" href="#when-can-i-submit-a-proposal" aria-label="Link to this section" title="Link to this section"><i class="fas fa-link" aria-hidden="true"/></a></h4><p>You can submit a proposal now.  Simply post your proposal as a new topic on the<a href="https://powershell.org/discuss/viewforum.php?f=22">Session Submissions forum on PowerShell.org</a> for any sessions that you want to present.  Session proposals will be accepted on that forum until October 14, 2012 at midnight PST (take note of that date!).  Once that deadline is met, on October 15, 2012 we will publish a list of all proposals with a voting system that will allow community members to vote for their favorite sessions.  Votes will be accepted over a 2 week period, and the week of October 29th the conference organizers will review the votes and sessions and put together the list of accepted sessions, contact speakers for confirmation, etc.</p><p>We strongly encourage you to submit multiple session proposals so that you increase your chances of having a session accepted.  Note that you can submit a proposal even if a related session has already been proposed by someone else.  In fact, if you want to present multiple sessions, I would encourage you to submit the sessions that you want to present, without holding back if a similar session is already proposed.  There are advantages to presenting multiple sessions (see below), and the community will indicate what they want to see in the end anyway.</p><p>If you will be attending the conference whether you have a session proposal accepted or not, you should buy your conference ticket as soon as possible to take advantage of the early bird pricing.  If you can only attend this conference if you have enough proposals accepted to cover the bulk of your expenses (see below for details on the benefits of being a presenter), you should submit your sessions now regardless and once the session review process is completed, conference organizers will contact you to make sure you are able to commit to attending and presenting at the conference.  You can also fire me a note if you want to make me aware ahead of time that you can only attend if you have at least 3 sessions accepted, either using my<a href="http://poshoholic.com/contact-me/">contact me</a> form or via email (on gmail or hotmail, either works, using the nickname I use on this blog as the user id).</p><h4 id="why-should-i-submit-a-proposal" class="ps-heading">Why should I submit a proposal?<a class="ps-heading-anchor" href="#why-should-i-submit-a-proposal" aria-label="Link to this section" title="Link to this section"><i class="fas fa-link" aria-hidden="true"/></a></h4><p>Personally speaking, I find presenting information that has been learned through hard work to be very rewarding.  I also find receiving information that others have learned through their hard work to be very rewarding as well.  It"™s all about the community participation and sharing of knowledge.  Aside from being proud of your work and sharing it with others, there are more tangible benefits for speakers with accepted sessions as well.</p><p>For every session proposal that is accepted (voted high enough by the community and accepted in the final review by the conference organizers), speakers will receive a $300 travel stipend as well as up to $200 to offset 1/3 of their registration cost.  That means someone presenting 3 sessions will receive $900 that they can use towards their travel expenses and a full refund of their registration fee.  This should make it much clearer why it is advantageous to submit multiple session proposals.</p><p>One last reason why you should submit a proposal: the value of the conversation that comes with an event like this is extremely high.  You"™ll be able to talk to others about your challenges and ideas, learn from their efforts, perhaps find people you want to work with on various community projects, etc.  It"™s the networking alone that drives me to attend events like this.</p><h4 id="how-do-i-write-a-proposal" class="ps-heading">How do I write a proposal?<a class="ps-heading-anchor" href="#how-do-i-write-a-proposal" aria-label="Link to this section" title="Link to this section"><i class="fas fa-link" aria-hidden="true"/></a></h4><p>Each proposal you enter must include three pieces of information:</p><ul><li>a title for the session you are proposing,</li><li>your full name, and</li><li>a 1-2 paragraph description of what the session will contain.</li></ul><p>You must create one topic per proposal.  Don"™t put all of your sessions on one topic, and don"™t reply to current topics when creating proposals, please.</p><p>In general when planning your proposal, focus on content that will come with more demos, and less on slide-heavy content.  This is a conference for experts and enthusiasts who are looking for deep technical content on PowerShell-related topics in interactive sessions.  With this crowd, rich, demo-focused sessions will be preferred over slide-heavy sessions.</p><p>You should also review some of the proposals that are already submitted as examples.  Keep in mind that the sessions are 35 minutes long with 10 minutes of Q&amp;A at the end (although questions often come up during the sessions at an event like this).  35 minutes may seem like a lot of time, but it goes by quickly, especially when doing demos.</p><h4 id="summary" class="ps-heading">Summary<a class="ps-heading-anchor" href="#summary" aria-label="Link to this section" title="Link to this section"><i class="fas fa-link" aria-hidden="true"/></a></h4><p>That"™s a lot of information, so here is a summary of the essential points along with links to additional information.</p><pre><code> Conference Title
PowerShell Summit North America 2013
Conference Website
[http://powershellsummit.com](http://powershellsummit.com/)
Conference Dates
April 22-24, 2013*
Location
Microsoft Campus, Buildings 40 and 41, Redmond, WA
Session Proposal Forum
[https://powershell.org/discuss/viewforum.php?f=22](https://powershell.org/discuss/viewforum.php?f=22)
Session Proposal Deadline
October 14, 2012 at midnight PST
Session Voting Period
October 15, 2012 to October 28, 2012
Final Tally and Processing
The week of October 29, 2012
Sessions Announced
As soon as possible after October 29th, once the final tally and processing is done and accepted presenters have confirmed their sessions
Forum for Conference- and Session-Related Questions
[https://powershell.org/discuss/viewforum.php?f=20](https://powershell.org/discuss/viewforum.php?f=20)
Speakers Page
[https://powershell.org/summit/speak.php](https://powershell.org/summit/speak.php)
Conference FAQ
[https://powershell.org/summit/faq.php](https://powershell.org/summit/faq.php)
Best location to ask PowerShell questions and to help the community with answers
[https://powershell.org](https://powershell.org/)</code></pre><ul><li>With a high probability for a short, half-day event adjacent to this.</li></ul><p>I look forward to reading your session proposals!</p><p>Thanks,</p><p>Kirk out.</p><p>Technorati Tags:<a href="http://technorati.com/tags/PowerShell">PowerShell</a>,<a href="http://technorati.com/tags/Poshoholic">Poshoholic</a>,<a href="http://technorati.com/tags/PowerShell.org">PowerShell.org</a>,<a href="http://technorati.com/tags/PowerShell+Summit">PowerShell Summit</a></p><p><a href="http://feeds.wordpress.com/1.0/gocomments/kirkmunro.wordpress.com/812/"><img src="http://feeds.wordpress.com/1.0/comments/kirkmunro.wordpress.com/812/" alt=""/><img src="http://stats.wordpress.com/b.gif?host=poshoholic.com&amp;blog=1436967&amp;%23038;post=812&amp;%23038;subd=kirkmunro&amp;%23038;ref=&amp;%23038;feed=1" alt=""/>
]]></content:encoded></item><item><title>PowerShell Summit: Best Conference Deal Ever!</title><link>https://powershell.org/articles/2012-09-11-powershell-summit-best-conference-deal-ever/</link><guid>https://powershell.org/articles/2012-09-11-powershell-summit-best-conference-deal-ever/</guid><pubDate>Tue, 11 Sep 2012 11:55:39 +0000</pubDate><description>&lt;p&gt;What&amp;rsquo;s the average tech conference cost these days? $1500? $2000? And that&amp;rsquo;s just to get in, to say nothing of hotel, air, food, and whatnot.&lt;br&gt;
The &lt;a href="http://powershellsummit.org"&gt;PowerShell Summit North America 2013&lt;/a&gt; has an idea. Lets do a community-owned event, with a goal of breaking even and supporting an annual event, but not worry about a profit.&lt;br&gt;
Lets say you live in the US. A ticket to Seattle in April will run you $500-700 after taxes. Maybe less if you can get on a discount carrier like Southwest - they fly to SEA. Hotel will run you under $450 for three nights. Say you decide to splurge on a car for four days, probably for under $200 (including all the ridiculous taxes on rental cars). Toss in another $250 for food? That takes you to under $1600. PowerShell Summit only costs $550 - less if you register during one of the Early Bird tiers; as low us $450, in fact. That&amp;rsquo;s $2100-2200 total, or just a bit over what some conferences charge for their registration fee alone!&lt;br&gt;
What about quality? Well, you&amp;rsquo;ll get the same food Microsoft employees get. So that can&amp;rsquo;t be all bad. You&amp;rsquo;ll attend sessions delivered by Microsoft product team members, along with independent experts. You&amp;rsquo;ll interact directly with PowerShell team managers, too, in a small-event format that lets you provide product feedback directly to them. Heck, with under 100 fellow attendees, you&amp;rsquo;ll get plenty of face time with everyone.&lt;br&gt;
It&amp;rsquo;s going to be a great event, and it will definitely be affordable. It&amp;rsquo;s being run by members of the community, not a conference company. This will hopefully become OUR event, an annual gathering of PowerShell enthusiasts, experts, and team members. A chance to network, to learn, to share, and to grow.&lt;br&gt;
I hope you&amp;rsquo;ll be able to join us!&lt;/p&gt;</description><content:encoded>&lt;![CDATA[<p>What&rsquo;s the average tech conference cost these days? $1500? $2000? And that&rsquo;s just to get in, to say nothing of hotel, air, food, and whatnot.<br>
The<a href="http://powershellsummit.org">PowerShell Summit North America 2013</a> has an idea. Lets do a community-owned event, with a goal of breaking even and supporting an annual event, but not worry about a profit.<br>
Lets say you live in the US. A ticket to Seattle in April will run you $500-700 after taxes. Maybe less if you can get on a discount carrier like Southwest - they fly to SEA. Hotel will run you under $450 for three nights. Say you decide to splurge on a car for four days, probably for under $200 (including all the ridiculous taxes on rental cars). Toss in another $250 for food? That takes you to under $1600. PowerShell Summit only costs $550 - less if you register during one of the Early Bird tiers; as low us $450, in fact. That&rsquo;s $2100-2200 total, or just a bit over what some conferences charge for their registration fee alone!<br>
What about quality? Well, you&rsquo;ll get the same food Microsoft employees get. So that can&rsquo;t be all bad. You&rsquo;ll attend sessions delivered by Microsoft product team members, along with independent experts. You&rsquo;ll interact directly with PowerShell team managers, too, in a small-event format that lets you provide product feedback directly to them. Heck, with under 100 fellow attendees, you&rsquo;ll get plenty of face time with everyone.<br>
It&rsquo;s going to be a great event, and it will definitely be affordable. It&rsquo;s being run by members of the community, not a conference company. This will hopefully become OUR event, an annual gathering of PowerShell enthusiasts, experts, and team members. A chance to network, to learn, to share, and to grow.<br>
I hope you&rsquo;ll be able to join us!</p>
]]></content:encoded></item><item><title>Own a Piece of the Community: Buy Shares in PowerShell.org, Inc.!</title><link>https://powershell.org/articles/2012-09-10-own-a-piece-of-the-community-buy-shares-in-powershell-org-inc/</link><guid>https://powershell.org/articles/2012-09-10-own-a-piece-of-the-community-buy-shares-in-powershell-org-inc/</guid><pubDate>Mon, 10 Sep 2012 17:35:16 +0000</pubDate><description>&lt;p&gt;When Kirk Munro and I set this site up, and started redirecting traffic from the old PowerShellCommunity.org, one of our main goals was to make this a truly &lt;em&gt;community-owned&lt;/em&gt; resource. We wanted it hosted independently (my company, Concentrated Tech, is being paid to host the site, so we get pretty good service and total control). We didn&amp;rsquo;t want to be beholden to anyone&amp;rsquo;s commercial interests or whims (companies do get distracted by their real jobs from time to time, after all).&lt;br&gt;
When we started talking to Microsoft about holding a &lt;a href="http://powershellsummit.org"&gt;PowerShell Summit&lt;/a&gt;, we wanted that to be community-owned too, and not tied to a commercial interest - in part so that we could keep the price low, but also so that Microsoft would be able to support us without getting into any possible conflicts of interest with any of its ISV partners.&lt;br&gt;
Today, our intention becomes legally realized. PowerShell.org., Inc., a Nevada corporation, is born - and we&amp;rsquo;re offering ownership shares to help raise capital. This capital will be used to pay for necessities like bookkeeping, and also to help bootstrap the Summit event. Shareholders are _legal owners of the corporation, _and will vote for its Board of Directors - who in turn appoint the Officers that make things happen. Our first Board will consist of &lt;a href="http://donjones.com"&gt;myself&lt;/a&gt;, &lt;a href="http://twitter.com/poshoholic"&gt;Kirk&lt;/a&gt;, &lt;a href="http://twitter.com/jeffhicks"&gt;Jeffery Hicks&lt;/a&gt;, &lt;a href="http://twitter.com/rsiddaway"&gt;Richard Siddaway&lt;/a&gt;, and &lt;a href="http://twitter.com/thejasonhelmick"&gt;Jason Helmick&lt;/a&gt;.&lt;br&gt;
**Want to become a community owner? **You&amp;rsquo;ll want to start with our &amp;ldquo;Shareholder Brochure,&amp;rdquo; which is available in &lt;a href="https://powershell.org/discuss/viewforum.php?f=26"&gt;the new &amp;ldquo;PowerShell.org, Inc.&amp;rdquo; forum&lt;/a&gt; on this site. That forum will also get you our Bylaws and Articles of Incorporation; the Brochure will outline the purpose of the corporation, and explain what it means to be a shareholder. The forum also contains the Share Purchase Order form, which you can use to purchase shares, and contains documents that outline our initial Board of Directors and Officer lineup and other important details.&lt;/p&gt;</description><content:encoded>&lt;![CDATA[<p>When Kirk Munro and I set this site up, and started redirecting traffic from the old PowerShellCommunity.org, one of our main goals was to make this a truly <em>community-owned</em> resource. We wanted it hosted independently (my company, Concentrated Tech, is being paid to host the site, so we get pretty good service and total control). We didn&rsquo;t want to be beholden to anyone&rsquo;s commercial interests or whims (companies do get distracted by their real jobs from time to time, after all).<br>
When we started talking to Microsoft about holding a<a href="http://powershellsummit.org">PowerShell Summit</a>, we wanted that to be community-owned too, and not tied to a commercial interest - in part so that we could keep the price low, but also so that Microsoft would be able to support us without getting into any possible conflicts of interest with any of its ISV partners.<br>
Today, our intention becomes legally realized. PowerShell.org., Inc., a Nevada corporation, is born - and we&rsquo;re offering ownership shares to help raise capital. This capital will be used to pay for necessities like bookkeeping, and also to help bootstrap the Summit event. Shareholders are _legal owners of the corporation, _and will vote for its Board of Directors - who in turn appoint the Officers that make things happen. Our first Board will consist of<a href="http://donjones.com">myself</a>,<a href="http://twitter.com/poshoholic">Kirk</a>,<a href="http://twitter.com/jeffhicks">Jeffery Hicks</a>,<a href="http://twitter.com/rsiddaway">Richard Siddaway</a>, and<a href="http://twitter.com/thejasonhelmick">Jason Helmick</a>.<br>
**Want to become a community owner? **You&rsquo;ll want to start with our &ldquo;Shareholder Brochure,&rdquo; which is available in<a href="https://powershell.org/discuss/viewforum.php?f=26">the new &ldquo;PowerShell.org, Inc.&rdquo; forum</a> on this site. That forum will also get you our Bylaws and Articles of Incorporation; the Brochure will outline the purpose of the corporation, and explain what it means to be a shareholder. The forum also contains the Share Purchase Order form, which you can use to purchase shares, and contains documents that outline our initial Board of Directors and Officer lineup and other important details.</p><blockquote><p><strong>Cool tip:</strong> Shareholders get access to a special forum on PowerShell.org to discuss company business, are eligible for an @powershell.org e-mail address, and may receive a discount to the<a href="http://powershellsummit.org">PowerShell Summit North America 2013</a>. In fact, if you&rsquo;re planning to attend, you can add $100 worth of stock to your event registration for just $75 (plus card fees), instantly giving you your $25 discount!</p></blockquote><p>We hope you&rsquo;ll give serious consideration to supporting this community effort, and to finally - about six years after PowerShell&rsquo;s introduction - help us realize our dream of creating a truly community-owned online resource, educational event, and more. We have created<a href="https://powershell.org/discuss/viewforum.php?f=25">a set of forums on PowerShell.org for discussion and Q&amp;A about this corporation</a>, so if you have any questions, we encourage you to turn there for your answers.<br>
Although the corporation will not be publicly-traded in the sense of appearing on a stock market, we do intend to make as much of its business as possible completely open and transparent. To that end, we&rsquo;ll use this blog to periodically announce the availability of public documents (as we create them), along with shareholder meetings and other important events. Just look for items in the &ldquo;Inc.&rdquo; category of the blog. We&rsquo;ll also use the<a href="https://powershell.org/discuss/viewforum.php?f=25">Forums</a> as a repository for various documents, so that you can always find them easily.<br><strong>What do you get by being an owner?</strong> Well, a vote (one per share owned) for the Board of Directors makeup. The aforementioned $25 discount to the PowerShell Summit. An @powershell.org e-mail address or forwarding alias, if you want one. And a chance to help us create a truly independent, group-driven entity that&rsquo;s owned not by any one person, but by all of us together.<br>
Thanks for joining.</p>
]]></content:encoded></item><item><title>PowerShell Summit: 'I'm Feeling Lucky' Tickets on Sale, $400 Each</title><link>https://powershell.org/articles/2012-09-09-powershell-summit-im-feeling-lucky-tickets-on-sale-400-each/</link><guid>https://powershell.org/articles/2012-09-09-powershell-summit-im-feeling-lucky-tickets-on-sale-400-each/</guid><pubDate>Sun, 09 Sep 2012 22:55:29 +0000</pubDate><description>&lt;p&gt;That&amp;rsquo;s right, for just $400 you can guarantee yourself a seat at the PowerShell Summit North America 2013, to be held at Microsoft&amp;rsquo;s campus in Redmond, WA. Just 10 tickets will be made available at this low-low-low price, which is $150 off the normal registration rate.&lt;br&gt;
Why so low? Why are they called &amp;ldquo;I&amp;rsquo;m Feeling Lucky&amp;rdquo; tickets? Because while we&amp;rsquo;re committed to an April 2013 date, we haven&amp;rsquo;t actually locked in dates with Microsoft, yet. So to purchase these, you&amp;rsquo;ve got to be feeling flexible&amp;hellip; or lucky!&lt;br&gt;
But it&amp;rsquo;s not a marriage. The tickets are completely refundable, up to 30 days prior to the event. So if we manage to lock in the three dates &lt;em&gt;you can&amp;rsquo;t attend,&lt;/em&gt; we&amp;rsquo;ll give you your money back. You can also transfer the ticket to someone else, at any time (although they&amp;rsquo;ll be paying you directly for the ticket, and we won&amp;rsquo;t get involved in that transaction).&lt;br&gt;
Once these sell out, or we lock in our dates, we&amp;rsquo;ll commence the Early Bird period, with a rate of $475 and just 30 tickets available. That rate will be good through the end of December, unless we sell out. Full rate of $550 kicks in after that, when we&amp;rsquo;ll sell the remaining tickets to fill our roughly 100-person venue.&lt;br&gt;
Thinking about presenting? Start &lt;a href="https://powershell.org/discuss/viewforum.php?f=21"&gt;submitting topics in the Forums&lt;/a&gt;! You can get all the other juicy details on the &lt;a href="http://powershellsummit.org"&gt;Summit&amp;rsquo;s dedicated site&lt;/a&gt;, and catch the &lt;a href="http://twitter.com/PSHSummit"&gt;Summit&amp;rsquo;s Twitter feed&lt;/a&gt; for ongoing announcements.&lt;/p&gt;</description><content:encoded>&lt;![CDATA[<p>That&rsquo;s right, for just $400 you can guarantee yourself a seat at the PowerShell Summit North America 2013, to be held at Microsoft&rsquo;s campus in Redmond, WA. Just 10 tickets will be made available at this low-low-low price, which is $150 off the normal registration rate.<br>
Why so low? Why are they called &ldquo;I&rsquo;m Feeling Lucky&rdquo; tickets? Because while we&rsquo;re committed to an April 2013 date, we haven&rsquo;t actually locked in dates with Microsoft, yet. So to purchase these, you&rsquo;ve got to be feeling flexible&hellip; or lucky!<br>
But it&rsquo;s not a marriage. The tickets are completely refundable, up to 30 days prior to the event. So if we manage to lock in the three dates<em>you can&rsquo;t attend,</em> we&rsquo;ll give you your money back. You can also transfer the ticket to someone else, at any time (although they&rsquo;ll be paying you directly for the ticket, and we won&rsquo;t get involved in that transaction).<br>
Once these sell out, or we lock in our dates, we&rsquo;ll commence the Early Bird period, with a rate of $475 and just 30 tickets available. That rate will be good through the end of December, unless we sell out. Full rate of $550 kicks in after that, when we&rsquo;ll sell the remaining tickets to fill our roughly 100-person venue.<br>
Thinking about presenting? Start<a href="https://powershell.org/discuss/viewforum.php?f=21">submitting topics in the Forums</a>! You can get all the other juicy details on the<a href="http://powershellsummit.org">Summit&rsquo;s dedicated site</a>, and catch the<a href="http://twitter.com/PSHSummit">Summit&rsquo;s Twitter feed</a> for ongoing announcements.</p>
]]></content:encoded></item></channel></rss>