From f94a1128b2f46e36b29e7d3aecdcf6fbba612dc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakob=20Aar=C3=B8e=20Dam?= Date: Tue, 5 May 2015 12:39:50 +0200 Subject: [PATCH] Actually execute the unblock-file powershell --- install-server.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-server.bat b/install-server.bat index b74c131..5093838 100644 --- a/install-server.bat +++ b/install-server.bat @@ -5,10 +5,10 @@ set PATH=%PATH%;%windir%\Microsoft.NET\Framework\v4.0.30319 :: msbuild server/RDSFactor.sln /property:Configuration=release :: Unblock the downloaded file, otherwise stupid output from InstallUtil -powershell -Command {Unblock-File -Path server\bin\Release\RDSFactor.exe} +powershell -Command "& {Unblock-File -Path server\bin\Release\RDSFactor.exe}" :: install it InstallUtil server\bin\Release\RDSFactor.exe :: start it -net start RDSFactor \ No newline at end of file +net start RDSFactor