news 2026/7/27 19:41:17

Windows 10 / 11 环境变量 (用户变量与系统变量)

作者头像

张小明

前端开发工程师

1.2k 24
文章封面图
Windows 10 / 11 环境变量 (用户变量与系统变量)

Windows 10 / 11 环境变量 {用户变量与系统变量}

  • 1. 环境变量 (environment variables)
    • 1.1. 用户变量
    • 1.2. 系统变量
    • 1.3. Windows 10 - `echo %path%`
    • 1.4. Windows 11 - `echo %path%`
    • 1.5. 用户变量和系统变量的优先级
      • 1.5.1. 普通变量
      • 1.5.2. Path 变量
  • 2. Setting the path and variables in Windows 10
  • 3. List of environment variables in Windows 10
  • References

1. 环境变量 (environment variables)

环境变量 (environment variables) 是在操作系统中用来指定操作系统运行环境的一些参数。环境变量是在操作系统中一个具有特定名字的对象,它包含了一个或者多个应用程序所使用到的信息。Windows 和 DOS 操作系统中的path环境变量,当要求系统运行一个程序而没有告诉它程序所在的完整路径时,系统除了在当前目录下面寻找此程序外,还应到path中指定的路径去找。用户通过设置环境变量,来更好的运行进程。

environment variables:环境变量 user variables:用户变量 system variables:系统变量

环境变量可分为用户变量与系统变量两类,在注册表中都有对应的项。

Win + R打开运行窗口,输入regedit,然后Enter,进入注册表编辑器

1.1. 用户变量

  • 用户变量所在位置:HKEY_CURRENT_USER\Environment

1.2. 系统变量

  • 系统变量所在位置:HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Environment

C:\Program Files\Common Files\Oracle\Java\javapath;D:\VulkanSDK\1.3.216.0\Bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.1\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.1\libnvvp;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\iCLS\;C:\Program Files\Intel\Intel(R) Management Engine Components\iCLS\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\NVIDIA Corporation\Nsight Compute 2019.1\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Program Files\platform-tools;C:\Program Files (x86)\AMD APP SDK\3.0\bin\x86_64;C:\Program Files (x86)\AMD APP SDK\3.0\bin\x86;C:\Program Files\dotnet\;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;%JAVA_HOME%\bin;

在原有变量的基础上添加英文状态下的分号,然后添加路径名。不要删除原先的系统变量,只要用分号隔开,然后添加路径名,最后也要加上分号。

添加路径之后,要保存,再重启cmd,确保生效。

1.3. Windows 10 -echo %path%

Microsoft Windows [版本 10.0.17763.1158] (c) 2018 Microsoft Corporation。保留所有权利。 C:\Users\cheng>echo %path% C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\iCLS\;C:\Program Files\Intel\Intel(R) Management Engine Components\iCLS\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Users\cheng\AppData\Local\Microsoft\WindowsApps; C:\Users\cheng> C:\Users\cheng>echo %PATH% C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\iCLS\;C:\Program Files\Intel\Intel(R) Management Engine Components\iCLS\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Users\cheng\AppData\Local\Microsoft\WindowsApps; C:\Users\cheng>

1.4. Windows 11 -echo %path%

Microsoft Windows [版本 10.0.22621.1265] (c) Microsoft Corporation。保留所有权利。 C:\Users\cheng>echo %PATH% D:\VulkanSDK\1.3.216.0\Bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.1\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.1\libnvvp;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\iCLS\;C:\Program Files\Intel\Intel(R) Management Engine Components\iCLS\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\NVIDIA Corporation\Nsight Compute 2019.1\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Program Files\platform-tools;C:\Program Files (x86)\AMD APP SDK\3.0\bin\x86_64;C:\Program Files (x86)\AMD APP SDK\3.0\bin\x86;C:\Program Files\dotnet\;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Users\cheng\AppData\Local\Microsoft\WindowsApps;C:\Program Files\NVIDIA Corporation\NVSMI;;D:\Program Files\Microsoft VS Code\bin C:\Users\cheng> C:\Users\cheng>echo %path% D:\VulkanSDK\1.3.216.0\Bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.1\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.1\libnvvp;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\iCLS\;C:\Program Files\Intel\Intel(R) Management Engine Components\iCLS\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\NVIDIA Corporation\Nsight Compute 2019.1\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\Program Files\platform-tools;C:\Program Files (x86)\AMD APP SDK\3.0\bin\x86_64;C:\Program Files (x86)\AMD APP SDK\3.0\bin\x86;C:\Program Files\dotnet\;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Users\cheng\AppData\Local\Microsoft\WindowsApps;C:\Program Files\NVIDIA Corporation\NVSMI;;D:\Program Files\Microsoft VS Code\bin C:\Users\cheng>
  1. 设置

  1. 系统信息

  1. 高级系统设置 -> 高级

  1. 环境变量

