Metainformationen zur Seite
Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| Beide Seiten der vorigen RevisionVorhergehende Überarbeitung | |||
| firma:tipps_install_cmds [2025/10/17 09:43] – gelöscht - Externe Bearbeitung (Unbekanntes Datum) 127.0.0.1 | firma:tipps_install_cmds [2025/10/17 09:43] (aktuell) – ↷ Seite von tipps:tipps_install_cmds nach firma:tipps_install_cmds verschoben uwe-handzik | ||
|---|---|---|---|
| Zeile 1: | Zeile 1: | ||
| + | =====Allgemeines===== | ||
| + | |||
| + | Die Installation der Autodesk Deployment geht komplett ohne Nachfrage, hier einige Beispiele | ||
| + | |||
| + | Alles ohne Gewähr und Support ! | ||
| + | |||
| + | ----- | ||
| + | |||
| + | =====Speedup===== | ||
| + | |||
| + | |||
| + | < | ||
| + | REM ############################################################## | ||
| + | REM Erst mal aufs Lokales Laufwerk ! | ||
| + | |||
| + | C: | ||
| + | cd \ | ||
| + | |||
| + | REM ############################################################## | ||
| + | REM Deployment Server | ||
| + | |||
| + | SET INST_PATH=\\Server\deploy | ||
| + | SET INST_LOG1=" | ||
| + | SET INST_LOG2=" | ||
| + | |||
| + | REM ############################################################## | ||
| + | |||
| + | IF EXIST %INST_LOG1% | ||
| + | IF EXIST %INST_LOG2% | ||
| + | |||
| + | msiexec /i " | ||
| + | msiexec /i " | ||
| + | |||
| + | IF EXIST %INST_LOG1% | ||
| + | IF EXIST %INST_LOG2% | ||
| + | |||
| + | xcopy %INST_PATH%\__workspace__ | ||
| + | |||
| + | REGEDIT /S c: | ||
| + | |||
| + | Copy /Y " | ||
| + | Copy /Y " | ||
| + | |||
| + | del " | ||
| + | |||
| + | TIMEOUT /T 50 | ||
| + | </ | ||
| + | |||
| + | ------ | ||
| + | |||
| + | ==== AddInLoadRules.xml===== | ||
| + | |||
| + | < | ||
| + | <?xml version=" | ||
| + | |||
| + | < | ||
| + | <!-- Path rules | ||
| + | Only paths that require Administrator privileges to write to should be specified | ||
| + | as " | ||
| + | The line below allows the 3Dconnexion (3D Mouse) add-in if it is installed to its | ||
| + | default location. | ||
| + | --> | ||
| + | < | ||
| + | < | ||
| + | <!-- Publisher rules | ||
| + | Trusted publishers should be added to the Operating System' | ||
| + | They can optionally be specified here. If they are in the Trusted Store, it is not | ||
| + | necessary to have an entry here. Note that publishers can be either trusted or not | ||
| + | trusted in the Trusted Store (and here). | ||
| + | These examples show allowing and blocking fictitious publishers: | ||
| + | < | ||
| + | < | ||
| + | --> | ||
| + | |||
| + | <!-- ID rules | ||
| + | These rules refer to the add-in by its " | ||
| + | that describes the add-in. Add-ins should only be blocked, not allowed, by an ID rule, | ||
| + | since add-in GUIDs are easily discoverable and not checked for uniqueness. Thus a | ||
| + | malicious add-in could copy the GUID from an add-in that has been allowed by ID and | ||
| + | would be permitted to load. | ||
| + | This example shows blocking a known (fictitious) bad add-in: | ||
| + | <Id Policy=" | ||
| + | | ||
| + | <!-- Fallback rule | ||
| + | This rule specifies what to do if no other rules apply to an add-in. | ||
| + | The other rules include Inventor' | ||
| + | rules appearing above this rule in this file. | ||
| + | If the policy for this rule is " | ||
| + | silently blocked. No dialog will be presented to the user. This is the most secure setting, | ||
| + | and is the one that should be used by administrators wishing to prevent all loading of | ||
| + | non-approved add-ins by end users. | ||
| + | If the policy for this rule is " | ||
| + | silently allowed. No dialog will be presented to the user. This eliminates all checking | ||
| + | for unknown add-ins, so it is the most insecure option and is not recommended. | ||
| + | If there is no fallback rule (e.g. it is commented out), or the value of the rule is something | ||
| + | other than " | ||
| + | to load. After the first time, the user's choice will be remembered. | ||
| + | --> | ||
| + | |||
| + | <!-- Uncomment this line for maximum administrator control | ||
| + | < | ||
| + | --> | ||
| + | |||
| + | </ | ||
| + | </ | ||
| + | |||
| + | |||
| + | ===== Version 2021===== | ||
| + | |||
| + | ====AutoCAD==== | ||
| + | |||
| + | Deployment Name : acd_2021 | ||
| + | |||
| + | |||
| + | < | ||
| + | REM ############################################################## | ||
| + | REM Erst mal auf Lokales Laufwerk ! | ||
| + | |||
| + | C: | ||
| + | cd \ | ||
| + | |||
| + | REM ############################################################## | ||
| + | REM Deployment Server | ||
| + | |||
| + | SET INST_SRV=\\server\deploy | ||
| + | SET INST_LOG1=" | ||
| + | |||
| + | REM ############################################################## | ||
| + | REM AutoCAD | ||
| + | |||
| + | IF EXIST %INST_LOG1% | ||
| + | |||
| + | %INST_SRV%\acd_2021\Img\Setup.exe /W /qb /I %INST_SRV%\acd_2021\Img\ACAD_2021.ini /Trial /language de-de | ||
| + | |||
| + | " | ||
| + | |||
| + | IF EXIST %INST_LOG1% | ||
| + | |||
| + | TIMEOUT /T 50 | ||
| + | |||
| + | </ | ||
| + | |||
| + | ==== Mechanical==== | ||
| + | |||
| + | < | ||
| + | REM ############################################################## | ||
| + | REM Erst mal aufs Lokales Laufwerk ! | ||
| + | |||
| + | C: | ||
| + | cd \ | ||
| + | |||
| + | REM ############################################################## | ||
| + | REM Deployment Server | ||
| + | |||
| + | SET INST_SRV=\\server\deploy | ||
| + | SET INST_LOG1=" | ||
| + | |||
| + | REM ############################################################## | ||
| + | REM Mechanical 2020 | ||
| + | |||
| + | IF EXIST %INST_LOG1% | ||
| + | |||
| + | %INST_SRV%\mec_2021\Img\Setup.exe /W /qb /I %INST_SRV%\mec_2021\Img\MECH_2021.ini /Trial /language de-de | ||
| + | |||
| + | %INST_SRV%\Service\AutoCAD_Mechanical_2021.0.1_Update_64bit.exe /install /passiv /quiet /log %TEMP\Mech2021.0.1.log | ||
| + | |||
| + | IF EXIST %INST_LOG1% | ||
| + | |||
| + | TIMEOUT /T 50 | ||
| + | </ | ||
| + | |||
| + | ====Inventor==== | ||
| + | |||
| + | < | ||
| + | REM ############################################################## | ||
| + | REM Erst mal aufs Lokales Laufwerk ! | ||
| + | |||
| + | C: | ||
| + | cd \ | ||
| + | |||
| + | REM ############################################################## | ||
| + | REM Deployment Server | ||
| + | |||
| + | SET INST_SRV=\\ser??? | ||
| + | SET INST_LOG1=" | ||
| + | |||
| + | REM ############################################################## | ||
| + | |||
| + | IF EXIST %INST_LOG1% | ||
| + | IF EXIST %INST_LOG2% | ||
| + | |||
| + | %INST_SRV%\inv_2021\Img\Setup.exe /W /qb /I %INST_SRV%\inv_2021\Img\INV_2021.ini /Trial /language de-de | ||
| + | %INST_SRV%\Service\Inventor_2021.2_Update.exe | ||
| + | |||
| + | IF EXIST %INST_LOG1% | ||
| + | |||
| + | TIMEOUT /T 50 | ||
| + | </ | ||
| + | |||
| + | ====Vault 2021==== | ||
| + | |||
| + | Deployment Name : vlt_2021 | ||
| + | |||
| + | |||
| + | < | ||
| + | |||
| + | REM ############################################################## | ||
| + | REM Erst mal aufs Lokales Laufwerk ! | ||
| + | |||
| + | C: | ||
| + | cd \ | ||
| + | |||
| + | REM ############################################################## | ||
| + | REM Deployment Server | ||
| + | |||
| + | SET INST_SRV=\\server\deploy | ||
| + | SET INST_LOG1=" | ||
| + | |||
| + | REM ############################################################## | ||
| + | REM Vault 2021 | ||
| + | |||
| + | IF EXIST %INST_LOG1% | ||
| + | |||
| + | " | ||
| + | |||
| + | " | ||
| + | |||
| + | |||
| + | IF EXIST %INST_LOG1% | ||
| + | |||
| + | TIMEOUT /T 50 | ||
| + | </ | ||
| + | |||
| + | ===== Version 2020===== | ||
| + | |||
| + | ====Mechanical==== | ||
| + | |||
| + | |||
| + | < | ||
| + | |||
| + | REM ############################################################## | ||
| + | REM Erst mal aufs Lokales Laufwerk ! | ||
| + | |||
| + | C: | ||
| + | cd \ | ||
| + | |||
| + | REM ############################################################## | ||
| + | REM Deployment Server | ||
| + | |||
| + | SET INST_SRV=\\server\deploy | ||
| + | SET INST_LOG1=" | ||
| + | |||
| + | REM ############################################################## | ||
| + | REM Mechanical 2020 | ||
| + | |||
| + | IF EXIST %INST_LOG1% | ||
| + | |||
| + | %INST_SRV%\mec_2020Img\Setup.exe /W /qb /I %INST_SRV%\mec_2020\Img\MECH_2020.ini /Trial /language de-de | ||
| + | |||
| + | %INST_SRV%\Service\AutoCAD_Mechanical_2020.0.1_Update_64bit.exe /install /passiv /quiet /log %INST_LOG1% | ||
| + | |||
| + | IF EXIST %INST_LOG1% | ||
| + | |||
| + | TIMEOUT /T 50 | ||
| + | </ | ||
| + | |||
| + | ====Inventor==== | ||
| + | |||
| + | |||
| + | < | ||
| + | |||
| + | REM ############################################################## | ||
| + | REM Erst mal aufs Lokales Laufwerk ! | ||
| + | |||
| + | C: | ||
| + | cd \ | ||
| + | md temp | ||
| + | |||
| + | REM ############################################################## | ||
| + | REM Deployment Server | ||
| + | |||
| + | SET INST_SRV=\\server\deploy | ||
| + | SET INST_LOG1=" | ||
| + | |||
| + | REM ############################################################## | ||
| + | |||
| + | IF EXIST %INST_LOG1% | ||
| + | |||
| + | %INST_SRV%\inv_2020\Img\Setup.exe /W /qb /I %INST_SRV%\inv_2020\Img\INV_2020.ini /Trial /language de-de | ||
| + | |||
| + | %INST_SRV%\Service\Inventor_2020.3_Update.exe | ||
| + | |||
| + | IF EXIST %INST_LOG1% | ||
| + | |||
| + | TIMEOUT /T 50 | ||
| + | </ | ||
| + | |||
| + | =====Vault==== | ||
| + | |||
| + | Deployment Name : vlt_2020 | ||
| + | |||
| + | |||
| + | < | ||
| + | |||
| + | REM ############################################################## | ||
| + | REM Erst mal aufs Lokales Laufwerk ! | ||
| + | |||
| + | C: | ||
| + | cd \ | ||
| + | |||
| + | REM ############################################################## | ||
| + | REM Deployment Server | ||
| + | |||
| + | SET INST_SRV=\\server\deploy | ||
| + | SET INST_LOG1=" | ||
| + | |||
| + | REM ############################################################## | ||
| + | REM Vault 2020 | ||
| + | |||
| + | IF EXIST %INST_LOG1% | ||
| + | IF EXIST %INST_LOG2% | ||
| + | IF EXIST %INST_LOG3% | ||
| + | |||
| + | %INST_SRV%\vlt_2020\Img\Setup.exe /W /qb /I %INST_SRV%\vlt_2020\Img\VLT_2020.ini /Trial /language de-de | ||
| + | |||
| + | " | ||
| + | " | ||
| + | " | ||
| + | |||
| + | IF EXIST %INST_LOG1% | ||
| + | IF EXIST %INST_LOG2% | ||
| + | IF EXIST %INST_LOG3% | ||
| + | |||
| + | |||
| + | TIMEOUT /T 50 | ||
| + | </ | ||
| + | |||
| + | |||