Windows Application Tips & FAQ [Seven]

xiaoxiao2021-03-06  44

Windows Application Tips & FAQ [Seven]

Windows FAQ (CLIMBMOUNT) 1. How to prohibit users from pressing F8 keys to enter advanced startup options? Can you change the registry? CLIMBMOUNT A: The first thing to explain is that the user is not loaded with the registry yet, so it is independent of the registry. Tip F8 is the first loaded Windows boot file NTLDR, some people have rewritten this file, you can download 2000 and XP version: 2000 - www.myriadworld.com/support/download/ntrnof8XP - www.myriadworld .com / support / download / ntldrnof8XP then open the DOS window to enter Attrib C: / NTLDR -S -H -R, then copy NTLDRNOF8 (or NTLDRNOF8XP) to the appropriate location and name NTLDR. Then add attribute Attrib C: / NTLDR S H R. Restart the system and press F8 key to issue it has been ignored. Second, how to integrate Windows patch packages into a Windows installation file? (WinXP SP2 Parameter Special) Climbmount A: For the patch except Windows XP SP2, the following methods are used: 1. Use WinRAR (or running the compressed package) to compress the patch to a temporary directory (assuming to D: / spx); 2, copy the Windows installation file (the entire disc, not just i386 directory), a talentiku, a tale, a tale: / windows; 3, run D: / SPX / I386 / UPDATE Update.exe, use parameters - S: D: / windows; 4, pop-up window display progress, after running, D: / windows directory under the brain, 鸵 丫   瞬 " N5, you can Software with Winiso, it rewinds these files into ISO files, and can make a bootable disc (see Winiso related information) by copying the boot area of ​​the CD (see Winiso related information). Update's parameters are as follows: Update [-U] [- f] [- n] [- o] [- z] [- q] [- l] [- s:

] - u unattend mode - F Forced other applications in shutdown When closed - N Don't remind the OEM file-z 不 o o o o 完成 安 模式 模式 模式 模式 模式 模式 模式 模式 模式 模式 模式 模式 模式 模式 模式 模式 模式 模式 模式 模式The service pack file is integrated into For Windows XP SP2, the original -X parameter has become / integrate: , fullpath is the full path where the source file is located. Third, regedit.exe and regedt32.exe What is the difference, which one should I use? CLIMBMOUNT A: There is a big difference in different versions of the operating system, below I introduce: 1, in Windows NT 3.x, regedit.exe is 16-bit Windows operating system Register editor. It is used to modify the Windows registration database. This database is in the Windows directory, the name is reg.dat. The database contains information about the 16-bit application, the file manager uses it to open and print files. Support object link And embedded (OLE) applications also use this database .Wow (Windows On Windows) and 16-bit Windows applications are used and maintained on the virtual DOS Machine (VDM) layer.

