Reputation: 195
Is there a way I can call the svcutil exe from PowerShell? I need to automate this process through scripting.
Upvotes: 2
Views: 1430
Reputation: 980
You can run any .exe file with this method :
Start-Process -FilePath 'C:\FileAddress\File.exe'
it's very simple
Upvotes: 1