Windows batch file starting directory when 'run as admin'

前端 未结 8 1689
情书的邮戳
情书的邮戳 2020-12-12 20:02

I have a batch file which is in a directory and must be run from there as well because it updates files within this directory.
This works perfectly fine, except when t

8条回答
  •  庸人自扰
    2020-12-12 20:41

    A working solution here:

    http://www.vistax64.com/vista-general/79849-run-administrator-changes-default-directory.html

    FOR /F %%I IN ("%0") DO SET BATDIR=%%~dpI

    ECHO The batch file is located in directory %BATDIR%

提交回复
热议问题