gpt4 book ai didi

Windows:批处理文件:仅以管理员身份运行

转载 作者:可可西里 更新时间:2023-11-01 11:19:55 26 4
gpt4 key购买 nike

我有一个批处理文件可以将应用程序作为 Windows 服务启动。它被称为 start.bat

@ECHO off
START c:\Ruby193\bin\ruby c:\Ruby193\bin\thin start -R c:\coolapp\config.ru -p 4321 -a localhost -e production

我的挑战是这个程序只有在具有管理员权限的“以管理员身份运行”时才能正常运行。所以,我想添加一行来检查这个脚本是否真的以管理权限运行,并且只有在以管理员身份运行时才执行。

我怎样才能在脚本中做到这一点?

最佳答案

你可能需要这样的东西:

set isadmin=0
whoami /all | findstr /c:" S-1-16-12288 ">nul && set isadmin=1

这将导致 %isadmin% 变量为 10,具体取决于 shell 是否以管理员身份运行。

这假设存在 whoami 实用程序,它不一定在旧版本的 Windows 上可用 - 我相信它是从 Windows Vista 开始包含的。

关于Windows:批处理文件:仅以管理员身份运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16903308/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com