Vim für Windows CLI-Installationsargumente

0

Ich greife remote auf einen Windows-Server zu und habe nur eine Powershell-CLI. Nach dem Herunterladen von vim für Windows mit:

 Invoke-WebRequest https://ftp.nluug.nl/pub/vim/pc/gvim81.exe -OutFile "gvim81.exe" 

Welche CLI-Argumente brauche ich, um vim zu installieren?

Start-Process -Wait -FilePath gvim81.exe -PassThru -ArgumentList "/Arg1=Arg1 /Arg2=Arg2"

Wo befindet sich eine Liste der verfügbaren CLI-Installationsargumente und -optionen?

Clay
quelle

Antworten:

0

https://support.microsoft.com/en-gb/help/912203/

Das Vim-Installationsprogramm sollte das verwenden /extract:<location> Option auch.

Finn Henderson
quelle
Start-Process -FilePath gvim81.exe -PassThru -ArgumentList "/help" gibt nichts zurück. Auch nichts mit Argumenten "/h" oder "/?"
Clay
Ebenfalls, Start-Process -Wait -FilePath gvim81.exe -PassThru -ArgumentList '/extract:"C:\vim\" /quiet /passive' endet nie.
Clay