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?
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?
In PowerShell, I often use cmd /c .
Therefore you should be able to run:
cmd /c licenseassistant /request:"C\User\temp" /batch