环境变量可以理解为系统的视线 (作用域) 范围,配置进入环境变量的可执行程序,就是进入了系统的视线范围。打开命令窗口后输入程序名,系统就会把在其视线内的 (环境变量内) 的程序找出来。如果程序没有配置进入环境变量的话,那系统自然就找不到。

  • 系统变量针对所有用户起作用,为了安全起见,一般配置用户环境变量。
  • 用户变量只对当前用户起作用,不建议为了省事而配置系统环境变量。

1.5. 用户变量和系统变量的优先级

1.5.1. 普通变量

如果在用户变量和系统变量中创建同名变量,那么 Windows 会将用户变量覆盖系统变量。在 cmd 中输出的是用户变量中该变量的值。

对于普通变量,用户环境变量优先级高于系统环境变量。系统会先检查用户变量,之后再检查系统变量。

Microsoft Windows [版本 10.0.22621.1265] (c) Microsoft Corporation。保留所有权利。 C:\Users\cheng>echo %TEMP% C:\Users\cheng\AppData\Local\Temp C:\Users\cheng> C:\Users\cheng>echo %TMP% C:\Users\cheng\AppData\Local\Temp C:\Users\cheng>

1.5.2. Path 变量

​1. 环境变量不区分大小写,path / PATH / Path表示指定可执行文件的搜索路径。
2.echo %path%可以得到path变量的值 (系统变量中的值与用户变量中的值的组合),用户变量path内容会跟在系统变量path内容的后面。
3. 对于Path变量,系统环境变量优先级高于用户环境变量。
4. Windows 系统在执行用户命令时,若用户未给出文件的绝对路径,则首先在当前目录下寻找相应的可执行文件。然后在系统变量的path / PATH / Path路径中查找,如果找不到,再到用户变量的path / PATH / Path路径中查找。

Windows 对于Path变量的处理方式是,将用户变量的Path添加到系统变量Path后面。Windows 在查找指令的时候,是按Path中的路径从前往后找,直至在某个路径中找到了该指令。如果系统变量Path中有对应指令的话,Windows 就不会再去用户变量Path中查找。

2. Setting the path and variables in Windows 10

  1. From thedesktop, right-click theComputericon and selectProperties. If you don’t have aComputericon on yourdesktop, clickStart, right-click theComputeroption in theStartmenu, and selectProperties.
  2. Click theAdvanced System Settingslink in the left column.
  3. In theSystem Propertieswindow, click on theAdvancedtab, then click theEnvironment Variablesbutton near the bottom of that tab.
  4. In theEnvironment Variableswindow, highlight thePathvariable in theSystem variablessection and click theEditbutton. Add or modify the path lines with the paths you want the computer to access. Each different directory is separated with a semicolon, as shown below.

You can edit otherenvironment variablesby highlighting the variable in theSystem variablessection and clickingEdit. If you need to create a newenvironment variable, clickNewand enter thevariable nameandvariable value.

此电脑 -> 高级系统设置

环境变量

3. List of environment variables in Windows 10

Microsoft Windows [版本 10.0.17763.1158] (c) 2018 Microsoft Corporation。保留所有权利。 C:\Users\cheng>echo %COMMONPROGRAMFILES% C:\Program Files\Common Files C:\Users\cheng> C:\Users\cheng>echo %COMMONPROGRAMFILES(x86)% C:\Program Files (x86)\Common Files C:\Users\cheng> C:\Users\cheng>echo %COMSPEC% C:\Windows\system32\cmd.exe C:\Users\cheng> C:\Users\cheng>echo %HOMEDRIVE% C: C:\Users\cheng> C:\Users\cheng>echo %HOMEPATH% \Users\cheng C:\Users\cheng> C:\Users\cheng>echo %SYSTEMROOT% C:\Windows C:\Users\cheng>echo %WINDIR% C:\Windows C:\Users\cheng> C:\Users\cheng>echo %TMP% C:\Users\cheng\AppData\Local\Temp C:\Users\cheng> C:\Users\cheng>echo %TEMP% C:\Users\cheng\AppData\Local\Temp C:\Users\cheng>

%COMMONPROGRAMFILES%-C:\Program Files\Common Files
%COMMONPROGRAMFILES(x86)%-C:\Program Files (x86)\Common Files
%COMSPEC%-C:\Windows\System32\cmd.exe
%HOMEDRIVE%-C:
%HOMEPATH%-C:\Users\<username>
%SYSTEMROOT%-C:\Windows
%WINDIR%-C:\Windows
%TMP%-C:\Users\<username>\AppData\Local\Temp
%TEMP%-C:\Users\<username>\AppData\Local\Temp

