Autodesk DWG True View 2015 Manual

Autodesk_DWG_TrueView%20_2015_Manual

User Manual:

Open the PDF directly: View PDF PDF.
Page Count: 3

Autodesk DWG TrueView 2015 - Manual
Description
The DWG technology environment contains the capability to mold, render, draw, annotate, and
measure. While it is still commonly associated with AutoCAD, DWG technology.
Package Notes/Comments Copy to all Notes/Comments sections in SCCM creating package.
Free software license.
Download latest version from:
http://www.autodesk.com/products/dwg/viewers
Copy source files to:
\\server\share\Sources\Software Vault\Autodesk DWG Trueview
Create a PowerShell script, Autodesk_DWG_TrueView_2015_Uninstall.ps1, to remove Autodesk DWG
Viewer 2015.
Import setup.exe into SCCM Client Applications as a Script Installer.
Installation program:
"setup.exe"
Uninstall program:
Powershell.exe executionpolicy Bypass file "Autodesk_DWG_TrueView_2015_Uninstall.ps1"
Detection Method: Registry key exists.
Registry hive: HKLM
Registry Key: SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\DWG TrueView 2015 - English
User Experience:
Installation behavior: Install for user
Logon requirement: Only when a user is logged on
Installation program visibility: Normal
Enforce specific behavior: No specific action
Dependencies (list redistributables, runtime, etc,. available for install with SCCM):
Microsoft Visual C++ 2010 Redistributable Package (x64) 10.0.40219
Microsoft Visual C++ 2010 Redistributable Package (x86) 10.0.40219
Microsoft Visual C++ 2012 Redistributable Package (x64) 11.0.61030
Microsoft Visual C++ 2012 Redistributable Package (x86) 11.0.61030
Notes
GUID: DWG TrueView 2015 - English (64bit)
Registry key or file path (used to check if application is installed):
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\DWG TrueView
2015 - English
UninstallString (determines uninstall method to use):
C:\Program Files\Autodesk\DWG TrueView 2015 - English\Setup\Setup.exe /P {5783F2D7-E028-0409-
0100-0060B0CE6BBA} /M AOEM /language en-US
DisplayName: Autodesk DWG TrueView 2015 - English
DisplayVersion: 20.0.51.0
Publisher: Autodesk
Autodesk_DWG_TrueView_2015_Uninstall.ps1
<#
.SYNOPSIS
SCCM Uninstall program for Autodesk DWG TrueView 2015
.DESCRIPTION
Remove the following component(s) from Window 7 x64 systems:
- Autodesk DWG TrueView 2015
.NOTES
FileName: Autodesk_DWG_TrueView_2015_Uninstall.ps1
Author: Jerold Senff
Updated: 02/28/2019
Comments: Powershell.exe executionpolicy bypass file
"Autodesk_DWG_TrueView_2015_Uninstall.ps1"
#>
# Error file
$startLocation = Get-Location
$err=@()
$errorpath = '\ErrorLogs\Autodesk_DWG_TrueView_2015_Uninstall.txt'
$errFileLocation = ${env:SystemDrive} + $errorpath
# Uninstall variables - Autodesk DWG TrueView 2015
$Autodesk = 'Autodesk DWG TrueView 2015'
$AutodeskUninstall = ('"' + ${env:ProgramFiles} + '\Autodesk\DWG TrueView 2015 -
English\Setup\Setup.exe"')
$AudodeskParams = '/P {5783F2D7-E028-0409-0100-0060B0CE6BBA} /M AOEM /language en-US'
$AutodeskRegkey = 'HKLM:SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\DWG
TrueView 2015 - English'
Write-Host ""
Write-Host
"****************************************************************************"
Write-Host ""
Write-Host "$Autodesk Uninstaller"
Write-Host ""
Write-Host "Purpose: Removes the following components:"
Write-Host " - Uninstall $Autodesk"
Write-Host ""
# Uninstall Autodesk DWG TrueView 2015
Set-Location $startLocation
Write-Host
"****************************************************************************"
Write-Host ""
Write-Host "Checking for $Autodesk installation..."
Write-Host ""
If ((Test-Path -Path $AutodeskRegkey) -eq 'True')
{
Write-Host " $Autodesk is installed."
Write-Host ""
Write-Host "Uninstalling $Autodesk..."
Write-Host ""
Write-Host "Command: " $AutodeskUninstall $AudodeskParams
Write-Host ""
Start-Process -FilePath $AutodeskUninstall -ArgumentList $AudodeskParams -
ErrorVariable +err -Verb Open -Wait
Write-Host ""
Write-Host "$Autodesk uninstall complete."
Write-Host ""
}
Else
{
Write-Host " $Autodesk not installed."
Write-Host ""
}
Start-Sleep 5
$err | Out-File $errFileLocation
Write-Host "*** Log file location = " $errFileLocation " ***"
Start-Sleep 5

Navigation menu