Installing on Windows/pt-br: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
 
(63 intermediate revisions by 2 users not shown)
Line 2: Line 2:


{{Docnav
{{Docnav
|[[Feature_list/pt-br|Lista de Recursos]]
|[[Feature list|Feature list]]
|[[Install on Linux|Install on Linux]]
|[[Installing_on_Linux/pt-br|Instalando no Linux]]
}}
}}


{{TOCright}}
You can install FreeCAD on Windows by downloading one of the installers below:


== Standard Installation ==
{{DownloadWindowsStable}}


<div class="mw-translate-fuzzy">
After downloading the .exe (NSIS Installer) file, double-click on it to start the installation process.
A maneira mais fácil de '''instalar o FreeCAD no Windows''' é usando o arquivo de instalação para download acima. Esta página descreve o uso e as características do ''Instalador NSIS'' para mais opções de instalação.
</div>


<div class="mw-translate-fuzzy">
Below is more information about some technical options. Nevertheless, most users don't need more than the above .exe files. Head to [[Getting started|Get started]] after installation is complete.
Se você quiser baixar a versão de desenvolvimento (que pode ser instável), veja a página [[Download/pt-br|Download]].
</div>


<div class="mw-translate-fuzzy">
== Simple NSIS Installer Installation ==
Após baixar o arquivo .exe (NSIS Installer), clique duas vezes nele para iniciar o processo de instalação.
</div>


<div class="mw-translate-fuzzy">
The easiest way to '''install FreeCAD on Windows''' is by using the downloadable installer bundle above. This page describes the usage and features of the ''NSIS Installer'' for more installation options.
Abaixo estão mais informações sobre algumas opções técnicas. No entanto, a maioria dos usuários não precisa mais do que os arquivos .exe acima. Vá para [[Getting started/pt-br|Introdução]] após completar a instalação.
</div>


== Installation for all users of the Windows system ==
If you would like to download a development version (which may be unstable), see the [[Download|Download]] page.


By default FreeCAD will be installed for the user that executes the installer. If this user only has user permissions, the default installation path is:
== Chocolatey ==
: {{FileName|C:\Users\<username>\AppData\Local\Programs\FreeCAD X.YY}}


