Content Type
Profiles
Forums
Events
Everything posted by TSNH
-
Forgot to quote you so you can get a notification as it's been a while Also commenting on the discussion from reddit The 7z contents from "this one" is the same as the originally posted one, I've binary compared them with winmerge And they are discussing nvme, but this pack contains also Generic_USB3x_6.2.9200.21180
- 2 replies
-
1
-
- Drivers
- Windows Vista
-
(and 1 more)
Tagged with:
-
Usually, the best universal USB3 drivers are pored 8.0 ones by @George King Someone links to that on reddit https://old.reddit.com/r/WindowsVista/comments/19e1bxn/finally_got_vista_to_run_on_nvme_look_on_my_works/ Right now the working link is the one under "this one" However on AMD systems that are 2015 or earlier it's better to use AMD drivers meant for Windows 7, they work for Vista too.
- 2 replies
-
- Drivers
- Windows Vista
-
(and 1 more)
Tagged with:
-
I have a 120Hz monitor and while games are indeed smoother than with 60FPS, On Windows 8, 7, and Vista, Aero animations still feel limited to 60FPS. Is it possible to make them actually utilize high refresh rate? or maybe make them 2x faster and increase their FPS that way?
-
My iso had a different file version, I think I got the right one by extracting files from updates of some windows vista update pack, but I don't remember which one, Searching this version also brings some results, you can try downloading this version directly from the internet if you don't have time for scavenging from unpacked updates (may be less safe tho) And it didn't work anyway on the laptop that I tried this patch on, your mileage may vary
-
The patch that you are referring to https://www.wincert.net/forum/topic/18176-vistaw2k8-x64-on-modern-hardware/ has to be applied to this exact version of acpi.sys 6.0.6002.24312 (vistasp2_ldr_escrow.180308-1636) make sure you have the right version But the necessary patch can be different for various hardware platforms
-
If you have K-Lite codec pack and mostly deafult settings, audio dithering for 16-bit output is enabled in the LAV audio decoder and it's settings. This process alters the sound slightly to reduce noise level So the possible reason why WAV can sound different than flac is because flac goes through the LAV audio and respects it's default settings with dithering (can be changed) and WAV by default doesn't go through the LAV audio and a standard builtin Windows decoder is used instead because wav is a Windows-native format and therefore the dithering setting is not being applied, so the output sounds different despite inputs being the same and lossless.
-
Update: Larian Studios has dropped a new update to BG3! I've just updated this guide with a new workaround regarding the Win7-incompatible PlayFAB component. According to the developers it's the last main development update so there is a big chance that BG3 will be kept compatible with Windows 7 for years to come
-
If so an FTP server on a local network will probably be the easiest transfer method. As a server you can use an old phone or ISS on a Windows virtual machine (even NT4 server would work)
-
Does it show up at all in My Computer when you connect it and allow photo transfer on the phone's screen or this error pops up when you initiate the transfer? I was able to test on an older iPhone (not 15pro) but updated to IOS 18 and Windows Vista and photo transfer worked there without any iTunes.
-
PowerShell 7 on Windows Vista Extended Kernel done properly
TSNH replied to TSNH's topic in Windows Vista
As a bonus here are Vista-compatible .reg files that add PowerShell 7 to the context menus To use them copy, save a .reg and apply Open PowerShell here: Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Directory\Background\shell\openpwsh] "MUIVerb"="&Open PowerShell" "Icon"="C:\\Program Files\\PowerShell\\7\\pwsh.exe" [HKEY_CLASSES_ROOT\Directory\Background\shell\openpwsh\command] @="cmd.exe /k for /l %%i in (0,0,1) do cls & pwsh.exe -NoExit -RemoveWorkingDirectoryTrailingCharacter -WorkingDirectory \"%V!\" -Command \"$host.UI.RawUI.WindowTitle = 'PowerShell 7 (x64)'\" " Open a folder in PowerShell: Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Directory\shell\PowerShell7x64] "MUIVerb"="&Open in PowerShell" "Icon"="C:\\Program Files\\PowerShell\\7\\pwsh.exe" [HKEY_CLASSES_ROOT\Directory\shell\PowerShell7x64\command] @="cmd.exe /k for /l %%i in (0,0,1) do cls & pwsh.exe -NoExit -RemoveWorkingDirectoryTrailingCharacter -WorkingDirectory \"%V!\" -Command \"$host.UI.RawUI.WindowTitle = 'PowerShell 7 (x64)'\" " Run .ps1 file in PowerShell: Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Microsoft.PowerShellScript.1\Shell\PowerShell7x64] "Icon"="C:\\Program Files\\PowerShell\\7\\pwsh.exe" "MUIVerb"="Run with PowerShell 7" [HKEY_CLASSES_ROOT\Microsoft.PowerShellScript.1\Shell\PowerShell7x64\Command] @="cmd /k for /l %%i in (0,0,1) do cls & pwsh.exe -Command \"$host.UI.RawUI.WindowTitle = 'PowerShell 7 (x64)'; if((Get-ExecutionPolicy ) -ne 'AllSigned') { Set-ExecutionPolicy -Scope Process Bypass }; & '%1'\" " As you can see they try to retry the PowerShell launch if it fails to overcome 7.2.2's bug, and are also in a bit different format than those supplied with PowerShell installer because those didn't work with Vista. I still haven't figured out how to make run as administrator versions EDIT: Changed command logic so that the should now work for much longer directory path strings.- 1 reply
-
- Vista x64
- Windows Vista
-
(and 2 more)
Tagged with:
-
PowerShell 7 on Windows Vista Extended Kernel done properly So here's how to install 64-bit PowerShell 7 on Windows Vista with Extended Kernel. You MUST use EXACLY version 7.2.2. If you want to know why is that, go to the section why 7.2.2?, but for now here's a Quick step-by-step guide: 1. Install Windows Vista Extended Kernel October 2022 x64 version if you haven't already (only x64 files are needed, less stable x86 ones not required) https://msfn.org/board/topic/183046-guide-vista-extended-kernel-installation/ 2. Download zipped version of PowerShell 7.2.2 (PowerShell-7.2.2-win-x64.zip) from GitHub https://github.com/PowerShell/PowerShell/releases/tag/v7.2.2 3. Extract it somewhere, from now on this somewhere is assumed to be "C:\Program Files\PowerShell\7\" so that the path to the main executable is "C:\Program Files\PowerShell\7\pwsh.exe" 4. Add this to your osver.ini in C:\Windows (if it's not there create it) [C:\Program Files\PowerShell\7\pwsh.exe] Enabled=1 MinorVersion=1 5. Add "C:\Program Files\PowerShell\7" without quotes to your system Path. To do that go to ControlPanel -> System and Maintenance -> System -> System Properties -> Advanced (it's a tab) -> Environmental Variables. Look for the Path variable and add the aforementioned path to other things after a semicolon ( ; ), thats how things are separated there. 6. Download and unzip this special shortcut https://forum.legacydev.org/viewtopic.php?f=27&t=231 and put it in "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Accessories\Windows PowerShell" so that it appears in the start menu next to the old-school WindowsPowerShell. You can also put it in "%appdata%\Microsoft\Internet Explorer\Quick Launch" to add it to quick launch. The 2 things that are special about the shortcut I've made are: It launches cmd to launch PowerShell, which is a workaround to a problem with 7.2.2 more in why 7.2.2? It behaves like a WindowsPowerShell window, so it has a range select feature and the iconic PowerShell blue color. 7. Enjoy Why 7.2.2? So you could just install 7.2.17, 7.2.24 or any other newer 7.2.x version, and it would work fine... mostly But sometimes those versions hang on startup and never launch staying in a non-functional state which even takes a few seconds when you decide close it. On some machines like 9/10 launch tries are successful on some almost none. There are even reports of this occurring on Windows 10: https://old.reddit.com/r/PowerShell/comments/v6arrr/powershell_72x_almost_always_hangs_when_launched/?rdt=40615 https://github.com/PowerShell/PowerShell/issues/17558 But I've managed to reproduce this issue only on Windows Vista machines and multiple ones. 7.2.3 and newer as well as newer 7.1.x like 7.1.7 are affected by this issue on Vista 7.2.1 and older as well as older 7.1 and 7.0 on the other hand just fail to launch at all showing a Failed to initialize properly ... smth error. So if it wasn't for 7.2.2 you would have to go back to PowerShell 6 to get a working version But 7.2.2 has it's own issue where it sometimes immediately closes after launching an exe. Fortunately it doesn't do this when launched from another command line tool, that's why it was necessary to make a shortcut that launches cmd first and pwsh next
- 1 reply
-
1
-
- Vista x64
- Windows Vista
-
(and 2 more)
Tagged with:
-
Is Nvidia container service running? Unfortunately I had to enable it, otherwise the settings would reset (Windows 8.0 here)
-
What are the improvements in this version vs Windows 7 paint?
-
iOS is a heavily locked platform, in US it only allows app installation through the ofiicial AppStrore, while Android users can probably just sideload an apk and use a VPN to access Tiktok
-
iPhone users will finally feel the need for sideloading.
-
Where did you find this info? Compressing audio in a lossless way should be theoretically possible and that's exactly what FLAC is supposed to accomplish. It would have no reason to exist otherwise.
-
Can't install Windows Developer Preview x64 bit
TSNH replied to WinDeveloperPreview's topic in Windows 7
Correct me if I'm wrong, but this autorun thing makes me think that you are launching the setup from another running Windows installation. So try booting from the setup disc instead. -
explorer7 - Windows 7 explorer for Windows 8.1/10/11
TSNH replied to Erizur's topic in Customizing Windows
Thanks! That's amazing, tested and working Would it be possible to use Windows Vista's explorer instead of Windows 7 one? EDIT: Got a helpful reply on discord about this. Follow this manual installation guide, https://github.com/explorer7-team/source/blob/main/README.md But Vista's explorer is still kinda broken with this tool for now -
Compare it to the behavior of standard Windows Vista There is a chance you got very lucky in the silicon lottery and your particular CPU doesn't suffer from the drift bug.
-
OAuth2's purpose is to verify that you are not using an email client that is not trusted by Google (or Microsoft etc.) It is extremely difficult for small (usually open source) email client developer to get approval from Google, so supporting OAuth2 != being able to actually use it https://forum.palemoon.org/viewtopic.php?f=73&t=30566&start=20#p246217 So maybe consider switching the email provider. For example Polish email providers Onet and WP don't require OAuth2
-
Software compatible with Windows Vista Extended Kernel
TSNH replied to WinClient5270's topic in Windows Vista
That's what happens when you copy-paste to avoid writing 3 words the second time and (don't) realize everything else is wrong -
BCM20702A0 Windows 10 64bit driver, card is Dell DW1560
TSNH replied to ruthan's topic in Windows 10
At least on some Broadcom WIFI+Bluetooth cards the Bluetooth part works as a USB device, so make sure you have working USB drivers, without them Bluetooth won't even show up in device manager. Or maybe try different USB drivers. I've had a HP branded Broadcom card working in Dell and Lenovo hardware so it should work with different brands as long as you install drivers through device manager -
It is available if you install Windows 7 AIK, it is officially supported by Microsoft Someone in the MDL thread I linked recommended a newer Chinese modified DISM by Chuyu-Team for Vista (you have to login to view their post), but idk about that
- 71 replies
-
- ExtendedKernel
- windows vista
-
(and 1 more)
Tagged with:
-
It has been a long time ago since I last did that (now I have an ISO with integrated updates), and I didn't post a link, because back then I just deleted (running 7-zip file manager as Trutedinstaller) all amd64.something and x86.somenthing folders with the date modified matching what I wanted to delete. But while effective, that's not a proper way, as it may break your Turn Features on or off and possibly other things, Perhaps look at this: https://forums.mydigitallife.net/threads/how-to-peform-a-full-winsxs-cleanup-for-vista-and-windows-7-series.87379/
- 71 replies
-
- ExtendedKernel
- windows vista
-
(and 1 more)
Tagged with: