zoukankan      html  css  js  c++  java
  • PATHEXT

    ----------------------
    Windows XP’s Run command provides a quick and easy way for experienced users to open files without the need to navigate through the Start menu or browse folders looking for a file. For example, if you type cmd.exe at the Run command and press Enter, a Command Prompt windows will open. Type msconfig.exe and the System Configuration Utility does the same.
     
    You may also be aware of the fact that its not always necessary to enter certain file extensions when using the Run command. For example, entering just the filename portion of the command - say, cmd rather than cmd.exe - if OK because the EXE file extension is one of those tried by XP when an extension isn’t supplied. XP will attempt to use a number of file extensions when you don’t provide one, as dictated by its declared PATHEXT variables.
     
    By default, the following PATHEXT system variables are declared by XP: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH. One notable one that isn’t present is the .MSC extension used by saved MMC consoles. If you want pre-built consoles like the Services MMC to open without needing to type its full filename - services.msc - at the Run command, then you’ll need to add .MSC to the XP’s PATHEXT variable.
     
    To add a new file extension to XP’s PATHEXT system variable, follow these steps:
     
    1. Open the System applet in Control Panel.
    2. Click the Advanced tab, and then click the Environment Variables button.
    3. Double-click the PATHEXT variable in the System variables section and then click Edit.
    4. After the .WSH entry, type a semi-colon and then type .MSC (no spaces required) and then click OK.
    5. Reboot your system and then attempt to open the Services MMC from the Run command by simply typing services and then click OK.
    ----------------------
  • 相关阅读:
    yii---模型的创建
    yii---控制器的创建
    yii的安装
    windows下安装composer
    wpgcms---列表页数据渲染
    Twig---基本使用
    wpgcms---详情页面数据怎么渲染
    Twig---的使用
    vue---指令怎么写
    vue---设置缩进为4个空格
  • 原文地址:https://www.cnblogs.com/taoxu0903/p/1559004.html
Copyright © 2011-2022 走看看