0

How to run cmd command in powershell? I have this command in cmd:

licenseassistant /request:"C\User\temp" /batch

How to do this in powershell?

2
  • 7
    Possible duplicate of Running CMD command in PowerShell Commented Sep 21, 2018 at 8:48
  • 2
    Just run the exact same command in powershell ad You're good to go Commented Sep 21, 2018 at 9:30

1 Answer 1

0

In PowerShell, I often use cmd /c .

Therefore you should be able to run:

cmd /c licenseassistant /request:"C\User\temp" /batch
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.