1 Star 0 Fork 5

PandoraHearts/simplepy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
设置环境变量.bat 858 Bytes
一键复制 编辑 原始数据 按行查看 历史
cnzb 提交于 2021-04-26 13:07 . commit
@echo off
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
if '%errorlevel%' NEQ '0' (
goto UACPrompt
) else ( goto gotAdmin )
:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
echo UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs"
exit /B
:gotAdmin
if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" )
pushd "%CD%"
CD /D "%~dp0"
:main
echo 1、设置用户变量
echo 2、设置系统变量
set /p i=输入分类对应的数字:
if %i%==1 goto main1
if %i%==2 goto main2
:main1
set /p n=输入用户变量名:
set /p p=输入用户变量值:
setx "%n%" "%p%"
goto continue
:main2
set /p n=输入系统变量名:
set /p p=输入系统变量值:
setx /m "%n%" "%p%"
:continue
set /p i=是否继续(y:继续,其它:退出):
if %i%==y (
cls
goto main) else exit
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/PandoraHeartss/simplepy.git
git@gitee.com:PandoraHeartss/simplepy.git
PandoraHeartss
simplepy
simplepy
master

搜索帮助