Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

How to adopt Win7 drivers to Vista ?

Featured Replies

i'm new here, recently successfully installed Vista Ultimate SP2 via WinNtSetup,
but completely failed drivers installation (even nvidia 365.19 gives error after first check)

obviously this motherboard not supported, i wonder is there any tricks or hints to make things work?
(would be great somehow modify win7 drivers or something, LAN and USB especially needed)

MSI H110M PRO-VD :unsure:
Intel® G4400
GTX 960

Edited by mardunaki


11 hours ago, mardunaki said:

but completely failed drivers installation (even nvidia 365.19 gives error after first check)

Hello and fastest Victory to you! 

960 64 bit

https://catalog.s.download.windowsupdate.com/d/msdownload/update/driver/drvs/2015/11/20798775_439eb6d19d8d25dcd82d59a2ae698e7e7db0b174.cab

Edit:

32 bit

https://catalog.s.download.windowsupdate.com/c/msdownload/update/driver/drvs/2015/11/20798776_c2c00daf91100c73599fc3167abd773cf81efeb9.cab

 

Edited by D.Draker

11 hours ago, mardunaki said:

USB especially needed

those are problematic, better to purchase a dedicated usb card for Vista.

On 8/20/2024 at 7:28 PM, mardunaki said:

USB especially needed

Try this one. It's not mine, but I can't link to the original forum since it hosts pirated software, so I can only give a direct link.

It's a generic USB 3 driver made by the same user that made the AMD USB 3 driver.

https://www.mediafire.com/file/fgpxbkt9ly6i4py/WinPE_KB2864202++USB3x.7z/file

Important, you need to install the official update KB2864202 first!

1 hour ago, D.Draker said:

Try this one. It's not mine, but I can't link to the original forum since it hosts pirated software, so I can only give a direct link.

It's a generic USB 3 driver made by the same user that made the AMD USB 3 driver.

https://www.mediafire.com/file/fgpxbkt9ly6i4py/WinPE_KB2864202++USB3x.7z/file

Well, thats my file exactly and Mydigital Life is legit forum :) Just repost everything. Files without registry keys wont allow you to run USB3 in Vista PE. And yes, USB3 driver is one of older ones ported by @daniel_k before he dropped support for Vista from his Windows 8 USB3 driver port for 7.

UpgradePE.cmd

@echo off
cls
if "%~1" == "" (
    echo.
    echo Drag and Drop path to mounted image:
    echo.
    SET /P IMAGE=
    echo.
) Else (
    SET IMAGE=%~1
)
IF EXIST "%IMAGE%\Windows\SysWOW64" (
    SET ARCH=x64
    SET ARCH2=amd64
) ElSE (
    SET ARCH=x86
    SET ARCH2=x86
)
	xcopy /s /y /e "%~dp0updates\extracted\WinPE6.0-KB2864202-%ARCH%" "%IMAGE%\Windows\system32" >nul
