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.
    ----------------------
  • 相关阅读:
    实战DeviceIoControl 之中的一个:通过API訪问设备驱动程序
    hibernate官方新手教程 (转载)
    C++ 清空消息队列
    java中接口的定义与实现
    Scrum 学习笔记
    Ubuntu中全然卸载Nginx
    ScrollView 在嵌套 ViewPager 时出现的问题
    Java的递归算法
    Android GPS获取当前经纬度坐标
    【数据结构】——排序算法——1.1、直接插入排序
  • 原文地址:https://www.cnblogs.com/taoxu0903/p/1559004.html
Copyright © 2011-2022 走看看