Can I get && to work in Powershell? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T05:08:00Z http://stackoverflow.com/feeds/question/563600 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/563600/can-i-get-to-work-in-powershell 5 Can I get && to work in Powershell? Orion Edwards 2009-02-19T01:34:04Z 2009-06-16T08:31:17Z <p><code>&amp;&amp;</code> is notoriously hard to search for on google, but the best I've found is <a href="http://www.microsoft.com/technet/scriptcenter/webcasts/psweek/day4qanda.mspx" rel="nofollow">this article</a> which says to use <code>-and</code>.</p> <p>Unfortunately it doesn't give any more information, and I can't find out what I'm supposed to do with <code>-and</code> (again, a notoriously hard thing to search for)</p> <p>The context I'm trying to use it in is "execute cmd1, and if successful, execute cmd2", basically this:</p> <pre><code>csc /t:exe /out:a.exe SomeFile.cs &amp;&amp; a.exe </code></pre> <p>This should be an easy few rep points to someone who knows, thanks!</p> http://stackoverflow.com/questions/563600/can-i-get-to-work-in-powershell/563631#563631 1 Answer by Matt Hamilton for Can I get && to work in Powershell? Matt Hamilton 2009-02-19T01:42:43Z 2009-02-19T01:42:43Z <p>It depends on the context, but here's an example of "-and" in action:</p> <pre><code>get-childitem | where-object { $_.Name.StartsWith("f") -and $_.Length -gt 10kb } </code></pre> <p>So that's getting all the files bigger than 10kb in a directory whose filename starts with "f".</p> http://stackoverflow.com/questions/563600/can-i-get-to-work-in-powershell/563636#563636 0 Answer by MohitC for Can I get && to work in Powershell? MohitC 2009-02-19T01:44:06Z 2009-02-19T01:44:06Z <p>PowerShell has -and and -or logical operators. Are the operators not working the way you expect them to? If so, you can post the expression here.</p> http://stackoverflow.com/questions/563600/can-i-get-to-work-in-powershell/564092#564092 4 Answer by Jay Bazuzi for Can I get && to work in Powershell? Jay Bazuzi 2009-02-19T05:51:30Z 2009-02-19T20:11:38Z <p>In CMD, '&amp;&amp;' means "execute command 1, and if it succeeds, execute command 2". I have used it for things like:</p> <pre><code>build &amp;&amp; run_tests </code></pre> <p>In PowerShell, the closest thing you can do is:</p> <pre><code>(build) -and (run_tests) </code></pre> <p>It has the same logic, but the output text from the commands is lost. Maybe it is good enough for you, though.</p> <p><strong>EDIT</strong></p> <p>If you're doing this in a script, you will probably be better off separating the statements, like this:</p> <pre><code>build if ($?) { run_tests } </code></pre> http://stackoverflow.com/questions/563600/can-i-get-to-work-in-powershell/573295#573295 4 Answer by Jeffrey Snover - MSFT for Can I get && to work in Powershell? Jeffrey Snover - MSFT 2009-02-21T16:13:12Z 2009-02-21T16:13:12Z <p>&amp;&amp; and || were on the list of things to implement (still are) but did not pop up as the next most useful thing to add. The reason is that we have -AND and -OR. If you think it is important, please file a suggestion on Connect and we'll consider it for V3.</p> <p>Experiment! Enjoy! Engage!</p> <p>Jeffrey Snover [MSFT] Windows Management Partner Architect Visit the Windows PowerShell Team blog at: <a href="http://blogs.msdn.com/PowerShell" rel="nofollow">http://blogs.msdn.com/PowerShell</a> Visit the Windows PowerShell ScriptCenter at: <a href="http://www.microsoft.com/technet/scriptcenter/hubs/msh.mspx" rel="nofollow">http://www.microsoft.com/technet/scriptcenter/hubs/msh.mspx</a></p> http://stackoverflow.com/questions/563600/can-i-get-to-work-in-powershell/1000199#1000199 1 Answer by Shmogles for Can I get && to work in Powershell? Shmogles 2009-06-16T08:31:17Z 2009-06-16T08:31:17Z <p>-and -or -lt -gt -le -ge ...</p> <p>no offense to the powershell team, but were you guys on crack when you decided to use those ridiculous things and not the standard &amp;&amp; || &lt; > &lt;= >=. </p>