Recent Posts

Recent Comments

  • Stew: I’m not easily impressed. . . but that’s imprssieng me! :)
  • Olli: Two and a half year later – nothing changed.
  • Arrays: Steele made a wonderful piece about programming languages for the JAOO developers conference called 50 in 50....

Top Commentators

Archives


« JAOO naming contest | Main | Handling architecture in the agile world »

Windows PowerShell – a command line shell and scripting language

By Therese Hansen | February 9, 2009

“I believe that every .NET developer in the world will be a PowerShell user.” Jeffrey Snover, Microsoft.

When Jeffrey Snover presented PowerShell at JAOO Aarhus 2008, he told us that when he joined Microsoft and told people about his idea to introduce a command line scripting environment to the Microsoft platform of applications, they would question his perception about what it means to work at Microsoft. Nevertheless Jeffrey Snover kept on working on the idea and now we have Windows PowerShell – a command line shell and scripting language on the Windows platform.

We recorded the presentation and now you can see Jeffreys own presentation and demos of some cool PowerShell features, the interactive scripting environment and a preview of some V2 work including distributed programming, transactions, and job control.

Category: 2008 JAOO | Tags: , , , , | 4 Comments »

4 Responses to “Windows PowerShell – a command line shell and scripting language”

  1. Windows PowerShell Blog : JAOO Talk Says:
    February 10th, 2009 at 3:51 pm

    [...] I hope you enjoy the talk HERE. [...]

  2. dennisdamen.com » Jeffrey Snover @ .JAOO Says:
    February 11th, 2009 at 9:31 am

    [...] it out here [...]

  3. The Future Says:
    February 26th, 2009 at 12:00 am

    $PoSH = Get-Shell Powershell
    $Bash = Get-Shell Bash

    if ($PoSH -gt $Bash)
    {
    Get-Content C:\UNIX.txt |
    ForEach-Object {
    Get-WMIObject Win32_OperatingSystem -Computer $_ |
    ForEach-Object { $_.reboot(1) } # Logg user off using “Win32Shutdown(0)”: 0 = logoff, 1 = shutdown, 2 = reboot
    }
    Write-Host “You’ve officially been nerf’d & pwn’d”
    }

    PS>_You’ve officially been nerf’d & pwn’d

  4. Русский блог команды разработки Powershell : Разговор на JAOO Says:
    March 17th, 2009 at 6:35 am

    [...] вы получите удовольствие от ЭТОГО [...]

Comments