Microsoft Windows [版本 10.0.17763.1158] (c) 2018 Microsoft Corporation。保留所有权利。 C:\Users\cheng>echo %APPDATA% C:\Users\cheng\AppData\Roaming C:\Users\cheng> C:\Users\cheng>echo %ALLUSERSPROFILE% C:\ProgramData C:\Users\cheng> C:\Users\cheng>echo %CD% C:\Users\cheng C:\Users\cheng> C:\Users\cheng>echo %CMDEXTVERSION% 2 C:\Users\cheng> C:\Users\cheng>echo %DATE% 2020/05/04 周一 C:\Users\cheng> C:\Users\cheng>echo %ERRORLEVEL% 0 C:\Users\cheng> C:\Users\cheng>echo %LOCALAPPDATA% C:\Users\cheng\AppData\Local C:\Users\cheng> C:\Users\cheng>echo %LOGONSERVER% \\YONGQIANG C:\Users\cheng> C:\Users\cheng>echo %PATH% C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\iCLS\;C:\Program Files\Intel\Intel(R) Management Engine Components\iCLS\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Users\cheng\AppData\Local\Microsoft\WindowsApps;C:\Program Files\NVIDIA Corporation\NVSMI; C:\Users\cheng>

%APPDATA%-C:\Users\<username>\AppData\Roaming
%ALLUSERSPROFILE%-C:\ProgramData
%CD%- Typing in this command will give you the current directory you are working in
%CMDEXTVERSION%- This variable expands to the version of the command-line extensions
%DATE%- This variable will give you the current date according to date format preferences
%ERRORLEVEL%- Determines the error level set by last executing command
%LOCALAPPDATA%-C:\Users\<username>\AppData\Local
%LOGONSERVER%-\\<domain_logon_server>
%PATH%-C:\Windows\system32;C:\Windows;

Microsoft Windows [版本 10.0.17763.1158] (c) 2018 Microsoft Corporation。保留所有权利。 C:\Users\cheng>echo %PATHEXT% .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC C:\Users\cheng> C:\Users\cheng>echo %PROGRAMDATA% C:\ProgramData C:\Users\cheng> C:\Users\cheng>echo %PROGRAMFILES% C:\Program Files C:\Users\cheng> C:\Users\cheng>echo %PROGRAMW6432% C:\Program Files C:\Users\cheng> C:\Users\cheng>echo %PROGRAMFILES(X86)% C:\Program Files (x86) C:\Users\cheng> C:\Users\cheng>echo %PROMPT% $P$G C:\Users\cheng> C:\Users\cheng>echo %SYSTEMDRIVE% C: C:\Users\cheng> C:\Users\cheng>echo %TIME% 12:34:57.39 C:\Users\cheng> C:\Users\cheng>echo %USERNAME% cheng C:\Users\cheng>

%PATHEXT%-.com;.exe;.bat;.cmd;.vbs;.vbe;.js;.jse;.wsf;.wsh;.msc
%PROGRAMDATA%-C:\ProgramData
%PROGRAMFILES%-C:\Program Files
%PROGRAMW6432%-C:\Program Files
%PROGRAMFILES(X86)%-C:\Program Files (x86)
%PROMPT%-$P$G
%SYSTEMDRIVE%-C:
%TIME%- Similarly, it gives you current time according to the time format preferences
%USERNAME%-<username>

Microsoft Windows [版本 10.0.17763.1158] (c) 2018 Microsoft Corporation。保留所有权利。 C:\Users\cheng>echo %USERPROFILE% C:\Users\cheng C:\Users\cheng> C:\Users\cheng>echo %USERDOMAIN% YONGQIANG C:\Users\cheng> C:\Users\cheng>echo %USERDOMAIN_ROAMINGPROFILE% YONGQIANG C:\Users\cheng> C:\Users\cheng>echo %PUBLIC% C:\Users\Public C:\Users\cheng> C:\Users\cheng>echo %PSMODULEPATH% C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules C:\Users\cheng> C:\Users\cheng>echo %ONEDRIVE% C:\Users\cheng\OneDrive C:\Users\cheng> C:\Users\cheng>echo %CMDCMDLINE% "C:\Windows\system32\cmd.exe" C:\Users\cheng> C:\Users\cheng>echo %COMPUTERNAME% YONGQIANG C:\Users\cheng> C:\Users\cheng>echo %PROCESSOR_REVISION% 9e0a C:\Users\cheng>

