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?

1 Answers1

0

In PowerShell, I often use cmd /c .

Therefore you should be able to run:

cmd /c licenseassistant /request:"C\User\temp" /batch
Kevin Bridges
  • 176
  • 2
  • 10