Showing results for December 2006 - PowerShell Team

Dec 31, 2006
0
0

The Admin Development Model and Send-Snippet

PowerShell Team
PowerShell Team

One of the things that motivated us to develop PowerShell was the belief that we (Microsoft) had been doing a poor job supporting the Admin Development Model.  All the effort seemed to have gone into treating Admins as GUI-only users or as though they were developers that couldn't handle the complexity of parenthesis.  I ...

Dec 31, 2006
0
0

Sad State of Blogging Software

PowerShell Team
PowerShell Team

The state of blogging software is pretty sad.  I must be a harder problem than I can imagine (of course there are other explainations but I'll be gracious and go with that one for now.) I started a entry, got distracted and posted another blog entry.  The next day, I came to my computer and noticed that I hadn't finished ...

Dec 29, 2006
0
0

DIY: Ternary operator

PowerShell Team
PowerShell Team

<Changed DYI => DIY.  jps>   At Microsoft, "to ship is to choose".  One of the things we were very disappointed in not being able to ship in V1.0 is a ternary operator. Here is a description of a ternary operator from Wikipedia: Many programming languages that use C-like syntax feature a ternary operator, ; ...

LANGUAGE:CONTROL
Dec 29, 2006
0
0

Use Copy-Property to Make it Easier to Write, Read,and Review Scripts

PowerShell Team
PowerShell Team

<Updated script on 1/1/2007 to reflect fixes suggested by James Manning>  Dennis Verwiej is doing some great PowerShell work over at his blog Just PowerShell It at http://dverweij.spaces.live.com/ .   Recently he posted a blog entry Import Citrix Published Application in which he Imports a CSV file (...

Dec 29, 2006
0
0

Documenting TRAP and THROW

PowerShell Team
PowerShell Team

We pride ourselves about being a bit overboard when it comes to Error handling.  That is why our sparse (non-existing?) documentation of THROW and TRAP handling is both ironic and sad.  10,000 apologizes for that, we'll fix it in the next release.  In the mean time, it's Don Jones amd Jeffery Hicks to the rescue.  Don...

DOCUMENTATIONERROR
Dec 28, 2006
0
0

Mandelbrot One-liner

PowerShell Team
PowerShell Team

WaiKin Wong sent me a Mandelbrot one-liner: $i=$j=$r=$x=$y=[float]-16; while(($y++) -lt 15) {for($x=0; ($x++) -lt 84; write-host (" .:-;!/>`)|&IH%*#"[$k -band 15]) -nonewline){$i=$k=$r=[float]0;do{$j=$r*$r-$i*$i-2+$x/25;$i=2*$r*$i+$y/10;$r=$j} while (($j*$j+$i*$i) -lt 11 -band ($k++) -lt 111)}" "} This produces the following results: &...

Dec 28, 2006
0
0

Editing your Profile file

PowerShell Team
PowerShell Team

$hay has a new scripting blog at http://scriptolog.blogspot.com/ .  His first blog entry Restart your engine - The PowerShell Way, talks about how he frequently edits his PowerShell profile file and then restarts his session.  In his directions he says: 2: type: Notepad $profile to open your profile file I looked at this and ...

PHILOSOPHYENVIRONMENT
Dec 27, 2006
0
0

PowerShell Essentials Package

PowerShell Team
PowerShell Team

A number of people have asked me about PowerShell IDEs and about how to get started with PowerShell.  Here is something to consider - Sapien is offering a special price on a package of components focused on PowerShell.  The package includes Tools (PrimalScript Professional), Snippets (reusable PowerShell code segments), and Learning...

Sapien
Dec 27, 2006
0
0

Resolve to blog your automation

PowerShell Team
PowerShell Team

In response to my entry Philosophy of Automation, Tim Long blogged a response where he advanced the idea that people should make a New Year's Resolution to start a blog (if you have already).  That is a great idea.  I would follow on and further encourage you to set up a system to remind yourself at least once a week to make a blog entry...

Dec 25, 2006
0
0

Send-SignatureToClipBoard

PowerShell Team
PowerShell Team

In my previous blog about the Philosophy of Automation, I encouraged everyone to share their automation even when it was small.  Here I'll follow that advice. I find myself doing quite a bit of blogging and commenting on other people's blogs.  I am often struck by the sorry state of blogging software.  I could go on for quite ...