This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
REM Aliases | |
doskey chrome="C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" | |
doskey cdc=if $1. equ . (cd /D D:\Code) else cd /D D:\Code\"$*" | |
doskey kill=if $1. equ . (echo No process name specified) else taskkill -t -f -im $1 | |
REM Title | |
title cmd |