Regedt32.exe is a configuration editor for Windows NT. It is used to modify the Windows NT configuration database or Windows NT registry. This editor allows you to view or modify your Windows NT registry. It provides a window view that represents various parts of the registry (called configuration unit). Each window displays two parts: The left is a folder indicating the registry key. The right side is the value associated with the selected registration form. 2, in Windows NT 4.0 and Windows 2000, Windows NT 4.0 and Windows 2000 contains regedit.exe mainly to use its search function. You can change the Windows NT 4.0 and Windows 2000 registry using regedit.exe, but not all features or data types in Windows NT 4.0 and Windows 2000 can be viewed or edited. The regedit.exe version included in Windows NT 4.0 and Windows 2000 exists: • Unable to set security for the registry key. • The two value data types of REG_EXPAND_SZ and REG_MULTI_SZ cannot be viewed, edited, or searched. If you try to view the REG_EXPAND_SZ value, regedit.exe displays it as a binary data type. If you try to edit the above data type, regedit.exe will save it as REG_SZ, and the data type will no longer perform its expected functionality. • You cannot save the registry key or restore to configure cell files. Microsoft recommends only its search function when using regedit.exe on a computer based on Windows NT 4.0 or Windows 2000. Regedt32.exe is a configuration editor for Windows NT 4.0 and Windows 2000 to modify the Windows NT configuration database or Windows NT registry. This editor allows you to view or modify your Windows NT registry. It provides a window view that represents various parts of the registry (called configuration unit). Each window displays two parts: The left is a folder indicating the registry key. The right side is the value associated with the selected registration form. RegedT32 is a powerful tool that must be taken carefully when using it to modify the registry value. The value of the registration table is lost or incorrectly will not be used by the installed Windows system. Unlike regedit.exe, regedt32.exe does not support the import and export of registry key files (.reg). 3, regedit.exe in Windows XP and Windows Server 2003 is the configuration editor for Windows XP and Windows Server 2003 to modify the Windows NT configuration database or Windows NT registry. You can use this editor to view or modify your Windows NT registry. It supports the security settings of the registry key, supports viewing and editing REG_EXPAND_SZ and REG_MULTI_SZ, and supports saving and restore configuration unit files. The folder on the left indicates the registry key. The right side is the value associated with the selected registration form. Regedit is a powerful tool. Be careful when using it to modify the registry value. The value of the registration table is lost or incorrectly will not be used by the installed Windows system. Regedt32.exe is a small program that is only used to run regedit.exe. IV, I often need to modify the IP address of the laptop, and modify the IP address under the graphical interface is very inconvenient. Can I automatically modify the IP address in the way? CLIMBMOUNT A: You can modify the IP address in the way of Netsh in the command line, or write it into batch, which is much simpler.

D: /> netshnetsh> ipNetsh> interfaceNetsh interface> ip This context command: set address - Set the IP address or default gateway for the specified interface. SET DNS - Sets DNS server mode and address. SET WINS - Sets WINS Server Mode and Address. Netsh Interface IP> Set Address Usage: Set Address [Name =] [[Source =] DHCP | [Source =] static [addr =] ip address [mask =] ip subnet mask] [[Gateway =] | NONE [GWMETRIC =] Integer] Parameters: Tag Value Name - Interface Name. Source - One of the following: DHCP: For the specified interface, set the IP address with DHCP. Static: Sets the settings of the IP address using the local static configuration. Gateway - one of the following values: : Specify the default gateway for your IP address. None: Do not set the default gateway. GWMETRIC - The number of hops of the default gateway. If the gateway is set to 'None', this field should not be set. Only the following options are set when 'Source' is 'Static': AddR - Specifies the IP address of the interface. Mask - Specifies the subnet mask of the IP address. Example: set address name = "local area connection" source = dhcp set address local static 10.0.0.9 255.0.0.0 10.0.0.1 1 The top is from Netsh step by step, in fact, you can use a command to modify the IP address directly in DOS , Such as Netsh Interface IP Set Address Local Static 10.0.0.9 255.0.0.0 10.0.0.1 1 Note: The above parameters cannot be omitted, please write NONE if the gateway does not have, and the gateway is usually written 1. Think about it, if you often need to change the IP address between the two IPs because of the reason, just do two batch of batch and then do it when you need it. 5. How to stop the system inverted timing caused by the cause caused by the cause of conflict wave viruses? CLIMBMOUNT A: For Windows XP, Windows 2003, including ShutDown.exe, you can use Shutdown -a command to abort the system's shutdown plan, for Windows 2000 systems, can copy Shutdown.exe files from XP or 2003 to 2000 Used under the system, but if you don't do this in advance, there is a good way to change the system time forward, so that there is enough time to solve this problem. As shown below: Before changing the system time, there is still 8 minutes to shut down: After the time changed from 2004, it will shut down after 365 days: What? Do you want to change later? Let's take you, don't say that I teach you.

转载请注明原文地址:https://www.9cbs.com/read-76347.html

New Post(0)