support Posted May 27, 2021 Share Posted May 27, 2021 When installing Passwordstate 9, the server you install it on requires Powershell 5, and at least .NET Framework 4.7.2. Here's how to check the versions of these on your Passwordstate web server: Powershell: Open Powershell on your server and type in $host. This will return the version you are running and it needs to be at least 5.0 .NET Framework: Whilst you have Powershell open on your server, paste in the following code and hit enter: Get-ChildItem 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP' -Recurse | Get-ItemProperty -Name version -EA 0 | Where { $_.PSChildName -Match '^(?!S)\p{L}'} | Select PSChildName, version The version you are running should be 4.7.2 or higher. Screenshot below of results: Regards, Support Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now