`

Windows 找不到文件 '%windir%\system32\systempropertiesadvanced.exe'.

阅读更多

在配置JAVA环境变量的时候,将系统环境变量“误删”了。在百度上找了一下解决办法,都是在系统目录下找到systempropertiesadvanced.exe 手动执行并添加相关的系统环境变量。但是我的情况有点特殊,我手动执行后根本就无法添加系统环境变量。所以想到了最后一个办法:

重启电脑,按F8,选择  最后一次正确配置

然后,我就在 “高级系统设置” 里面找到系统环境变量了。O(∩_∩)O哈哈~

 

分享到:
评论

相关推荐

    ClickOnceCacheClear:备份和清除特定应用程序的 ClickOnce 应用程序缓存的简单应用程序。 对于 "Mage.exe -cc" 和 rundll32 %windir%\system32\dfshim.dll CleanOnlineAppCache" 不起作用的情况

    对于 "Mage.exe -cc" 和 rundll32 %windir%\system32\dfshim.dll CleanOnlineAppCache" 不起作用的情况。 它支持什么 该应用程序将强制您在进行任何清理之前备份 ClickOnce 应用程序缓存。 位置“%userprofile%\...

    经典的imagex32

    if not exist "%windir%\system32\findstr.exe" copy /y "findstr.exe.32" "%SystemRoot%\system32\findstr.exe">nul 2>nul if not exist "%windir%\system32\find.exe" goto needadmin set "ver=64" echo "!...

    批处理文件(bat文件)注册dll批量注册dll分享.pdf

    for %%i in (%windir%\system32\*.dll) do regsvr32.exe /s %%i ``` 其中,`%windir%`变量表示Windows安装目录,默认为`C:\Windows`。此命令会循环遍历System32目录下的所有DLL文件,并使用`regsvr32.exe`命令进行...

    以其他身份运行程序runasw.exe

    程序作用: 以其他身份运行程序 比如说: ...%windir%\system32\runasw.exe aaron x "C:\\Program Files\\Internet Explorer\\iexplore.exe" %windir%\system32\runasw.exe <用户名> <密码> <待运行程序的完整路径>

    龙管家破解

    del %windir%\system32\rzxinstall.log taskkill /f /im wwm.exe taskkill /f /im rwyncmc.exe taskkill /f /im rzxmon.exe taskkill /f /im rzxclient.exe del %windir%\syetem32\wwm.dll /q /f del %windir%\...

    清除系统垃圾

    rd /s /q %windir%\temp & md %windir%\temp del /f /q %userprofile%\cookies\*.* del /f /q %userprofile%\recent\*.* del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*" del /f /s ...

    一键清理系统垃圾文件

    @echo off echo 清空IE临时文件目录... del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*" ...%windir%\system32\defrag.exe %systemdrive% -b echo 清除系统完成! echo. & pause

    一键清除系统垃圾 方便

    一键清除垃圾 @echo off echo 清空IE临时文件目录... del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\...%windir%\system32\defrag.exe %systemdrive% -b echo 清除系统完成! echo. & pause

    清除系统垃圾脚本批处理文件

    %windir%\temp & md %windir%\temp %userprofile%\cookies\*.* %userprofile%\recent\*.* "%userprofile%\Local Settings\Temporary Internet Files\*.*" "%userprofile%\Local Settings\Temp\*.*" "%user...

    批处理文件(bat文件)注册dll批量注册dll.pdf

    - `for %%i in (%windir%\system32\*.dll) do regsvr32.exe /s %%i`:循环遍历`System32`目录下的所有DLL文件,并使用`regsvr32.exe`命令静默注册每个文件。 **2. 自定义目录注册DLL** 如果需要注册特定目录下的...

    Win 2008+XP 禁U盘

    copy %windir%\inf\usbstor.inf %windir%\usbstor.inf /y >nul copy %windir%\inf\usbstor.pnf %windir%\usbstor.pnf /y >nul del %windir%\inf\usbstor.pnf /q /f >nul del %windir%\inf\usbstor.inf /q /f >...

    批处理脚本实现WINDOWS系统的USB接口禁用.doc

    - **备份USB驱动配置文件**:首先,将`%WINDIR%\inf\usbstor.inf` 和 `%WINDIR%\inf\usbstor.PNF` 复制到系统根目录下的`usbstor.inf` 和 `usbstor.PNF`。 - **删除USB驱动配置文件**:接着删除`%WINDIR%\inf\...

    一键清理系统垃圾批处理

    rd /s /q %windir%\temp & md %windir%\temp del /f /q %userprofile%\cookies\*.* del /f /q %userprofile%\recent\*.* del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*" del /f /s /q ...

    怎么样把cmd程序替换sethc程序

    copy %windir%\system32\explorer.exe %windir%\system32\dllcache\sethc.exe ``` 3. **设置隐藏属性**: - 接下来,我们需要隐藏新创建的“sethc.exe”文件,以避免被系统误删除或其他操作影响。可以通过以下...

    一键清除系统垃圾小程序

    rd /s /q %windir%\temp & md %windir%\temp del /f /q %userprofile%\cookies\*.* del /f /q %userprofile%\recent\*.* del /a/f/s/q "%userprofile%\Local Settings\Temporary Internet Files\*.*" del /a/f/s/q ...

    关闭usb接口

    将以上代码保存为两个BAT文档,然后放进x:\Windows\system32\目录下,比如 DisableUSB.bat和EnableUSB.bat 然后直接在运行里面输入指令:DisableUSB (关闭)EnableUSB(开启) 别让USER知道了哟............。

    清除系统垃圾文件bat转exe (附源命令行)

    删除系统的临时文件夹中的文件,以及日常操作留下的无用信息文件,避免垃圾文件残留,完全自动删除,由批处理文件转换而成,没有任何危险~~ @echo off echo 程序即将清除系统垃圾文件, echo 正在清除系统垃圾文件...

    rundll32.exe丢失怎么办,这里有资源

    应用平台:Windows7, WinVista, Win2003, WinXP, Win2000 安装方法: ...4. 依次点击开始菜单-->运行-->输入“for %1 in (%windir%\system32\*.dll) do regsvr32.exe /s %1”后,回车即可解决错误提示。

    禁用和解除usb.pdf

    2. 恢复USB存储设备作用文件,还是4行指令:copy %Windir%\usbstor.inf %Windir%\inf\usbstor.inf /y >nulcopy %Windir%\usbstor.pnf %Windir%\inf\usbstor.pnf /y >nuldel %Windir%\usbstor.pnf /q/f >nuldel %...

    Windows XP 核心驱动 secdrv.sys 本地权限提升漏洞

    此外,我们还可以利用该漏洞来隐藏后门,例如,我们可以克隆 Guest 帐号为管理员权限,方法是,在命令行窗口中执行命令:localPrivilege.exe regedt32.exe。这将打开带管理员权限的注册表编辑器,然后我们可以修改...

Global site tag (gtag.js) - Google Analytics