![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
|
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.
br> br> |
| |||||||
![]() |
| | Thread Tools | Display Modes |
| | #1 (permalink) |
| Guest | Scripting Games 2007 starting 12 Feb For the ones that want to train for next weeks Scripting games, (and / or learning PowerShell ) I made a list of the Side Series I did on my old blog for the 2006 Scripting games : http://thepowershellguy.com/blogs/po...mpetition.aspx Enjoy, Greetings /\/\o\/\/ |
| | #2 (permalink) |
| Guest | RE: Scripting Games 2007 starting 12 Feb Sounds like fun -- Richard Siddaway Please note that all scripts are supplied "as is" and with no warranty Blog: http://richardsiddaway.spaces.live.com/ PowerShell User Group: http://www.get-psuguk.org.uk "/\/\o\/\/ [MVP]" wrote: > For the ones that want to train for next weeks Scripting games, (and / or > learning PowerShell ) > > I made a list of the Side Series I did on my old blog for the 2006 Scripting > games : > > http://thepowershellguy.com/blogs/po...mpetition.aspx > > Enjoy, > > Greetings /\/\o\/\/ > |
| | #3 (permalink) |
| Guest | Re: Scripting Games 2007 starting 12 Feb Yep, last one was (even as there was no official PowerShell competition then) So see you there ? Greetings /\/\o\/\/ "RichS" <RichS@discussions.microsoft.com> wrote in message news:0A2AF7CC-11D5-4FB8-A266-D67438E50A3F@microsoft.com... > Sounds like fun > -- > Richard Siddaway > Please note that all scripts are supplied "as is" and with no warranty > Blog: http://richardsiddaway.spaces.live.com/ > PowerShell User Group: http://www.get-psuguk.org.uk > > > "/\/\o\/\/ [MVP]" wrote: > >> For the ones that want to train for next weeks Scripting games, (and / or >> learning PowerShell ) >> >> I made a list of the Side Series I did on my old blog for the 2006 >> Scripting >> games : >> >> http://thepowershellguy.com/blogs/po...mpetition.aspx >> >> Enjoy, >> >> Greetings /\/\o\/\/ >> |
| | #4 (permalink) |
| Guest | RE: Scripting Games 2007 starting 12 Feb Yeah, it's great ! See you at scripting games... Arnaud "/\/\o\/\/ [MVP]" wrote: > For the ones that want to train for next weeks Scripting games, (and / or > learning PowerShell ) > > I made a list of the Side Series I did on my old blog for the 2006 Scripting > games : > > http://thepowershellguy.com/blogs/po...mpetition.aspx > > Enjoy, > > Greetings /\/\o\/\/ > |
| | #5 (permalink) |
| Guest | Re: Scripting Games 2007 starting 12 Feb "/\/\o\/\/ [MVP]" <mow001@hotmail.NoSpam> wrote in message news:BE1C94EF-85EC-416D-9578-8737E07080C6@microsoft.com... > For the ones that want to train for next weeks Scripting games, (and / or > learning PowerShell ) I previously mentioned that I had mapped out the results using PowerGadgets' World map: http://marcoshaw.blogspot.com/2006/1...-examples.html Going to do the same this year. Looking forward to the contest! /\/\o\/\/: Disapointed you didn't submit a perfect score profile to the Scripting Guys. At least I don't think you did... Marco |
| | #6 (permalink) |
| Guest | Re: Scripting Games 2007 starting 12 Feb /\/\o\/\/ is listed as the 1st entry on the perfect scores page in the .pdf for the 2007 scripting games got your back /\/\o\/\/ after the ">" ">>" help ![]() -s "Marco Shaw" wrote: > > "/\/\o\/\/ [MVP]" <mow001@hotmail.NoSpam> wrote in message > news:BE1C94EF-85EC-416D-9578-8737E07080C6@microsoft.com... > > For the ones that want to train for next weeks Scripting games, (and / or > > learning PowerShell ) > > I previously mentioned that I had mapped out the results using PowerGadgets' > World map: > http://marcoshaw.blogspot.com/2006/1...-examples.html > > Going to do the same this year. > > Looking forward to the contest! > > /\/\o\/\/: Disapointed you didn't submit a perfect score profile to the > Scripting Guys. At least I don't think you did... > > Marco > > > |
| | #7 (permalink) |
| Guest | Re: Scripting Games 2007 starting 12 Feb "Sami" <Sami@discussions.microsoft.com> wrote in message news:A7E799E1-7C3D-4B8B-96B2-4ABE961EEB5D@microsoft.com... > /\/\o\/\/ is listed as the 1st entry on the perfect scores page in the > for the 2007 scripting games I meant here: http://www.microsoft.com/technet/scr...007/index.mspx |
| | #8 (permalink) |
| Guest | Re: Scripting Games 2007 starting 12 Feb Looks like /\/\o\/\/ better submit his biography to be on the list. -s "Marco Shaw" wrote: > > "Sami" <Sami@discussions.microsoft.com> wrote in message > news:A7E799E1-7C3D-4B8B-96B2-4ABE961EEB5D@microsoft.com... > > /\/\o\/\/ is listed as the 1st entry on the perfect scores page in the > > for the 2007 scripting games > > I meant here: > http://www.microsoft.com/technet/scr...007/index.mspx > > > |
| | #9 (permalink) |
| Guest | Re: Scripting Games 2007 starting 12 Feb Nope, sorry did not send in a profile yet, but did another training post ;-) , Translated this : http://www.microsoft.com/technet/scr...n/default.mspx in this http://thepowershellguy.com/blogs/po...ext-files.aspx Poor VbScript competitors : PoSH way (get-content companies.txt) -replace 'Fabrikam','Contoso' | out-file companies.txt Vbscript Const ForReading = 1 Const ForWriting = 2 Set objFSO = CreateObject("Scripting.FileSystemObject") Set objFile = objFSO.OpenTextFile("C:\Scripts\Companies.txt", ForReading) Do Until objFile.AtEndOfStream strLine = objFile.ReadLine If strLine = "Fabrikam" Then strLine = "Contoso" End If strContents = strContents & strLine & vbCrLf Loop objFile.Close Set objFile = objFSO.OpenTextFile("C:\scripts\Companies.txt", ForWriting) objFile.Write(strContents) objFile.Close for more fun : http://thepowershellguy.com/blogs/po...ext-files.aspx Greetings /\/\o\/\/ "Marco Shaw" <marcoDOTshaw_@_gmailDOTcom> wrote in message news:usN7Q33SHHA.1228@TK2MSFTNGP06.phx.gbl... > > "Sami" <Sami@discussions.microsoft.com> wrote in message > news:A7E799E1-7C3D-4B8B-96B2-4ABE961EEB5D@microsoft.com... >> /\/\o\/\/ is listed as the 1st entry on the perfect scores page in the >> for the 2007 scripting games > > I meant here: > http://www.microsoft.com/technet/scr...007/index.mspx > |
| |
| |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Quite a few games starting to drive me mad | Paul | Vista Games | 4 | 04-23-2008 11:07 AM |
| 2008 Winter Scripting Games Begin Friday, February 15, 2008 | Greg Stemp (Microsoft) | PowerShell | 5 | 02-15-2008 07:13 PM |
| [ANNOUNCE] 2008 Winter Scripting Games program | Marco Shaw [MVP] | PowerShell | 3 | 02-03-2008 04:44 AM |
| Error Message, Starting ANY games | Sunny:D | Vista Games | 0 | 03-20-2007 07:31 PM |
| 2006 Scripting Games: scores using PowerGadgets out-map | Marco Shaw | PowerShell | 2 | 12-15-2006 12:40 PM |