Reputation: 21
After installing the neo4j desktop 1.1.14-1.1.17 it does not confirm the path.
Upvotes: 2
Views: 2826
Reputation: 1
I solved it on Win10 following this approach (including debug steps so you can check if your issue is the same):
Get-CimInstance : Ungültige Klasse In Zeile:1 Zeichen:1 + Get-CimInstance -ClassName Win32_LogicalDisk + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : MetadataError: (root\cimv2:Win32_LogicalDisk:String) [Get-CimInstance], CimException + FullyQualifiedErrorId : HRESULT 0x80041010,Microsoft.Management.Infrastructure.CimCmdlets.GetCimInstanceCommand
=> This error told me that Neo4J start procedure fails on this windows cmd:
Get-CimInstance -ClassName Win32_LogicalDisk
PS C:\Windows\system32> winmgmt /verifyrepository Das WMI-Repository ist konsistent.
winmgmt /resetrepository
Hope this helps, cause its 2023 and the Neo4J Desktop Setup is still stumbling on this.
BR Adrian
Upvotes: 0
Reputation: 1
I had the same problem and tried everything as check PATH variable, update powershell, update Java, made an JAVA_HOME variable and in the end it turned out that the problem was that my antivirus was blocking powershell. And now it works
Upvotes: -1
Reputation: 1298
Some organisations might have powershell diabled by administrators. Please check if you are able to launch powershell. if you can, navigate to the instalation folder of neo4j and launch it from comand by execuiting & '.\Neo4j Desktop.exe'
Upvotes: 0
Reputation: 141
If You have set env variables PATH=%SystemRoot%\System32\Wbem
and it is not working,
please set the path for Powershell
PATH=%SystemRoot%\System32\WindowsPowerShell\v1.0
I was facing the same problem and was able to fix it with this setting.
Upvotes: 2