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.
    ----------------------
  • 相关阅读:
    一个空类会生成哪些默认函数
    What is VMR(Video Mixing Render)From MSDN
    DirectX backface culling(背面剔除)
    D3DPOOL(资源池)
    两道概率题供大家周末把玩
    空间两点间的距离
    n != n, n == n
    C++默认参数
    D3DPT_TRIANGLELIST与D3DPT_TRIANGLESTRIP
    D3D中的设备丢失
  • 原文地址:https://www.cnblogs.com/taoxu0903/p/1559004.html
Copyright © 2011-2022 走看看