-
Notifications
You must be signed in to change notification settings - Fork 4
Command alias Windows
OrigamiK edited this page Jul 6, 2021
·
4 revisions
Welcome to the kickassanime-downloader wiki!
Since, I wouldn't want to permanently change the registry for the aliases without telling the user, I encourage the user to set up their aliases themselves using the following steps:
- Create a new batch file, call it kaa.bat. Copy/paste the text below. TIP: I recommend creating a C:\Bin folder for all your command line tools.
- press
WIN
+R
and then typeSystemPropertiesAdvanced
and click on environment variables - Inside user variables click on
Path
and then click onEdit...
- Add a new column with the parent folder of the
kaa.bat
you just created.C:\Bin
for me. Clickok
andapply
- Done.
@echo off
SET var=%cd%
cd "C:\path\to\kickassanime-downloader"
python cli.py %*
cd %var%
Try to run kaa
in cmd to test if it worked.