Skip to main content
Solved

create one liner for 2 step command

  • November 10, 2023
  • 1 reply
  • 92 views

Forum|alt.badge.img

What is the best way to have automox execute two one line commands? the commands would be:

 

winget install Microsoft.DotNet.DesktopRuntime.7

winget install Microsoft.DotNet.AspNetCore.7

 

would i create a worklet with both remedaition and execution code to something like this:

winget install Microsoft.DotNet.DesktopRuntime.7 && winget install Microsoft.DotNet.AspNetCore.7

 

i dont know if the && works the same way in windows as it does linux?

Best answer by AnthonyM-Automox

In PowerShell, if you wanted to include it all on one line you’d separate the statements with a semicolon:

winget install Microsoft.DotNet.DesktopRuntime.7; winget install Microsoft.DotNet.AspNetCore.7

 

But regarding readability, we typically just use two lines for things like this.

 

It is worth noting, a feature request to install multiple Winget packages in a single line ( winget install DesktopRuntime.7 AspNetCore.8 ) is currently in testing!

View original
How helpful was this post to you?

1 reply

AnthonyM-Automox

In PowerShell, if you wanted to include it all on one line you’d separate the statements with a semicolon:

winget install Microsoft.DotNet.DesktopRuntime.7; winget install Microsoft.DotNet.AspNetCore.7

 

But regarding readability, we typically just use two lines for things like this.

 

It is worth noting, a feature request to install multiple Winget packages in a single line ( winget install DesktopRuntime.7 AspNetCore.8 ) is currently in testing!


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings