How do I run multiple commands on one line in Powershell?
- by David
In cmd prompt, you can run two commands on one line like so:
ipconfig /release & ipconfig /renew
When I run this command in PowerShell, I get:
Ampersand not allowed. The & operator is reserved for future use
Does PowerShell have an operator that allows me to quickly produce the equivalent of & in cmd prompt? Any method of running…