If the installer is executed by an admin user, or you execute it as admin, you can choose if FreeCAD should be installed for all users of the system or just for you. The default is for all users.
However, it is highly recommended that you use a package manager such as Chocolatey to keep your software updated. You can installed Chocolatey following [https://chocolatey.org/install these instructions] and then open a PowerShell terminal as admin and run:


If installed for all users, the default installation path is:
{{Code|code=
: {{FileName|C:\Program Files\FreeCAD X.YY}}
choco install freecad
}}


== Silent Installation ==
every once in a while you can update your software with


To install FreeCAD silently, you can execute the installer from the command line:
{{Code|code=
choco upgrade freecad
}}


{{Code|lang=text|code=
to get the latest version available on Chocolatey repository. If there are any issues with the chocolatey package, you may contact maintainers on [https://chocolatey.org/packages/freecad this page].
FreeCAD-~.exe /S

== Command line installation ==

With the ''msiexec.exe'' command line utility, additional features such as non-interactive installation and administrative installation are available. See examples below.

=== Non-interactive installation ===

With the command line

{{Code|code=
msiexec /i FreeCAD<version>.msi
}}
}}
Default settings will be used for all options. A custom installation path can be specified in this manner:


{{Code|lang=text|code=
installation can be initiated programmatically. Additional parameters can be passed at the end of the command line, for example
FreeCAD-~.exe /S /D=A path to FreeCAD with spaces

{{Code|code=
msiexec /i FreeCAD-2.5.msi TARGETDIR=R:\FreeCAD25
}}
}}


By default, even with silent installations, there will be a short popup when the installer is checked for corruption. This so-called cyclic redundancy check only takes a few seconds at most. To disable this corruption check:
=== Limited user interface ===


{{Code|lang=text|code=
The amount of user control permitted by the installer can be controlled with /q options:
FreeCAD-~.exe /S /NCRC

* /qn - No interface
* /qb - Basic interface - display only a progress dialog with Cancel button
* /qb! - Like /qb, but hide the Cancel button
* /qr - Reduced interface - display all dialogs that do not 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

=== Target directory ===

The property TARGETDIR determines the root directory of the FreeCAD installation. For example, a different installation drive can be specified with

{{Code|code=
TARGETDIR=R:\FreeCAD25
}}
}}


Note that this {{Incode|/NCRC}} flag is '''not recommended''' since the corruption check assures that the installer was e.g. completely downloaded.
The default TARGETDIR is [WindowsVolume\Programm Files\]FreeCAD<version>.


== Chocolatey ==
=== Installation for All Users ===


Using the [https://chocolatey.org/install Chocolatey] package manager is currently not recommended as that repository is no longer kept up-to-date.
Adding


<span id="Uninstallation"></span>
{{Code|code=
== Desinstalação ==
ALLUSERS=1
}}


To uninstall FreeCAD it is preferable to use the Windows tools for uninstalling software. Alternatively you can execute the uninstaller directly. This is the file:
causes an installation usable by all users. By default, a non-interactive (/i) installation makes the package usable by the current user (the one performing the installation) only; an interactive installation presents a dialog which defaults to "all users" if the user performing the installation is sufficiently privileged.
: {{FileName|Uninstall-FreeCAD.exe}}
You can find it in the folder where FreeCAD is installed.


The uninstaller can also be executed silently using the command line:
=== Feature Selection ===


{{Code|lang=text|code=
A number of properties allow selection of features to be installed, reinstalled, or removed. The set of features for the FreeCAD installer is
Uninstall-FreeCAD.exe /S}}


Note that (silent) uninstallation will fail if there is a running instance of FreeCAD, even if that instance is not the version being uninstalled.
* DefaultFeature - install the software proper, plus the core libraries
* Documentation - install the documentation
* Source code - install the sources
* ... ToDo


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


{{Docnav
* ADDLOCAL - list of features to be installed on the local machine
|[[Feature_list/pt-br|Lista de Recursos]]
* REMOVE - list of features to be removed from the local machine
|[[Installing_on_Linux/pt-br|Instalando no Linux]]
* 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 features for which to perform an advertise installation

There are a few additional properties available; see the MSDN documentation for details.

With these options, adding

{{Code|code=
ADDLOCAL=Extensions
}}
}}

installs the interpreter itself and registers the extensions, but does not install anything else.

== Uninstallation ==

With

{{Code|code=
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.

== Administrative installation ==

With

{{Code|code=
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).

Currently, there is no user interface for administrative installations, so the target directory must be passed on the command line.

There is no specific uninstall procedure for an administrative install - simply delete the target directory if no client uses it anymore.

== Advertisement ==

With

{{Code|code=
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.

The FreeCAD installer currently only supports advertisement of start menu entries, but no advertisement of shortcuts.

== Automatic installation on a group of machines ==

With Windows Group Policy, it is possible to automatically install FreeCAD on 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 FreeCAD to be de-installed if the computer leaves the scope of the policy.

Group policy propagation typically takes some time - to reliably deploy the package, all machines should be rebooted.

== Installation on Linux using Crossover Office ==

You can install the windows version of FreeCAD on a Linux system using ''CXOffice 5.0.1''. Run ''msiexec'' from the CXOffice command line. Assuming the install package is in the "software" directory on drive "Y:":

{{Code|code=
msiexec /i Y:\\software\\FreeCAD<version>.msi
}}

FreeCAD is running, but it has been reported that the OpenGL display does not work, like with other programs running under [[wikipedia:Wine (software)|Wine]] i.e. Google [[wikipedia:SketchUp|SketchUp]].

<div class="mw-translate-fuzzy">
{{docnav/pt-br|Feature list/pt-br|Install on Unix/pt-br}}
</div>


{{Userdocnavi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}

Latest revision as of 20:00, 26 January 2024

Standard Installation

A maneira mais fácil de instalar o FreeCAD no Windows é usando o arquivo de instalação para download acima. Esta página descreve o uso e as características do Instalador NSIS para mais opções de instalação.

Se você quiser baixar a versão de desenvolvimento (que pode ser instável), veja a página Download.

Após baixar o arquivo .exe (NSIS Installer), clique duas vezes nele para iniciar o processo de instalação.

Abaixo estão mais informações sobre algumas opções técnicas. No entanto, a maioria dos usuários não precisa mais do que os arquivos .exe acima. Vá para Introdução após completar a instalação.

Installation for all users of the Windows system

By default FreeCAD will be installed for the user that executes the installer. If this user only has user permissions, the default installation path is:

C:\Users\<username>\AppData\Local\Programs\FreeCAD X.YY

If the installer is executed by an admin user, or you execute it as admin, you can choose if FreeCAD should be installed for all users of the system or just for you. The default is for all users.

If installed for all users, the default installation path is:

C:\Program Files\FreeCAD X.YY

Silent Installation

To install FreeCAD silently, you can execute the installer from the command line:

FreeCAD-~.exe /S

Default settings will be used for all options. A custom installation path can be specified in this manner:

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

By default, even with silent installations, there will be a short popup when the installer is checked for corruption. This so-called cyclic redundancy check only takes a few seconds at most. To disable this corruption check:

FreeCAD-~.exe /S /NCRC

Note that this /NCRC flag is not recommended since the corruption check assures that the installer was e.g. completely downloaded.

Chocolatey

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

Desinstalação

To uninstall FreeCAD it is preferable to use the Windows tools for uninstalling software. Alternatively you can execute the uninstaller directly. This is the file:

Uninstall-FreeCAD.exe

You can find it in the folder where FreeCAD is installed.

The uninstaller can also be executed silently using the command line:

Uninstall-FreeCAD.exe /S

Note that (silent) uninstallation will fail if there is a running instance of FreeCAD, even if that instance is not the version being uninstalled.