Skip to content

Instantly share code, notes, and snippets.

@DexterPOSH
Created July 10, 2015 08:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DexterPOSH/dba38bf6c561d41d75fe to your computer and use it in GitHub Desktop.
Save DexterPOSH/dba38bf6c561d41d75fe to your computer and use it in GitHub Desktop.
default ps.cmd which gets added to the VS Project
@echo off
cd /D %~dp0
if not exist "%DiagnosticStore%\LogFiles" mkdir "%DiagnosticStore%\LogFiles"
%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy Unrestricted -File %* >> "%DiagnosticStore%\LogFiles\%~n1.txt" 2>> "%DiagnosticStore%\LogFiles\%~n1.err.txt"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment