Can I get && to work in Powershell? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T05:08:00Zhttp://stackoverflow.com/feeds/question/563600http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/563600/can-i-get-to-work-in-powershell5Can I get && to work in Powershell?Orion Edwards2009-02-19T01:34:04Z2009-06-16T08:31:17Z
<p><code>&&</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 && 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#5636311Answer by Matt Hamilton for Can I get && to work in Powershell?Matt Hamilton2009-02-19T01:42:43Z2009-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#5636360Answer by MohitC for Can I get && to work in Powershell?MohitC2009-02-19T01:44:06Z2009-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#5640924Answer by Jay Bazuzi for Can I get && to work in Powershell?Jay Bazuzi2009-02-19T05:51:30Z2009-02-19T20:11:38Z<p>In CMD, '&&' means "execute command 1, and if it succeeds, execute command 2". I have used it for things like:</p>
<pre><code>build && 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#5732954Answer by Jeffrey Snover - MSFT for Can I get && to work in Powershell?Jeffrey Snover - MSFT2009-02-21T16:13:12Z2009-02-21T16:13:12Z<p>&& 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#10001991Answer by Shmogles for Can I get && to work in Powershell?Shmogles2009-06-16T08:31:17Z2009-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 && || < > <= >=. </p>