Jianwen 的个人资料Jianwen的共享空间照片日志列表更多 ![]() | 帮助 |
经典悖论漫谈
泽熙 古今中外有不少著名的悖论,它们震撼了逻辑和数学的基础,激发了人们求知和精密的思考,吸引了古往今来许多思想家和爱好者的注意力。解决悖论难题需要创造性的思考,悖论的解决又往往可以给人带来全新的观念。 1-1谎言者悖论 芝诺甚至认为:“不可能有从一地到另一地的运动,因为如果有这样的运动,就会有‘完善的无限’,而这是不可能的。”如果阿基里斯事实上在T时追上了乌龟,那么,“这是一种不合逻辑的现象,因而决不是真理,而仅仅是一种欺骗”。这就是说感官是不可靠的,没有逻辑可靠。 尼采说道:在这两个悖论里,“无限”被利用来作为化解现实的硝酸。如果无限是决不可能成为完善的,静止决不可能变为运动,那么,真相是箭完全没有飞动,它完全没有移位,没有脱离静止状态,时间并没有流逝。 关闭WinXP2数据保护DEP的方法1、右键我的电脑→属性→高级→启动和故障恢复→设置→编辑,调出记事本 注册表常用技巧注册表常用技巧 禁止气球状的弹出信息 显示隐藏文件 winXP copy-move-send 增加右键菜单 HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\Copy To: HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\Send To: 修改Windows XP安装源文件路径 改变收藏夹的目录指向 重新安装IE 清除任务栏中的多余工具栏分隔符/保存工具栏 1. 展开HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\TrayNotify 删除右边空格的IconStreams和PastIconsStream,然后打开任务管理器,结束Explorer.exe进程,然后再重建explorer进程。 2. 展开HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Explorer\StuckRets2,删除该子键下所有键值。 3.(解除锁定桌面项)展开HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version\Policies\Explorer选中No Save Setting,将键值从“1” 改为“0” ;将NoToolbarCustomize的值设为1。 解锁任务管理器 删除ATI右键regsvr32 atiacmxx.dll /u [转]逃课(搞笑)成龙__霸王洗发水" 优化系统速度 改变工作线程数System Worker ThreadsDuring system initialization, Windows creates several threads in the System process, called system worker threads, that exist solely to perform work on behalf of other threads. In many cases, threads executing at DPC/dispatch level need to execute functions that can be performed only at a lower IRQL. For example, a DPC routine, which executes in an arbitrary thread context (because DPC execution can usurp any thread in the system) at DPC/dispatch level IRQL, might need to access paged pool or wait for a dispatcher object used to synchronize execution with an application thread. Because a DPC routine can't lower the IRQL, it must pass such processing to a thread that executes at an IRQL below DPC/dispatch level. Some device drivers and executive components create their own threads dedicated to processing work at passive level; however, most use system worker threads instead, which avoids the unnecessary scheduling and memory overhead associated with having additional threads in the system. A device driver or an executive component requests a system worker thread's services by calling the executive functions ExQueueWorkItem or IoQueueWorkItem. These functions place a work item on a queue dispatcher object where the threads look for work. (Queue dispatcher objects are described in more detail in the section "I/O Completion Ports" in Chapter 9.) Work items include a pointer to a routine and a parameter that the thread passes to the routine when it processes the work item. The routine is implemented by the device driver or executive component that requires passive-level execution. For example, a DPC routine that must wait for a dispatcher object can initialize a work item that points to the routine in the driver that waits for the dispatcher object, and perhaps points to a pointer to the object. At some stage, a system worker thread will remove the work item from its queue and execute the driver's routine. When the driver's routine finishes, the system worker thread checks to see whether there are more work items to process. If there aren't any more, the system worker thread blocks until a work item is placed on the queue. The DPC routine might or might not have finished executing when the system worker thread processes its work item. (On a uniprocessor system, a DPC routine always finishes executing before its work item is processed because thread scheduling doesn't take place when the IRQL is at DPC/dispatch level.) There are three types of system worker threads:
The number of delayed and critical worker threads created by the executive's ExpWorkerInitialization function, which is called early in the boot process, depends on the amount of memory present on the system and whether the system is a server. Table 3-11 shows the initial number of threads created on different system configurations. You can specify that ExpInitializeWorker create up to 16 additional delayed and 16 additional critical worker threads with the AdditionalDelayedWorkerThreads and AdditionalCriticalWorkerThreads values under the registry key HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Executive. Table 3-11. Initial Number of System Worker ThreadsWindows 2000 Windows 2000 Server Windows XP and Windows Server 2003 Delayed 3 3 7 Critical 5 10 5 Hypercritical 1 1 1 The executive tries to match the number of critical worker threads with changing workloads as the system executes. Once every second, the executive function ExpWorkerThreadBalanceManager determines whether it should create a new critical worker thread. The critical worker threads that are created by ExpWorkerThreadBalanceManager are called dynamic worker threads, and all the following conditions must be satisfied before such a thread is created:
Dynamic worker threads exit after 10 minutes of inactivity. Thus, when the workload dictates, the executive can create up to 16 dynamic worker threads. EXPERIMENT: Listing System Worker ThreadsYou can use the !exqueue kernel debugger command to see a listing of system worker threads classified by their type: kd> !exqueue Dumping ExWorkerQueue: 8046A5C0 **** Critical WorkQueue( current =0 maximum= 1) THREAD 818a2d40 Cid 8.c Teb: 00000000 Win32Thread: 00000000 WAIT THREAD 818a2ac0 Cid 8.10 Teb: 00000000 Win32Thread: 00000000 WAIT THREAD 818a2840 Cid 8.14 Teb: 00000000 Win32Thread: 00000000 WAIT THREAD 818a25c0 Cid 8.18 Teb: 00000000 Win32Thread: 00000000 WAIT THREAD 818a2340 Cid 8.1c Teb: 00000000 Win32Thread: 00000000 WAIT **** Delayed WorkQueue( current =0 maximum =1) THREAD 818a20c0 Cid 8.20 Teb: 00000000 Win32Thread: 00000000 WAIT THREAD 818a1020 Cid 8.24 Teb: 00000000 Win32Thread: 00000000 WAIT THREAD 818a1da0 Cid 8.28 Teb: 00000000 Win32Thread: 00000000 WAIT **** HyperCritical WorkQueue( current= 0maximum =1 ) THREAD 818a1b20 Cid 8.2c Teb: 00000000 Win32Thread: 00000000 WAIT 内存优化 修改注册表
Performance Registry Secrets Author: Published: Copyright: Publisher: Abstract GENERAL SYSTEM PERFORMANCE The tuning parameters in this section tune the general performance of NT, rather than a specific aspect of NT such as file systems or memory. By our definition, these keys tune NT itself, not specific device drivers or user-level applications. VI-1 Managing the number of threads can help you optimize performance. When NT boots, it creates a pool of worker threads that NT’s kernel, Executive Subsystems, and device drivers use. When one of these components places a work item, such as the Cache Manager’s lazy cache flusher or the Memory Manager’s idle memory zero-filler, in a queue, a thread is assigned to process it. If too many threads are in the pool, they needlessly consume system resources. However, if not enough threads are in the pool, work items are not serviced in a timely manner. Adjust the following two registry keys to change the number of threads. Hive: Key: Value Name: Data Type: Value: VI-2 Key: Value Name: Data Type: Value: The number you specify in the value increases the number of threads created for the specified work queue. NT has two thread queues. Threads in the Critical Work Queue execute in the low real-time priority range, so they have precedence over most system activity. Threads in the Delayed Work Queue have a slightly lower priority that results in higher latency — the threads that service it compete with other processing for CPU time. The number of threads created for each queue is based on two criteria: whether the system is a server or workstation and how much physical memory the system has. You can’t tell directly whether more threads in a particular situation give you better performance, but you can experiment with benchmark workloads to see if they provide a benefit. Hive: Key: Value Name: Data Type: Value: You can also set the boost value with a slider in the Performance tab of the System Control Panel applet. Valid values are shown below. 0 1 2 VI-4 Here’s a tricky registry entry. Hive: Key: Value Name: Data Type: Value: Although you can’t use this value to enhance performance, its name implies that you can. This value actually encodes expiration data about NT Beta and Release Candidates. Hive: Key: Value Name: Data Type: Value: This value controls the size of the system’s file system cache. A value of 0 indicates a small cache, which is the default setting for Workstation, while 1 indicates a large cache, which is the default setting for Server. Servers usually perform some file sharing and therefore require a larger cache. Hive: Key: Value Name: Data Type: Value: This value is the number of bytes of physical memory you want to allocate for nonpaged memory. To monitor your memory, use Performance Monitor to watch the percentage of committed memory that’s used. If more than 80 percent of memory is used consistently, you should increase this value. Likewise, if the system’s nonpaged memory usage is low, reducing the amount allocated for it increases system performance. VI-7 Key: Value Name: Data Type: Value: This value is the number of bytes in the paged memory pool. It overrides the system’s default calculation, which is roughly equal to the physical memory on Workstation and a minimum of 50 MB on Server. Paged pool is different from virtual memory size — the paged pool is space reserved in the system’s virtual memory map for NT and device drivers to allocate pageable data. Hive: Key: Value Name: Data Type: Value: In this value, you set the order in which the WNet API uses your network providers. When the WNet API is called, it processes requests by sending them to each network provider in the order listed. If it gets back a response that the provider doesn’t process that type of request, the API calls the next provider listed. Thus, if most of your system’s activity relates to accessing NetWare shares, you should move the NetWare provider name to the start of the list. This small modification can improve performance significantly. Hive: Key: Value Name: Data Type: Value: To disable write-behind, change this value to 1; the default is 0. You may need to use this highly synchronous mode in specialized environments or when tracking down networking problems with a network monitoring tool; otherwise, you should use the write-behind value because write-through degrades performance. Hive: Key: Value Name: Data Type: Value: The default value of 1 enables asynchronous write-behind, which means that Redirector immediately sends write requests to the server but doesn’t wait for a response before processing other requests. Changing the value to 0 disables asynchronous write-behind; you should disable it only when the network requires special coherency guarantees or when you’re debugging. V-11 Key: Value Name: Data Type: Value: This value specifies the number of threads that the Workstation service creates during initialization to handle requests; the default value is 15. If Workstation has more requests than it has threads to service those requests, it holds up some requests until a thread finishes servicing a request. Therefore, if multiple users or applications are simultaneously accessing remote shares, increasing this value can improve network throughput. VI-12 Key: Value Name: Data Type: Value: This value sets the number of seconds after a request is queued before Lanmanager indicates that the request has failed (if it hasn’t been processed). The default value is 45. Applications that access network shares may report not having enough memory to process a request — too many outstanding operations are on the volume and some requests are timing out. Raising this value lets more operations be serviced asynchronously and may cause the messages to go away. VI-13 Key: Value Name: Data Type: Value: This value specifies the time after which Lanmanager Workstation purges its locally cached data after closing a file. Many applications open files, perform an operation, close them, and repeat this sequence to perform more operations. If you have a system with a dedicated application, you can adjust this value to improve performance. Increase the time if applications close and reopen the same files at intervals longer than 10 seconds, and reduce the time if applications access few files and do not open and close them regularly. VI-14 Key: Value Name: Data Type: Value: This value sets the number of files that Lanmanger leaves open in the file system cache after an application closes it. By default, Lanmanager Server allows only a certain number of open files from any one Lanmanager Redirector connection. Having a file open on the connection can improve performance if the application opens it again. However, keeping files open can also overload the server’s limit, and in those cases you should reduce this value. Hive: Key: Value Name: Data Type: Value: This value sets the minimum network throughput, in kilobytes per second, before Lanmanager Workstation enables the read-ahead function. The default value is -1. Hive: Key: Value Name: Data Type: Value: VI-17 Key: Value Name: Data Type: Value: These values set the number of megabytes allocated by Lanmanager Server for nonpaged and paged memory. The default, which is determined internally, is 0. Hive: Key: Value Name: Data Type: Value: Valid values are 0, 1, or 2, which determine how many levels above normal priority Lanmanager’s worker threads run; and 15, which makes Lanmanager Server’s threads run at real-time priority. Increasing the priority may reduce the responsiveness of other applications and services on the machine, especially if you set it to real-time priority. Hive: Key: Value Name: Data Type: Value: Valid values range from 2 to 5; the default is determined internally. You can reduce the value to minimize idle memory overhead when the memory resources on the system are in high demand. Hive: Key: Value Name: Data Type: Value: The value is the number of users who can long on to the server simultaneously. Hive: Key: Value Name: Data Type: Value: This value specifies the number of minutes a connection can be idle before it is automatically disconnected and the resources associated with it are freed. The default value is 15. Reducing this value can keep resource usage to a minimum, but it’s possible to incur additional overhead if clients reconnect after their connections are dropped. Hive: Key: Value Name: Data Type: Value: Setting this value to 1 (the default) enables support for raw SMBs, and performance improves. Setting this value to 0 disables support. Hive: Key: Value Name: Data Type: Value: The default value is 1, which enables op-locking. Change the value to 0 to disable this feature. Page: 1, 2 ADS BY GOOGLE EXCHANGE 2007 Mastery Series – May 29, 2008 Clean Windows XP Solve the 12 Toughest Active Directory Management Tasks Today Windows IT Pro Home SQL
地震 网站变成灰黑色 css 代码使用方法: 最简单的把页面变成灰色的代码是在head 之间加 <style type="text/css"> 第一情况:把下面代码复制到你网页的<head></head>中就可以了实现 <style type="text/css"> 第二情况:如果你的站已有CSS,那加入 html { filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); } 就可以了 第三情况:如果你的CSS中已有BODY {}那么你就加入 filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); BODY { 第四情况:有一些站长的网站可能使用这个css 不能生效,是因为网站没有使用最新的网页标准协议 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 请将网页最头部的<html>替换为以上代码。 第五情况:有一些网站FLASH动画的颜色不能被CSS滤镜控制,可以在FLASH代码的<object …>和</object>之间插入: <param value="false" name="menu"/> BrowserflagsOk, In the WinXP registry's HKCR section, a lot of items have the Browserflags and Editflags values. I have no idea what they do, or what the various data in the values does, either. CODE [HKEY_CLASSES_ROOT\Folder\shell\explore] Many are different (see the 3 examples posted below). I've seen data of: 0, 1, 2, 3, 8, and 65536 among others. And sometimes the value is binary instead of a dword. CODE [HKEY_CLASSES_ROOT\Folder\shell\explore] Dword, Binary, lots of different data values. It's pretty darn confusing. Trying to track changes with a registry monitor will probably drive you insane, because checking or unchecking the same option in two different entries in Tools-Folder Options-File Types doesn't neccessarily change each entry's data to the same number(!). [deXter] May 6 2007, 12:20 AM BrowserFlags 0x8 or 0x9 indicates that a particular app should open in its own window when its associated file is clicked (as opposed to opening within IE. For eg: MS Office docs). 0x10 indicates that when a link is clicked, the existing window should be reused instead of opening a new window. (0x22 in windows explorer - when you open a folder, it opens in an existing window instead of opening a new one). 0x24 or 0x00 indicates that the viewer should be embedded in the browser. kelaniz May 6 2007, 01:18 AM deXter: That page was exactly what I was looking for, and the info in your post was a bonus. I swear MSDN hates me. I *scoured* that site, and that same section on more than one occasion looking for this info, and never saw it. [deXter] May 6 2007, 01:23 AM Glad to be of help 治标又治本!Win XP异常故障解决方法
http://school.21tx.com 2005年10月14日 Yesky - Windows XP除了界面上的美观和安全性能大大提高外,在很多小地方考虑得很周到,体贴方便了用户。比如它的储存当前状态到硬盘,然后开机不必再经过硬件的初始化,直接从储存的状态读取数据,一般能在15秒左右开机,启动的速度大大提高。 但是,由于硬件和软件的兼容性,使用XP的这种功能的时候,可能会遇到一些异常的情况,下面就分析一下并给出参考的解决办法: 三、快速开机后鼠标无法移动 假作真来真亦假--虚拟磁盘分区之满汉全席
http://school.21tx.com 2004年06月18日 中国电脑教育报 在Windows XP中,我们可以将任意一个分区挂载到NTFS文件夹(注意必须是NTFS文件夹)中,这样就可以按目录树对磁盘分区进行访问,从此不需要再记忆数据到底存放在哪个分区了。它的设置方法并不复杂: 单击“开始→运行”,打开“运行”对话框,输入“compmgmt.msc”后回车,打开“计算机管理”窗口。选择 -
利用分区挂载,我们还可以完成一些很“另类”的功能,例如轻松地禁止普通权限的用户使用光驱: 选择左侧控制台树的“磁盘管理”项目,在右侧卷列表中用鼠标右键单击光驱图标,选择“更改驱动器名和路径”命令;删除原来的光驱盘符(不要理会警告信息),再单击“添加”按钮;选择“装入以下空白NTFS文件夹”选项,并指定该空白NTFS文件夹的路径,假设是在“D:\\\\光驱\\\\E”,这样就把该光驱挂载到指定的NTFS文件夹;今后用户就只能通过“C:\\\\光驱\\\\E”来访问光驱了,对“D:\\\\光驱”这个目录设置NTFS权限,方法是:用鼠标右键单击该目录,选择“属性”,在打开的“属性”对话框中切换到“安全”选项卡,然后删除用户列表里的普通用户(必须事先在“文件夹选项”对话框里禁用“简单文件共享”功能),普通用户将无法访问光驱(会提示“访问拒绝”)。 需要注意的是,我们无法直接对“D:\\\\光驱\\\\E”设置NTFS权限。挂载目录必须位于某个NTFS分区,换句话说,这是一个NTFS目录。 移花接玉:物理内存变磁盘分区 十分钟打造适用所有电脑的Windows封装包
http://school.21tx.com 2005年10月12日 Yesky - 对于那些经常需要给朋友攒机或者重新安装操作系统的电脑高手来说,每次安装Windows系统所经历的漫长等待无异于一次折磨。虽然身边有Ghost之类分区镜像软件,但是每台计算机配置不同造成Windows对于硬件的检测不一样,再加上Windows XP/2003独有的激活策略,这似乎使得Ghost没有了用武之地。其实这些并非没有解决之道,只要将自动应答文件和Ghost有机结合起来,我们也可以打造出一个适用于所有计算机的Windows封装包,这样仅需十分钟即可完成以前几个小时的繁琐安装了。 大家都知道在第一次安装Windows的时候,系统会对当前计算机硬件进行检测,并且安装相应的驱动程序,因此对一个已经正常运行的Windows封包之前,需要卸载各种驱动程序,而这对最终得到的封装包是否能够运用在其它计算机中也是非常必要的。 1. 卸载硬件驱动程序 卸载硬件驱动程序并不是在设备管理器中随意卸载,必须要按照一定的顺序进行,通常我们可以参照网卡、USB设备、声卡、显卡、显示器等步骤进行。在卸载驱动程序的时候,首先从设备管理器中选取某个设备,接着右击鼠标并且从弹出菜单中选择 2. 更改ACPI属性 ACPI是高级电源管理的意思,虽然如今大部分计算机都支持ACPI功能,但是不同主板的ACPI类型不同,倘若你和别人所使用的计算机的ACPI不同,那么就会出现电脑无法软关机的故障,为此一定要更改ACPI属性。更改ACPI属性的时候,先从资源管理器中选择“计算机→ACPI Uniprocessor PC”,接着从鼠标右键菜单中选择“更新驱动程序”命令,在出现的驱动程序更新向导中依次选择“从列表或指定位置安装→不要搜索,我要自己选择要安装的程序”,这时可以看见图1所示的窗口(如图1),将ACPI类型更改为“Standard PC”一项即可。 3. 更改驱动器属性 在创建Windows封装包过程中,更改磁盘驱动器的属性非常重要,如果忽略这个步骤,那么其它计算机使用这个封装包安装Windows之后就会出现无法正常引导计算机,并且不断重新启动的故障。因此我们需要将IDE控制器更改为标准双通道的PCI IDE控制器,这样才能使其适用于如今各种不同类型的主板。首先从资源管理器的“IDE ATA/ATAPI控制器”中找到当前正在使用的IDE控制器,右击鼠标之后从弹出菜单中选择“更改驱动程序”命令,接着在出现的驱动程序更新向导中依次选择“从列表或指定位置安装→不要搜索,我要自己选择要安装的程序”,最后从窗口中选取“标准双通道PCI IDE控制器”一项即可。 完成上述三方面的驱动程序卸载之后,基本上就可以利用Windows的自动应答文件来创建封装包了。不过提醒大家注意的是,无论卸载硬件驱动程序还是更改相关的属性,完毕之后系统都会提示重新启动计算机,这时候切记不要选择重新启动计算机,而是在下面的重新封装过程中由程序自动关闭计算机,否则重新启动计算机之后系统会提示发现新硬件,又需要安装新的驱动程序了。
图1 更改ACPI属性 微软开恩 官方补丁一分不花让Pro变Server
http://school.21tx.com 2004年06月11日 PCPOP电脑时尚 我们知道Windows 2000专业版或Windows XP专业版操作系统中IIS最多允许10个客户端的连接,在Windows 2000服务器版或Windows 2003服务器版操作系统中则不存在这种连接限制问题。 Microsoft提供了一个管理IIS的小工具MetaEdit,MetaEdit工作在Windows NT4.0 Windows 2000上,我发现它在Windows XP上也能正常工作,另外,MetaEdit只能管理II4.0、IIS5.0或更高版本的IIS。 - 下面教你如何利用这个工具突破Windows XP专业版IIS客户端连接限制: 首先,你需要到下面的地址下载MetaEdit,最新版本是2.2,地址【这里】。然后执行MtaEdt22.exe按向导提示完成安装。最后,在MetaEdit中设置客户端连接限制的参数。安装MetaEdit完毕后,在开始菜单的程序组Administrative Tools下点击MetaEdit 2.2运行,出现窗口:
在窗口的左边将树展开至LM W3SVC,直接在W3SVC文件夹上单击,选择
在最后Data的文本框中默认的是10,这就是Windows XP专业版IIS默认设置的最大客户端连接数了,现在你可以改变这个默认值了,我把它改为10000,注意:在Win2000 上的IIS客户端连接数最大为2000000000。 关于这个工具我还未对Windows2000和Windows NT4下的IIS做过测试,有兴趣的朋友可以按上面的方法试一下。 我的隐私我做主--用ASL轻松锁定电脑一法
http://school.21tx.com 2004年06月12日 中国电脑教育报 任何人都不喜欢别人侵扰自己的私人空间,笔者向大家推荐Active System Locker这款软件,它能轻松解决此类问题。 Active System Locker - 使用前需要设置一下密码,依次打开菜单“File→Option”,出现选项对话框,选择 如果在“Advanced Tuning”一栏中的“Lock error delay”及 “Number of attempts”后分别输入表示密码错误后重试的时间和次数,这样就可避免别人去乱猜密码了。为了防止别人随意更改自己的设置,可勾选“Ask password on entering 'Option' screen and program exit”前的复选框,如果想更改设置,一定要输入正确的密码才行。
二、让软件智能加锁、解锁 1. 在主界面上依次点击菜单“File→Option”,打开设置界面。 2. 点击“Startup and Schedule”选项卡;在“Lock at time”后的对话框中分别填入几点几分的数值设定加锁的时间,用同样的方法操作“Unlock at time”,别忘了把它们勾选,最后点击“OK”按钮结束。 三、其它安全设置 通过以上操作便可轻松实现锁定自己的电脑,它还可以实现在锁定前设置警告信息、设定热键等功能,由于比较简单,对此兴趣的朋友不妨试试。 教程:加速IE浏览器载入和浏览的速度在默认情况下,IE仅允许从一个网络服务器上同时下载两个会话。这会影响到你网页浏览的速度,因为你无法同时下载到所有组成网页的对象,这样页面的显示就会慢得多。如果你可以强制IE同时下载更多的对象的话,网页的显示就会快得多。 迅雷去广告1)首先关闭迅雷程序,然后打开迅雷程序的安装目录(默认安装在:C:\Program Files\Thunder Network\Thunder)你可以根据自己的安装目录查找 2)删除迅雷安装目录下名为“AD”的文件夹 3)如果能找到名为“iTargetAD.dll”的文件也将其删除 4)最后重新启动迅雷便看不到讨厌的广告图片了 5)C;\Program Files\Thunder Network\Thunder,在其下找到gui.cfg,用记事本打开,把“ADServer=”后面的地址去掉即可,不会再显示其它的广告,代之的迅雷本身的一个单一的标志条. 如果还有的话,删除gui.cfg里所有的网址,一般能行的. 所以不必再去下载去广告的补丁。 六步走!Windows系统硬件冲突故障巧解决 在计算机中,系统资源包括中断请求(IRQ)线路、直接存储器存储(DMA)通道、输入/输出(I/O)端口和内存地址。当将相同的系统资源分配给两个或多个设备时,就会发生硬件冲突,发生冲突的硬件设备将无法正常工作。以下的方法能够帮助大家解决硬件冲突。
4.重新安装设备的驱动程序。 二、查看资源设置
三、是否存在“系统保留”类型的硬件冲突? 四、配置一种或多种设备,使之使用不同资源 五、释放保留的资源设置
3.单击“设置”下的特定资源,再单击“删除”,然后单击“确定”。 六、禁用不再需要的设备
3.如果提示 做个明白人 全面清除软件模棱两可概念
我们经常会遭遇许多相似但却并不相同的东西,往往模棱两可。比如:Windows Messenger 和MSN Messenger,OutLook Express和Outlook,.bat 和 .cmd等等,你能说清它们之间有哪些区别吗?千万别轻易在它们之间划上等号,否则“菜鸟”的头衔又非你莫属了…… Windows Messenger、MSN Messenger
表层相异度:Windows Messenger目前的最高版本为4.7,是Windows XP系统自带,安装完Windows XP就已经有了。而MSN Messenger则在需要时自行下载安装,最高版本是眼下正处在测试期的7.0。 Windows XP SP1a、SP1
结论:如果已经安装了SP1,就完全没必要升级到SP1a。为了系统的安全,建议统一升级到SP2。 Outlook Express、Outlook
Terminal Service(终端服务)、Remote Desktop(远程桌面)
bat与.cmd文件 上一篇: 六步走!Windows系统硬件冲突故障巧解决 【重要声明】:天新网刊载此文仅为提供更多信息目的,并不代表天新网同意文章的说法或描述,也不构成任何建议,对本文有任何异议,请联系我们。 怎样由IP地址反查其域名?
HP : 0 / 202
MP : 34 / 2768
EXP : 10%
江湖异人 发表于2004/08/29, 18:26
HP : 0 / 538
MP : 201 / 7206
EXP : 52%
名动江湖 发表于2004/08/30, 14:05
HP : 0 / 142
MP : 20 / 1548
EXP : 69%
拜师学艺 发表于2004/08/31, 08:23
HP : 0 / 164
MP : 25 / 1932
EXP : 59%
江湖游侠 发表于2004/09/2, 05:30
HP : 0 / 351
MP : 86 / 4621
EXP : 5%
名动江湖 发表于2004/09/19, 23:45
HP : 0 / 351
MP : 86 / 4621
EXP : 5%
名动江湖 发表于2004/09/19, 23:46
HP : 1025 / 1709
MP : 4095 / 26834
EXP : 38%
rotartsinimdA 发表于2004/09/21, 22:48
HP : 0 / 192
MP : 31 / 2066
EXP : 68%
武林侠客 发表于2004/09/21, 22:58
HP : 0 / 482
MP : 160 / 6355
EXP : 29%
名动江湖 发表于2004/09/22, 18:04
HP : 0 / 2
MP : 1 / 28
EXP : 10%
新手上路 让软件真正的都不显示启动画面http://school.21tx.com 2005年10月15日 《电脑应用文萃》邮发代号:6-188 剑锋 当我们双击一DOC文件时会出现Word的启动画面,单击网页中的邮件链接时,还是会出现OE的启动画面。 怎样才能够真正地能够把它们去掉,减少系统资源消耗?今天,笔者就给大家一些治标更治本的办法。 Adobe Reader
MyIE2
Word文件
小提示 |
|
|