|
本帖最后由 hhh333 于 2015-10-11 18:15 编辑
好像不是缺文件的问题,就我那个PE,刚才测试了,非RAM03PE是可以进的,而且飞快。
NT5系统在NET包中没有VC8,我重新打了一个包:
VC05_X86_WinSxS.7z
(699.98 KB, 下载次数: 28)
,放NET的系统增强代替原文件就可以了多了300KB,或者直接解压到%windir%中,可以测试
安装脚本:
- @echo off
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive" /f /v "AllowSynchronousUpload" /t REG_DWORD /d 1
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive" /f /v "CacheFolder" /t REG_SZ /d "%TEMP%\NDCache"
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive" /f /v "CacheSizeIncrement" /t REG_DWORD /d 256
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive" /f /v "CacheSizeRelativeIncrement" /t REG_DWORD /d 10
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive" /f /v "FolderContentsOutdateTime" /t REG_DWORD /d 5000
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive" /f /v "InitialCacheSize" /t REG_DWORD /d 1024
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive" /f /v "LogGeneralEvents" /t REG_DWORD /d 1
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive" /f /v "LogPathName" /t REG_SZ /d "%TEMP%\ndsvc.log"
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive" /f /v "MaxCacheSize" /t REG_DWORD /d 32768
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive" /f /v "ModifyingOpsQueueSize" /t REG_DWORD /d 1
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive" /f /v "QuerySpaceAtMount" /t REG_DWORD /d 1
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive" /f /v "ReadBufferSize" /t REG_DWORD /d 64
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive" /f /v "ShowNetErrors" /t REG_DWORD /d 1
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive" /f /v "UpdateSpaceInformation" /t REG_DWORD /d 1
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive" /f /v "UseOutdatingOnlyForListing" /t REG_DWORD /d 1
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive" /f /v "UseReadAhead" /t REG_DWORD /d 1
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive" /f /v "UseSyncReading" /t REG_DWORD /d 1
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive\FTP" /f /v "MaxRandomSessions" /t REG_DWORD /d 4
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive\FTP" /f /v "MaxRandomSessionsPerFile" /t REG_DWORD /d 2
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive\FTP" /f /v "MaxReadSessions" /t REG_DWORD /d 4
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive\FTP" /f /v "MaxReadSessionsPerFile" /t REG_DWORD /d 2
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive\FTP" /f /v "MaxSequentialSessions" /t REG_DWORD /d 4
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive\FTP" /f /v "MaxSequentialSessionsPerFile" /t REG_DWORD /d 2
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive\FTP" /f /v "MaxSessions" /t REG_DWORD /d 4
- reg add "HKLM\SOFTWARE\Bdrive Inc\NetDrive\FTP" /f /v "MaxSessionsPerFile" /t REG_DWORD /d 2
- reg add "HKLM\SYSTEM\CurrentControlSet\Services\ndsvc" /f /v "ErrorControl" /t REG_DWORD /d 1
- reg add "HKLM\SYSTEM\CurrentControlSet\Services\ndsvc" /f /v "DisplayName" /t REG_SZ /d "NetDrive Service"
- reg add "HKLM\SYSTEM\CurrentControlSet\Services\ndsvc" /f /v "Description" /t REG_SZ /d "Manages NetDrive mounted drives by servicing IO requests"
- sc create ndsvc start= auto binpath= "%cd%\ndsvc.exe"
- sc start ndsvc
复制代码 |
|