Downloads:
572,131
Downloads of v 2023.24.2.72:
88,758
Last Update:
18 May 2022
Package Maintainer(s):
Software Author(s):
- Autodesk
Tags:
trueview autodesk autocad dwg dwf dxf viewer- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
DWG TrueView
This is not the latest version of DWG TrueView available.
- 1
- 2
- 3
2023.24.2.72 | Updated: 18 May 2022
- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
572,131
Downloads of v 2023.24.2.72:
88,758
Maintainer(s):
Software Author(s):
- Autodesk
DWG TrueView 2023.24.2.72
This is not the latest version of DWG TrueView available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Autodesk. The inclusion of Autodesk trademark(s), if any, upon this webpage is solely to identify Autodesk goods or services and not for commercial purposes.
- 1
- 2
- 3
This Package Contains an Exempted Check
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install DWG TrueView, run the following command from the command line or from PowerShell:
To upgrade DWG TrueView, run the following command from the command line or from PowerShell:
To uninstall DWG TrueView, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download dwgtrueview --internalize --version=2023.24.2.72 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade dwgtrueview -y --source="'INTERNAL REPO URL'" --version="'2023.24.2.72'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade dwgtrueview -y --source="'INTERNAL REPO URL'" --version="'2023.24.2.72'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install dwgtrueview
win_chocolatey:
name: dwgtrueview
version: '2023.24.2.72'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'dwgtrueview' do
action :install
source 'INTERNAL REPO URL'
version '2023.24.2.72'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller dwgtrueview
{
Name = "dwgtrueview"
Version = "2023.24.2.72"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'dwgtrueview':
ensure => '2023.24.2.72',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package is exempt from moderation. While it is likely safe for you, there is more risk involved.
View DWG files or convert them to work with older versions of AutoCAD software.
(2023.24.2.72) Re-releasing 2023 due to bug:
System requirements for DWG TrueView 2023
Operating System: 64-bit Microsoft® Windows® 11 and Windows 10 version 1809 or above.
Package Parameters
The following package parameters can be set (choose only one!):
/French:
- Install French language version/Japanese:
- Install Japanese language version- If no parameter is given the English language version will be installed.
To pass parameters, use --params "''"
(e.g. choco install dwgtrueview --params="'/French'"
).
To have choco remember parameters on upgrade, be sure to set choco feature enable -n=useRememberedArgumentsForUpgrades
.
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
. $toolsDir\helpers.ps1
Invoke-UninstallOldTrueView
function Invoke-UninstallOldTrueView {
$packageName = '*DWG TrueView*'
$folderRoot = 'C:\Program Files\Autodesk'
$validExitCodes = @(0, 3010, 1603, 1605, 1614, 1641)
Get-ItemProperty -Path @('HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*') `
-ErrorAction:SilentlyContinue `
| Where-Object {$_.DisplayName -like $packageName} `
| ForEach-Object {
$silentArgs = "$($_.PSChildName) /qn /norestart"
if($($_.PSChildName) -like '{*') { Uninstall-ChocolateyPackage -PackageName "$($_.DisplayName)" -FileType "msi" -SilentArgs "$($silentArgs)" -File '' -ValidExitCodes $validExitCodes }
Remove-Item $_.PsPath -Recurse -ErrorAction Ignore
}
if (Test-Path $folderRoot) { Get-ChildItem $folderRoot -Recurse -Force -Directory -Include $packageName | Remove-Item -Recurse -Confirm:$false -Force }
}
Log in or click on link to see number of positives.
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
DWG TrueView 2025.0.58.3 | 67454 | Wednesday, April 17, 2024 | Approved | |
DWG TrueView 2025.0.58.1 | 93078 | Thursday, April 4, 2024 | Approved | |
DWG TrueView 2025.0.58 | 25959 | Friday, March 29, 2024 | Approved | |
DWG TrueView 2024.24.3.61 | 151368 | Sunday, April 23, 2023 | Approved | |
DWG TrueView 2023.24.2.72 | 88758 | Wednesday, May 18, 2022 | Exempted | |
DWG TrueView 2023.24.2.53 | 15465 | Wednesday, April 6, 2022 | Exempted | |
DWG TrueView 2022.24.1.51 | 80356 | Monday, March 29, 2021 | Approved | |
Autodesk DWG TrueView (64-bit) 2020.01.22 | 35222 | Tuesday, April 14, 2020 | Approved | |
Autodesk DWG TrueView 2020 (64-bit only) 2019.03.27 | 14471 | Sunday, May 5, 2019 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about DWG TrueView and the DWG TrueView package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or DWG TrueView, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.