%USERPROFILE%-C:\Users\<username>
%USERDOMAIN%- Userdomain associated with current user
%USERDOMAIN_ROAMINGPROFILE%- Userdomain associated with roaming profile
%PUBLIC%-C:\Users\Public
%PSMODULEPATH%-%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules\
%ONEDRIVE%-C:\Users\<username>\OneDrive
%CMDCMDLINE%- Outputs command line used to launch the current Command Prompt session
%COMPUTERNAME%-Outputs the system name
%PROCESSOR_REVISION%- Outputs processor revision

Microsoft Windows [版本 10.0.17763.1158] (c) 2018 Microsoft Corporation。保留所有权利。 C:\Users\cheng>echo %PROCESSOR_IDENTIFIER% Intel64 Family 6 Model 158 Stepping 10, GenuineIntel C:\Users\cheng> C:\Users\cheng>echo %PROCESSOR_LEVEL% 6 C:\Users\cheng> C:\Users\cheng>echo %RANDOM% 25197 C:\Users\cheng> C:\Users\cheng>echo %NUMBER_OF_PROCESSORS% 12 C:\Users\cheng> C:\Users\cheng>echo %OS% Windows_NT C:\Users\cheng>

%PROCESSOR_IDENTIFIER%- Outputs processor identifier
%PROCESSOR_LEVEL%- Outputs processor level
%RANDOM%- This variable prints a random number from 0 through 32767
%NUMBER_OF_PROCESSORS%- Outputs the number of physical and virtual cores
%OS%- Windows_NT

References

[1] Yongqiang Cheng (程永强), https://yongqiang.blog.csdn.net/
[2] Windows 10 / 11 环境变量 (用户变量与系统变量), https://mp.weixin.qq.com/s/cozTACQwVyP0JMjOwwjCCw

版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!
网站建设 2026/7/27 19:41:11

C++ operator T()类型转换:原理、陷阱与ConfigValue实战

1. 项目概述&#xff1a;为什么我们需要自定义类型转换&#xff1f;在C的世界里&#xff0c;类型转换无处不在。从简单的int a 3.14;&#xff08;隐式转换&#xff09;&#xff0c;到显式的static_cast<double>(a)&#xff0c;编译器为我们处理了大量的类型适配工作。然…

作者头像 李华
网站建设 2026/7/27 19:37:04

LiveKit企业级WebRTC SFU架构设计与最佳实践

LiveKit企业级WebRTC SFU架构设计与最佳实践 【免费下载链接】livekit End-to-end realtime stack for connecting humans and AI 项目地址: https://gitcode.com/GitHub_Trending/li/livekit LiveKit是一个基于Go语言构建的开源WebRTC SFU&#xff08;Selective Forwar…

作者头像 李华
网站建设 2026/7/27 19:32:25

架构之争:so-vits-svc与RVC的技术哲学差异与实践选择

架构之争&#xff1a;so-vits-svc与RVC的技术哲学差异与实践选择 【免费下载链接】so-vits-svc SoftVC VITS Singing Voice Conversion 项目地址: https://gitcode.com/gh_mirrors/so/so-vits-svc 在语音转换技术快速演进的今天&#xff0c;so-vits-svc与RVC代表了两种截…

作者头像 李华
网站建设 2026/7/27 19:32:00

3分钟生成爆款短视频:AI神器MoneyPrinterTurbo终极指南

3分钟生成爆款短视频&#xff1a;AI神器MoneyPrinterTurbo终极指南 【免费下载链接】MoneyPrinterTurbo 利用 AI 大模型和自动化工作流&#xff0c;根据主题或关键词一键生成高清短视频。Generate HD short videos from a topic or keyword with an automated AI workflow. 项…

作者头像 李华
网站建设 2026/7/27 19:31:45

【中级软件设计师】系统总线 (附软考真题)

【中级软件设计师】系统总线 (附软考真题) 目录【中级软件设计师】系统总线 (附软考真题)一、历年真题二、考点&#xff1a;系统总线三、真题的答案与解析答案解析复习技巧&#xff1a; 若已掌握【系统总线】相关知识&#xff0c;可直接刷以下真题&#xff1b; 若对知识一知半解…

作者头像 李华
网站建设 2026/7/27 19:30:05

Playlist-AutoUpdater核心功能解析:多设备兼容与一键登录

Playlist-AutoUpdater核心功能解析&#xff1a;多设备兼容与一键登录 【免费下载链接】Playlist-AutoUpdater Auto-Update your M3U Playlists every day without needing an app, with the same link. 项目地址: https://gitcode.com/gh_mirrors/ta/Playlist-AutoUpdater …

作者头像 李华