« 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: .NET, JAOO Aarhus 2008, Jeffrey Snover, Microsoft, PowerShell | 4 Comments »

February 10th, 2009 at 3:51 pm
[...] I hope you enjoy the talk HERE. [...]
February 11th, 2009 at 9:31 am
[...] it out here [...]
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
March 17th, 2009 at 6:35 am
[...] вы получите удовольствие от ЭТОГО [...]