dsingh23
dsingh23

Reputation: 195

How to call the svcutil exe from PowerShell?

Is there a way I can call the svcutil exe from PowerShell? I need to automate this process through scripting.

Upvotes: 2

Views: 1430

Answers (1)

saftargholi
saftargholi

Reputation: 980

You can run any .exe file with this method :

Start-Process -FilePath 'C:\FileAddress\File.exe'

it's very simple

Upvotes: 1

Related Questions