Default Windows Languages? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T13:01:08Z http://stackoverflow.com/feeds/question/537170 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/537170/default-windows-languages 0 Default Windows Languages? theman_on_vista 2009-02-11T14:57:10Z 2009-02-11T15:04:52Z <p>Hi. Is there some default Windows scripting language that comes pre-installed on XP and Vista (Similar to how OS X comes with Python and/or Linux comes with Perl)? </p> <p>I am aware of Batch scripting but I am hoping for something a little more robust. Thanks</p> <p><strong>note -</strong> I am on a Linux box so if you guys could give your 2 cents on the Windows scripting languages, it would be appreciated, thanks.</p> <p><strong>part deux -</strong> even though ebgreen hates me i accepted his answer because he gave me his 2 cents. </p> http://stackoverflow.com/questions/537170/default-windows-languages/537180#537180 6 Answer by EBGreen for Default Windows Languages? EBGreen 2009-02-11T14:59:57Z 2009-02-11T14:59:57Z <p>Windows XP and Vista have VBScript and jscript engines installed by default. Windows 7 will also have Powershell installed.</p> <p>As for my 2 cents, VBScript and jscript are both very mature technologies that have plenty of resources available. Neither of them give you a console if you are looking for that.</p> <p>Powershell is newer and much much more powerful. It also has the advantage of having a console as well.</p> http://stackoverflow.com/questions/537170/default-windows-languages/537188#537188 4 Answer by Harper Shelby for Default Windows Languages? Harper Shelby 2009-02-11T15:01:23Z 2009-02-11T15:01:23Z <p>Windows Scripting Host, invoked through <a href="http://technet.microsoft.com/en-us/library/bb490887.aspx" rel="nofollow">Cscript.exe</a> supports VBScript and JScript. <a href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx" rel="nofollow">Windows PowerShell</a> is another scripting tool, but it's a separate download.</p> http://stackoverflow.com/questions/537170/default-windows-languages/537197#537197 3 Answer by Wolfwyrd for Default Windows Languages? Wolfwyrd 2009-02-11T15:02:34Z 2009-02-11T15:02:34Z <p>XP and Vista come out of the box with VBScript and JScript support. There's a primer available at: <a href="http://msdn.microsoft.com/en-us/library/hbxc2t98.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/hbxc2t98.aspx</a>. Vista can optionally have installed PowerShell which will also ship by default with Windows 7. A powershell primer can be found at: <a href="http://technet.microsoft.com/en-us/library/cc196356.aspx" rel="nofollow">http://technet.microsoft.com/en-us/library/cc196356.aspx</a></p>