Powershell conditionals: Revision history

From wikinotes

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

19 September 2018

  • curprev 03:2603:26, 19 September 2018Will talk contribs 178 bytes +178 Created page with " <source lang="powershell"> if ($PATH[0] -ne 'C:\Python27') { ... } # if statement if (!( $PATH.Contains('C:\Python27') )){ ... } # if not statement </source>"