Please choose path where you want to store application data in neo4j after installation problem

After installing the neo4j desktop 1.1.14-1.1.17 it does not confirm the path.

enter image description here

Upvotes: 2

Views: 2826

Answers (6)

Adrian Baetu
Adrian Baetu

Reputation: 1

I solved it on Win10 following this approach (including debug steps so you can check if your issue is the same):

  • checked the error logs under Developer>Show error log
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

  • open PowerShell as admin
  • test the command there and received the same error
  • I checked the winmgmt repo but it stated its consistent
PS C:\Windows\system32> winmgmt /verifyrepository 
Das WMI-Repository ist konsistent.
  • I dared to reset the winmgmt repo
winmgmt /resetrepository
  • then the Get-CmiInstance command worked again
  • And after restarting Neo4J Desktop the [Confirm] button worked.

Hope this helps, cause its 2023 and the Neo4J Desktop Setup is still stumbling on this.

BR Adrian

Upvotes: 0

Marina Shafeeva
Marina Shafeeva

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

Thakhani Tharage
Thakhani Tharage

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

Suresh Sanghani
Suresh Sanghani

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

Mifdha Milan
Mifdha Milan

Reputation: 397

To path in environment variable add C:\windows\system32\wbem

Upvotes: -1

doopie
doopie

Reputation: 21

Just add this to your env variables PATH=%SystemRoot%\System32\Wbem

Upvotes: 2

Related Questions