[wiki: add following page] "Scoop on Windows 7/8" #5885
goyalyashpal
started this conversation in
Show and tell
Replies: 1 comment 2 replies
-
Does it support Windows8? I like win8 more than 8.1. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
so, i was working on a client's system some days ago. per requested me for a better package manager on per's system running x64 windows 7.
surprisingly, i was able to do that and scoop seems to work fine there too. i had made some notes on the downlaod links i used while doing that.
so, i thought that these steps might be helpful to others, the links are confirmed, but the other specifics are to the best of my memory.
Windows OS with older PowerShells
Verifying if old/unsupported
$PSVersionTable.PSVersion
Else, proceed with instructions below.
Downloads
Download these things:
Microsoft .NET Framework (DNF) v4.5
Download the standalone/offline installer
NDP452-KB2901907-x86-x64-AllOS-ENU.exe
(~67 MB) from ndp-452 page.Windows Management Framework (WMF) v5.1
Go to wmf5download page, and download the zip with both
Win7
andW2K8R2
in it, i.e.Win7AndW2K8R2-KB3191566-x64.zip
(~65 MB) for Windows 7 SP1 x64. For Windows 8.1, downloadWin8.1AndW2K12R2-KB3191564-x64.msu
(~19 MB)Steps for Installations
Run the .NET Framework's GUI installer.
Extract the WMF zip.
Run "PowerShell"
In the shell, navigate to directory where you extracted the zip.
Run
.\install-xxx.ps1
. It will likely download & install "Update for Windows(KB3191566)".This is the step which requires active online internet connection.
If it shows error "install error 80070422", then start the "Windows Update" Service aka
wuauserv
and retry.This can be done from "Services" tab of task manager (
taskmgr
),or from
services.msc
window which can be found from "Start menu" > type "services".TODO: i think there was nothing more to it, but requires confirmation.
If no more steps, then good. else add those.
$PSVersionTable.PSVersion
to check powershell version. It should be 5.1.something.You are good to install scoop now 😃.
Further Notes
Following commonly used apps do NOT work in windows 7:
extras/alacritty
,extras/wezterm
: these both fundamentally use features from win10, so, are unfixable.main/scoop-search
as of v1.4.1 (yeah, kinda unfortunate)extras/bulk-crap-uninstaller
v5.7 - this should work when installed standalone, so requires further inspection for the cause.main/yq
v4.42.1main/typioca
v2.11.2main/ttyper
1.4.1 - it glitches out with something like: "winapi/winpty underline ...", so, might work with some configuration tweaksSo, suggested terminal if you will be using powershell is
extras/conemu
(v23.07.24 at time of writing).The mintty (
extras/wsltty
v3.7.0.2) terminal is also not suggested as it:bash
shellBeta Was this translation helpful? Give feedback.
All reactions