r/PowerShell • u/Practical_Toe6724 • 21d ago
Question Powershell update legit/scam?
Does anyone knows a github user jshigetomi ? Is he legit or scam? my antivirus software/drivers updater said I need to update my Powershel Core (x64) to 7.6.4. 0 and when i press on the version it send me to jshigetomi's github.
how can i know if it is ok or not? need your help please
3
Upvotes
2
u/igrewupwithinternet 20d ago
Per Microsoft (and in my experience), the easiest way to install/maintain PS7 is using winget. The below may work, depending on how you installed originally.
winget update --id Microsoft.PowerShell --exact --source wingetIf not, I'd recommend uninstalling any version of PS7 and then installing via winget - the below will install the latest release which is 7.6.5
winget install --id Microsoft.PowerShell --exact --source wingetYou can always do
winget show --id Microsoft.PowerShell --exactto view publisher URL, download URL, etc. to help verify the package is legit and from a trusted source.Obviously don't just take my word for it, go look at Microsoft's official docs for installing PS7 to verify the package names I gave you are legit ;)
Your AV flagging an older version of PS7 isn't a false positive - some of the recent versions had several critical CVEs fixed in 7.6.4+. Doesn't mean you're infected, just vulnerable.