I
I
italant2016-04-13 01:21:09
PowerShell
italant, 2016-04-13 01:21:09

How to install powershell on windows 8.1?

I downloaded the installer from the official site, and in the best traditions of Microsoft, it gives out crap.
update for windows (kb3134758) is already installed on this computer
and that's it, the installation just turns off.
How to deal with this error?
windows 8.1
powershell I'm trying to install 5.0 or some other version.

Answer the question

In order to leave comments, you need to log in

4 answer(s)
A
Alexey, 2016-04-13
@italant

Check if it is disabled in windows features
6442d1338667343t-windows-features-turn-o

V
Vladimir Kuzin, 2016-04-13
@Bobson8

So there is no error. You already have the package installed, check for all versions of .NET, you may need to reinstall them. Look for powershell here: %SystemRoot%\System32\WindowsPowerShell\v1.0\PowerShell.exe

E
Eugene, 2016-04-13
@yellowmew

powershell in windows 7 and higher comes by default
, so you don't need to install "any other" version, if you install it, then only the 5th
5th, right, is installed with the windows management framework (you specified the correct KB)
1. Check PowerShell version (powershell code):
2. Check the .net version (copy-paste from here ), powershell code:

Get-ChildItem 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP' -recurse |
Get-ItemProperty -name Version,Release -EA 0 |
Where { $_.PSChildName -match '^(?!S)\p{L}'} |
Select PSChildName, Version, Release, @{
  name="Product"
  expression={
      switch($_.Release) {
        378389 { [Version]"4.5" }
        378675 { [Version]"4.5.1" }
        378758 { [Version]"4.5.1" }
        379893 { [Version]"4.5.2" }
        393295 { [Version]"4.6" }
        393297 { [Version]"4.6" }
        394254 { [Version]"4.6.1" }
        394271 { [Version]"4.6.1" }
      }
    }
}

Check

S
Sergey Kovalev, 2016-04-13
@Sergey-S-Kovalev

Starting from Windows 7 - Powershell comes as part of the OS, you can upgrade to Powershell v5
Windows Management Framework 5.0
in a separate package Start / All Programs / Windows Powershell / PowerShell ISE
Or just go to Start / Run > PowerShell_ISE.exe

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question