Installing on Windows/de: Difference between revisions

From FreeCAD Documentation
(Created page with "Sie können die Windows-version von FreeCAD auf einem Linux System installieren, das ''CXOffice 5.0.1'' verwendet. Starten Sie ''msiexec'' in der CXOffice Befehlszeile, nehme...")
(Updating to match new version of source page)
 
(173 intermediate revisions by 10 users not shown)
Line 1: Line 1:
<languages/>
The easiest way to install FreeCAD on Windows is to download the installer below. <br>
{{DownloadWindowsStable}}


{{docnav/de
After downloading the .msi (Microsoft Installer) file, just double-click on it to start the installation process.
|[[Feature_list/de|Funktionalitäten]]
|[[Install_on_Linux/de| Installieren auf Linux]]
}}


{{TOCright}}
Below is more information about technical options. If it looks daunting, don't worry! Most Windows users will not need anything more than the .msi to install FreeCAD and '''[[Getting started | Get started]]'''!


<span id="Standard_Installation"></span>
== Standardinstallation ==


Der einfachste Weg, die aktuellste, stabile Version von FreeCAD zu installieren, ist die Verwendung des Installierers, siehe Seite [[Download/de|Herunterladen]].
=== Simple Microsoft Installer Installation ===
The easiest way to '''install FreeCAD on Windows''' is by using the installer above. This page describes the usage and the features of the ''Microsoft Installer'' for more installation options.


Wenn Du eine Entwicklungsversion herunterladen möchtest, die möglicherweise instabil ist, lies die Seite [https://github.com/FreeCAD/FreeCAD-Bundle/releases/tag/weekly-builds Weekly builds download].
If you would like to download either a 64 bit or unstable development version, see the [[Download]] page.


Nachdem Du den Installierer heruntergeladen hast, startet der Installationsprozess nach einem Doppelklick darauf.


Nachfolgend finden sich weitere Informationen zu einigen technischen Optionen. Aber die meisten Nutzer benötigen nicht mehr als den Installierer. Nach Abschluss der Installation, gehe zu [[Getting started/de|Erste Schritte]].
=== Command Line Installation ===
With the ''msiexec.exe'' command line utility, additional features are available, like non-interactive installation and administrative installation.


<span id="Installation_for_all_users_of_the_Windows_system"></span>
==== Non-interactive Installation ====
== Installation für alle Nutzer im Windowssystem ==
With the command line
msiexec /i FreeCAD<version>.msi
installation can be initiated programmatically. Additional parameters can be passed at the end of this command line, like
msiexec /i FreeCAD-2.5.msi TARGETDIR=r:\FreeCAD25
==== Limited user interface ====
The amount of user interface that installer displays can be controlled with /q options, in particular:


Voreingestellt wird FreeCAD für den Nutzer installiert, der den Installierer aktiviert. Wenn dieser Nutzer nur Nutzerrechte hat, dann ist der Installationspfad: {{FileName|C:\Users\<username>\AppData\Local\Programs\FreeCAD X.YY}}
* /qn - No interface
* /qb - Basic interface - just a small progress dialog
* /qb! - Like /qb, but hide the Cancel button
* /qr - Reduced interface - display all dialogs that don't require user interaction (skip all modal dialogs)
* /qn+ - Like /qn, but display "Completed" dialog at the end
* /qb+ - Like /qb, but display "Completed" dialog at the end


Wird der Installierer durch einen Administrator aktiviert, kann dieser wählen, ob FreeCAD für alle Nutzer im System oder nur für Dich installiert wird. Per Voreinstellung wird für alle Nutzer installiert.
==== Target directory ====
The property TARGETDIR determines the root directory of the FreeCAD installation. For example, a different installation drive can be specified with
TARGETDIR=R:\FreeCAD25
The default TARGETDIR is [WindowsVolume\Programm Files\]FreeCAD<version>.


Der voreingestellte Pfad für alle Nutzer ist: {{FileName|C:\Program Files\FreeCAD X.YY}}
==== Installation for All Users ====
Adding
ALLUSERS=1
causes an installation for all users. By default, the non-interactive installation install the package just for the current user, and the interactive installation offers a dialog which defaults to "all users" if the user is sufficiently privileged.


<span id="Silent_Installation"></span>
==== Feature Selection ====
== Installation im Hintergrund ==
A number of properties allow selection of features to be installed, reinstalled, or removed. The set of features for the FreeCAD installer is


Um FreeCAD im Hintergrund zu installieren kann der Installierer über die Kommandozeile aktiviert werden:
* DefaultFeature - install the software proper, plus the core libraries
* Documentation - install documentation
* Source code - install the sources
* ... ToDo


{{Code|lang=text|code=
In addition, ALL specifies all features. All features depend on DefaultFeature, so installing any feature automatically installs the default feature as well. The following properties control features to be installed or removed
FreeCAD-~.exe /S
}}
Für alle Optionen werden vorgegebene Einstellungen verwendet. Eine benutzerbezogene Installation kann in folgender Weise eingestellt werden:


{{Code|lang=text|code=
* ADDLOCAL - list of feature to be installed on the local machine
FreeCAD-~.exe /S /D=A path to FreeCAD with spaces
* REMOVE - list of features to be removed
}}
* ADDDEFAULT - list of features added in their default configuration (which is local for all FreeCAD features)
* REINSTALL - list of features to be reinstalled/repaired
* ADVERTISE - list of feature for which to perform an advertise installation


Selbst bei einer Installation im Hintergrund wird per Vorgabe eine Meldung gezeigt, während der Installierer auf Korruption geprüft wird. Diese sogenannte zyklische Redundanzprüfung dauert meistens nur ein paar Sekunden. Um diese Prüfung auf Korruption zu unterbinden, muß folgendes eingegeben werden:
There are a few additional properties available; see the MSDN documentation for details.


{{Code|lang=text|code=
With these options, adding
FreeCAD-~.exe /S /NCRC
ADDLOCAL=Extensions
}}
installs the interpreter itself and registers the extensions, but does not install anything else.


Beachte: diese {{Incode|/NCRC}} Angabe (flag) wird '''nicht empfohlen''', da die Prüfung auf Korruption gewährleistet, daß der Installierer beispielsweise vollständig heruntergeladen wurde.
=== Uninstallation ===
With
msiexec /x FreeCAD<version>.msi
FreeCAD can be uninstalled. It is not necessary to have the MSI file available for uninstallation; alternatively, the package or product code can also be specified. You can find the product code by looking at the properties of the Uninstall shortcut that FreeCAD installs in the start menu.


== Chocolatey ==
=== Administrative installation ===
With
msiexec /a FreeCAD<version>.msi
an "administrative" (network) installation can be initiated. The files get unpacked into the target directory (which should be a network directory), but no other modification is made to the local system. In addition, another (smaller) msi file is generated in the target directory, which clients can then use to perform a local installation (future versions may also offer to keep some features on the network drive altogether).


Using the [https://chocolatey.org/install Chocolatey] package manager is currently not recommended as that repository is no longer kept up-to-date.
Currently, there is no user interface for administrative installations, so the target directory must be passed on the command line.


<span id="Uninstallation"></span>
There is no specific uninstall procedure for an administrative install - just delete the target directory if no client uses it anymore.
== Deinstallation ==


Um FreeCAD zu de-installieren sollten vorzugsweise die Windowswerkzeuge verwendet werden. Andernfalls kann der Deinstallierer direkt verwendet werden. Dies ist die Datei: {{FileName|Uninstall-FreeCAD.exe}}
=== Advertisement ===
Sie befindet sich im selben Ordner, in dem FreeCAD installiert ist.
With
msiexec /jm FreeCAD<version>.msi
it would be possible, in principle, to "advertise" FreeCAD to a machine (with /ju to a user). This would cause the icons to appear in the start menu, and the extensions to become registered, without the software actually being installed. The first usage of a feature would cause that feature to be installed.


Der Deinstallierer kann mit der folgenden Kommandozeile auch im Hintergrund ausgeführt werden:
The FreeCAD installer currently supports just advertisement of start menu entries, but no advertisement of shortcuts.


{{Code|lang=text|code=
=== Automatic Installation on a Group of Machines ===
Uninstall-FreeCAD.exe /S}}
With Windows Group Policy, it is possible to automatically install FreeCAD an a group of machines. To do so, perform the following steps:
#Log on to the domain controller
#Copy the MSI file into a folder that is shared with access granted to all target machines.
#Open the MMC snapin "Active Directory users and computers"
#Navigate to the group of computers that need FreeCAD
#Open Properties
#Open Group Policies
#Add a new policy, and edit it
#In Computer Configuration/Software Installation, choose New/Package
#Select the MSI file through the network path
#Optionally, select that you want the FreeCAD to be deinstalled if the computer leaves the scope of the policy.


Beachte: die Deinstallation im Hintergrund verursacht einen Fehler, wenn eine Instanz von FreeCAD läuft, auch wenn die Instanz nicht die Version ist die deinstalliert werden soll.
Group policy propagation typically takes some time - to reliably deploy the package, all machines should be rebooted.


=== Installation auf Linux mit Crossover Office ===


{{docnav/de
Sie können die Windows-version von FreeCAD auf einem Linux System installieren, das ''CXOffice 5.0.1'' verwendet. Starten Sie ''msiexec'' in der CXOffice Befehlszeile, nehmen wir z.Beispiel an, das Paket liegt im "Software"-Verzeichnis, das sich im Laufwerk "Y:" befindet:
|[[Feature_list/de|Funktionalitäten]]
msiexec /i Y:\\software\\FreeCAD<version>.msi
|[[Install_on_Linux/de|Installieren auf Linux]]
FreeCAD wird starten, es wurde aber schon berichtet, dass die OpenGL Anzeige nicht funktioniert, wie auch bei manchen anderen Programmen unter [http://de.wikipedia.org/wiki/Wine Wine] z.B. Google [http://de.wikipedia.org/wiki/Google_SketchUp SketchUp].
}}


{{Userdocnavi{{#translation:}}}}
{{docnav/de|Funktionalitäten|Installieren auf Linux/Unix}}

[[Category:User Documentation/de]]
<languages/>

Latest revision as of 20:00, 26 January 2024

Standardinstallation

Der einfachste Weg, die aktuellste, stabile Version von FreeCAD zu installieren, ist die Verwendung des Installierers, siehe Seite Herunterladen.

Wenn Du eine Entwicklungsversion herunterladen möchtest, die möglicherweise instabil ist, lies die Seite Weekly builds download.

Nachdem Du den Installierer heruntergeladen hast, startet der Installationsprozess nach einem Doppelklick darauf.

Nachfolgend finden sich weitere Informationen zu einigen technischen Optionen. Aber die meisten Nutzer benötigen nicht mehr als den Installierer. Nach Abschluss der Installation, gehe zu Erste Schritte.

Installation für alle Nutzer im Windowssystem

Voreingestellt wird FreeCAD für den Nutzer installiert, der den Installierer aktiviert. Wenn dieser Nutzer nur Nutzerrechte hat, dann ist der Installationspfad: C:\Users\<username>\AppData\Local\Programs\FreeCAD X.YY

Wird der Installierer durch einen Administrator aktiviert, kann dieser wählen, ob FreeCAD für alle Nutzer im System oder nur für Dich installiert wird. Per Voreinstellung wird für alle Nutzer installiert.

Der voreingestellte Pfad für alle Nutzer ist: C:\Program Files\FreeCAD X.YY

Installation im Hintergrund

Um FreeCAD im Hintergrund zu installieren kann der Installierer über die Kommandozeile aktiviert werden:

FreeCAD-~.exe /S

Für alle Optionen werden vorgegebene Einstellungen verwendet. Eine benutzerbezogene Installation kann in folgender Weise eingestellt werden:

FreeCAD-~.exe /S /D=A path to FreeCAD with spaces

Selbst bei einer Installation im Hintergrund wird per Vorgabe eine Meldung gezeigt, während der Installierer auf Korruption geprüft wird. Diese sogenannte zyklische Redundanzprüfung dauert meistens nur ein paar Sekunden. Um diese Prüfung auf Korruption zu unterbinden, muß folgendes eingegeben werden:

FreeCAD-~.exe /S /NCRC

Beachte: diese /NCRC Angabe (flag) wird nicht empfohlen, da die Prüfung auf Korruption gewährleistet, daß der Installierer beispielsweise vollständig heruntergeladen wurde.

Chocolatey

Using the Chocolatey package manager is currently not recommended as that repository is no longer kept up-to-date.

Deinstallation

Um FreeCAD zu de-installieren sollten vorzugsweise die Windowswerkzeuge verwendet werden. Andernfalls kann der Deinstallierer direkt verwendet werden. Dies ist die Datei: Uninstall-FreeCAD.exe Sie befindet sich im selben Ordner, in dem FreeCAD installiert ist.

Der Deinstallierer kann mit der folgenden Kommandozeile auch im Hintergrund ausgeführt werden:

Uninstall-FreeCAD.exe /S

Beachte: die Deinstallation im Hintergrund verursacht einen Fehler, wenn eine Instanz von FreeCAD läuft, auch wenn die Instanz nicht die Version ist die deinstalliert werden soll.