Windows Vista Forums
Vista Forums Home Join Vista Forums Donate Vista Tutorials Tags

Welcome to Vista Forums we are your forum to discuss Windows Vista x64 and x86 systems. Whether you need help or just want to post an idea you have on Vista, this is the forum for you.
Register at Vista forums...the world biggest Windows Vista resource Join Vista Forums Now

Go Back   Vista Forums > Microsoft Technical Newsgroups > PowerShell

PSCX 1.0 Released

Update your Vista Drivers Update Your Drivers Now!!
Closed Thread
 
Thread Tools Display Modes
Old 12-11-2006   #1 (permalink)
Keith Hill [MVP]
Guest


 

PSCX 1.0 Released

I've just released a major update to PSCX that I hope folks will find
useful. You can download it from:

http://www.codeplex.com/PowerShellCX...tReleases.aspx

If you run into problems please report them here:

http://www.codeplex.com/PowerShellCX/WorkItem/List.aspx

The readme and about_pscx help topic are attached for you to check out what
is new in version 1.0. For me personally, I'm really liking the the
Get-CmdletMaml cmdlet which reflects over a snapin assembly and produces
PowerShell MAML help. It uses a number of attributes defined by PowerShell
and .NET as well as some defined by PSCX.

Enjoy!
--
The PSCX crew (Keith Hill, Alex Angelopoulos, Mabster, DBMsW, and MoW)

P.S. If you are passionate about PoSh and can contribute by writing C#
cmdlets, let me know. We're looking for more help.








My System SpecsSystem Spec
Old 12-11-2006   #2 (permalink)
Maximilian Hänel
Guest


 

Re: PSCX 1.0 Released

Hi Keith,

> I've just released a major update to PSCX that I hope folks will find
> useful. You can download it from:


Very nice! Get-CmdletMaml - I like it ;-)

> P.S. If you are passionate about PoSh and can contribute by writing C#
> cmdlets, let me know. We're looking for more help.


Sounds interesting :-)

cu

Max
My System SpecsSystem Spec
Old 12-12-2006   #3 (permalink)
Sourabh Mathur
Guest


 

Re: PSCX 1.0 Released

Great work Keith et all. There are some really useful things in this snapin
(e.g. awesome to run msbuild scripts via the PS console).

I have added the "Add-PSSnapin Pscx" line to my profile to load this and I
see it listed via Get-PsSnapin. But I can't seem to get the aliases (e.g.
galpscx) or functions (e.g. dirs) to work. Since I had my own profile I did
not choose the option to overwrite the profile during setup. What am I
missing here?

TIA
-Sourabh

"Maximilian Hänel" <ngSpam@smjh.de> wrote in message
news:%23BuZTYTHHHA.2632@TK2MSFTNGP06.phx.gbl...
> Hi Keith,
>
>> I've just released a major update to PSCX that I hope folks will find
>> useful. You can download it from:

>
> Very nice! Get-CmdletMaml - I like it ;-)
>
>> P.S. If you are passionate about PoSh and can contribute by writing C#
>> cmdlets, let me know. We're looking for more help.

>
> Sounds interesting :-)
>
> cu
>
> Max



My System SpecsSystem Spec
Old 12-13-2006   #4 (permalink)
Brandon Shell
Guest


 

Re: PSCX 1.0 Released

There are a series of scripts that are included in PSCX.

Try to add this to your profile (assuming the scripts are in correct
location
_______________________________
.. "$env:PscxHome\Scripts\Debug.ps1"
.. "$env:PscxHome\Scripts\Prompt.ps1"
.. "$env:PscxHome\Scripts\PscxCmdletAliases.ps1"
.. "$env:PscxHome\Scripts\GenericAliases.ps1"
.. "$env:PscxHome\Scripts\GenericFilters.ps1"
.. "$env:PscxHome\Scripts\GenericFunctions.ps1"
.. "$env:PscxHome\Scripts\Cd.ps1"
.. "$env:PscxHome\Scripts\Dir.ps1"
.. "$env:PscxHome\Scripts\History.ps1"
.. "$env:PscxHome\Scripts\TabExpansion.ps1"
__________________________________

"Sourabh Mathur" <kksmkksm@yahoo.com> wrote in message
news:ea2G5elHHHA.3780@TK2MSFTNGP02.phx.gbl...
> Great work Keith et all. There are some really useful things in this
> snapin (e.g. awesome to run msbuild scripts via the PS console).
>
> I have added the "Add-PSSnapin Pscx" line to my profile to load this and I
> see it listed via Get-PsSnapin. But I can't seem to get the aliases (e.g.
> galpscx) or functions (e.g. dirs) to work. Since I had my own profile I
> did not choose the option to overwrite the profile during setup. What am I
> missing here?
>
> TIA
> -Sourabh
>
> "Maximilian Hänel" <ngSpam@smjh.de> wrote in message
> news:%23BuZTYTHHHA.2632@TK2MSFTNGP06.phx.gbl...
>> Hi Keith,
>>
>>> I've just released a major update to PSCX that I hope folks will find
>>> useful. You can download it from:

>>
>> Very nice! Get-CmdletMaml - I like it ;-)
>>
>>> P.S. If you are passionate about PoSh and can contribute by writing C#
>>> cmdlets, let me know. We're looking for more help.

>>
>> Sounds interesting :-)
>>
>> cu
>>
>> Max

>
>


My System SpecsSystem Spec
Old 12-13-2006   #5 (permalink)
Keith Hill [MVP]
Guest


 

Re: PSCX 1.0 Released

"Brandon Shell" <tshell.mask@gmail.com> wrote in message
news:OAfSyKsHHHA.924@TK2MSFTNGP02.phx.gbl...
> There are a series of scripts that are included in PSCX.
>
> Try to add this to your profile (assuming the scripts are in correct
> location
> _______________________________
> . "$env:PscxHome\Scripts\Debug.ps1"
> . "$env:PscxHome\Scripts\Prompt.ps1"
> . "$env:PscxHome\Scripts\PscxCmdletAliases.ps1"
> . "$env:PscxHome\Scripts\GenericAliases.ps1"
> . "$env:PscxHome\Scripts\GenericFilters.ps1"
> . "$env:PscxHome\Scripts\GenericFunctions.ps1"
> . "$env:PscxHome\Scripts\Cd.ps1"
> . "$env:PscxHome\Scripts\Dir.ps1"
> . "$env:PscxHome\Scripts\History.ps1"
> . "$env:PscxHome\Scripts\TabExpansion.ps1"
> __________________________________


Brandon is correct. PSCX creates a system environment variable when it is
installed so that you can easily dot source whichever of the PSCX scripts
that you want. The PSCX cmdlet related aliases are all in
PscxCmdletAliases.ps1. The other scripts define aliases right with each
function/filter.

--
Keith

My System SpecsSystem Spec
Closed Thread

Thread Tools
Display Modes



Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem with PSCX and Quest AD Cmdlets Kuma PowerShell 3 07-19-2008 08:44 AM
Changing prompt color with PSCX dmonder PowerShell 2 06-18-2007 08:25 AM
PSCX 1.1 issues Marco Shaw PowerShell 8 03-16-2007 10:48 PM
[PSCX] What happened to Get-CmdLetMaml Joris van Lier PowerShell 2 03-11-2007 12:22 PM
PSCX - Send-SmtpMail Keith Hill [MVP] PowerShell 1 11-12-2006 09:10 PM


Vistax64.com is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media 2005-2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51