- Community Home
- >
- Software
- >
- HPE OneView
- >
- Import-Module HPEOneView.550 The library is unable...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2020 03:49 PM
12-15-2020 03:49 PM
Hi Experts ,
Im trying to import "Import-Module HPEOneView.550" its giving me this error
Import-Module : The library is unable to load due to this sytem missing the required .NetFramework 4.7.2 client.
Please visit https://go.microsoft.com/fwlink/?LinkId=863265 to download the .NetFramework 4.7.2 Offline Installer.
At line:1 char:1
+ Import-Module HPEOneView.550
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ResourceUnavailable: (Import-Module HPEOneView.550:String) [Import-Module], InvalidOpera
tionException
+ FullyQualifiedErrorId : UnableToLoadModuleMissingDependancy,Microsoft.PowerShell.Commands.ImportModuleCommand
my $PSVersionTable
Name Value
---- -----
PSVersion 5.1.16299.1146
PSEdition Desktop
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...}
BuildVersion 10.0.16299.1146
CLRVersion 4.0.30319.42000
WSManStackVersion 3.0
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1
my Laptop is Windows 10 Based , version 1709 ,
am i missing somthing ?
Kind Regards ,
Mohamed ELGammal
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2020 06:59 PM - edited 12-15-2020 07:00 PM
12-15-2020 06:59 PM - edited 12-15-2020 07:00 PM
SolutionIdeally, you should be asking this over on the GitHub HPE OneView PowerShell project issue tracker or Discussions. SO for future reference, please use that location to engage us for support.
What does the output from the following return:
Get-Item 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full\' | Get-ItemPropertyValue -Name Release
There should be only 1 string returned, and it should be greater than 461808. If the string value is less than that, you may have removed the .Net Framework feature from Windows. Do know that WIndows 10 1709 shipped with the .Net Framework client 4.7.1 (documented here, you will see under the 4.7.1 section), which is likely being detected. So, you will need to download and install at least the 4.7.2 or newer installer.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2020 02:29 AM
12-16-2020 02:29 AM
Re: Import-Module HPEOneView.550 The library is unable to load
Hi Chris ,
Thank you it worked for me ,
the string value was less than 461808 , so i installed the .Net frame work 4.8 and re-run the command again could see that the string version is 528049 , and the Import-Module ran just fine afterwards
Will make sure to post at the discussion page in future issues .
Kind Regards ,
Mohamed ELGammal