reg load HKLM\TEMPSYSTEM "%image%\windows\system32\config\SYSTEM" >nul
reg add "HKLM\TEMPSYSTEM\ControlSet001\Control\Wdf\Kmdf\1" /v "Version" /t REG_SZ /d "1.11" /f >nul
reg add "HKLM\TEMPSYSTEM\ControlSet001\Control\Wdf\Schema\KmdfService" /v "Type" /t REG_DWORD /d "0" /f >nul
reg add "HKLM\TEMPSYSTEM\ControlSet001\Control\Wdf\Schema\KmdfService\Object" /v "KeyPath" /t REG_SZ /d "CurrentControlSet\Services" /f >nul
reg add "HKLM\TEMPSYSTEM\ControlSet001\Control\Wdf\Schema\KmdfService\Object" /v "KeyRoot" /t REG_SZ /d "SYSTEM" /f >nul
reg add "HKLM\TEMPSYSTEM\ControlSet001\Control\WMI\Autologger\SQMLogger\{1a3c3605-aa85-4b19-aa24-bb74bc365059}" /v "EnableLevel" /t REG_DWORD /d "4" /f >nul
reg add "HKLM\TEMPSYSTEM\ControlSet001\Control\WMI\Autologger\SQMLogger\{1a3c3605-aa85-4b19-aa24-bb74bc365059}" /v "Enabled" /t REG_DWORD /d "1" /f >nul
reg add "HKLM\TEMPSYSTEM\ControlSet001\Control\WMI\Autologger\SQMLogger\{1a3c3605-aa85-4b19-aa24-bb74bc365059}" /v "LoggerName" /t REG_SZ /d "SQMLogger" /f >nul
reg add "HKLM\TEMPSYSTEM\ControlSet001\Control\WMI\Autologger\SQMLogger\{1a3c3605-aa85-4b19-aa24-bb74bc365059}" /v "EnableProperty" /t REG_DWORD /d "2" /f >nul
reg add "HKLM\TEMPSYSTEM\ControlSet001\Control\WMI\Autologger\SQMLogger\{1a3c3605-aa85-4b19-aa24-bb74bc365059}" /v "MatchAnyKeyword" /t REG_QWORD /d "0x0000000000000800" /f >nul
reg add "HKLM\TEMPSYSTEM\ControlSet001\Services\Eventlog\System\wdf01000" /v "EventMessageFile" /t REG_SZ /d "@%%SystemRoot%%\Windows\System32\drivers\Wdf01000.sys" /f >nul
reg add "HKLM\TEMPSYSTEM\ControlSet001\Services\Wdf01000" /v "DisplayName" /t REG_SZ /d "@%%SystemRoot%%\system32\drivers\Wdf01000.sys,-1000" /f >nul
reg unload HKLM\TEMPSYSTEM >nul
"%~dp0apps\waik\x86\peimg.exe" /inf="%~dp0updates\extracted\GenericXHCIDriver-%ARCH%\XHCI\USBXHCI.inf" /image="%image%"
"%~dp0apps\waik\x86\peimg.exe" /inf="%~dp0updates\extracted\GenericXHCIDriver-%ARCH%\UASPSTOR\uaspstor.inf" /image="%image%"
	

And here you can get needed files

https://www.mediafire.com/file/fgpxbkt9ly6i4py/WinPE_KB2864202++USB3x.7z/file

 

11 hours ago, George King said:

Well, thats my file exactly and Mydigital Life is legit forum :) Just repost everything.

Thanks, but don't be so sure, there was a discussion where we supposed to meet when MSFN is down, and that forum was considered to be a very questionable alternative and rejected due to the fact I mentioned.

11 hours ago, George King said:

Well, thats my file exactly

Good to know! I wrote it wasn't mine, someone gave it to me without telling who the owner was. I'll report that person the next time.

11 hours ago, George King said:
reg add "HKLM\TEMPSYSTEM\ControlSet001\Control\WMI\Autologger\SQMLogger\{1a3c3605-aa85-4b19-aa24-bb74bc365059}" /v "Enabled" /t REG_DWORD /d "1" /f >nul

Perhaps this is why it didn't work me, I always disable all logging, mind telling why do we need this logger to be active? thank you.

11 hours ago, George King said:

USB3 driver is one of older ones ported by @daniel_k

That older original port literally killed my MSI B85 mobo some years ago. I wrote about, it's now too long to find the post.

11 hours ago, George King said:

Well, thats my file exactly and Mydigital Life is legit forum :) Just repost everything.

A citation from @Tripredacus's post forbidding MDL. 

"MDL is not a place we can have an official relationship with due to the nature of the content they post there."

https://msfn.org/board/topic/184809-alternative-location-for-discussing-msfns-status-if-msfn-is-offline/?do=findComment&comment=1246490

So don't do it, my advice,

  • Author

thanks for help but unfortunately, doesn't work (this drivers won't install at all no matter what)
i alrady have latest updates with all extra stuff like C++ redistributables & Net Frameworks 4.6.1
including D3Dcompiler64 etc. (6.0.6003.22668) <- all that installed via bat-file somehow without errors but runing .msu files seperatly have no luck.
I dunno, this is hard! my mind slovly shifting to idea of transforming win10 to vista on GTR7

btw i'm using cheap "adata" ssd no M2 on board!
only one old slot for mouse or kayboard, its real pain!
maybe sometime i'l find external solutions for usb and lan but now, i dunno...

CgGcDrG.png

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.