Загрузка данных
Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.
Install the latest PowerShell for new features and improvements! https://aka.ms/PSWindows
PS C:\Users\arinagruseva> Get-ChildItem $env:TEMP -Recurse -Filter *.log -Force | Where-Object { $_.LastWriteTime -gt (Get-Date).AddHours(-1) } | Sort-Object LastWriteTime -Descending | Format-Table LastWriteTime, FullName -AutoSize -Wrap
LastWriteTime FullName
------------- --------
8/4/2026 3:57:54 AM C:\Users\arinagruseva\AppData\Local\Temp\Autodesk Revit 2019 Setup.log
8/4/2026 3:57:44 AM C:\Users\arinagruseva\AppData\Local\Temp\cp_Install.log
8/4/2026 3:57:23 AM C:\Users\arinagruseva\AppData\Local\Temp\appIndex.log
8/4/2026 3:57:00 AM C:\Users\arinagruseva\AppData\Local\Temp\RevitCustom.log
8/4/2026 3:56:30 AM C:\Users\arinagruseva\AppData\Local\Temp\RevitAddCustom.log
8/4/2026 3:55:26 AM C:\Users\arinagruseva\AppData\Local\Temp\Autodesk FormIt Add-in for Revit 2019 Install.log
8/4/2026 3:54:28 AM C:\Users\arinagruseva\AppData\Local\Temp\Autodesk DYNAMORevit Add-in for Revit 2019 Install.log
8/4/2026 3:53:55 AM C:\Users\arinagruseva\AppData\Local\Temp\MaterialLibrary2019CMPLM.log
8/4/2026 3:53:42 AM C:\Users\arinagruseva\AppData\Local\Temp\MaterialLibrary2019CMPLL.log
8/4/2026 3:53:37 AM C:\Users\arinagruseva\AppData\Local\Temp\MaterialLibrary2019CMPLB.log
8/4/2026 3:53:32 AM C:\Users\arinagruseva\AppData\Local\Temp\MaterialLibrary2019CMILL.log
8/4/2026 3:53:24 AM C:\Users\arinagruseva\AppData\Local\Temp\MaterialLibrary2019CMILB.log
8/4/2026 3:53:18 AM C:\Users\arinagruseva\AppData\Local\Temp\MaterialLibrary2019CM.log
8/4/2026 3:53:08 AM C:\Users\arinagruseva\AppData\Local\Temp\Autodesk Worksharing Monitor for Revit 2019 Install.log
8/4/2026 3:53:04 AM C:\Users\arinagruseva\AppData\Local\Temp\Autodesk Model Review for Revit 2019 Install.log
8/4/2026 3:53:00 AM C:\Users\arinagruseva\AppData\Local\Temp\Autodesk eTransmit for Revit 2019 Install.log
8/4/2026 3:52:56 AM C:\Users\arinagruseva\AppData\Local\Temp\Autodesk Batch Print for Revit 2019 Install.log
8/4/2026 3:52:52 AM C:\Users\arinagruseva\AppData\Local\Temp\Autodesk Personal Accelerator for Revit 2019 Install.log
8/4/2026 3:52:48 AM C:\Users\arinagruseva\AppData\Local\Temp\Autodesk Collaboration for Revit 2019 Install.log
8/4/2026 3:52:45 AM C:\Users\arinagruseva\AppData\Local\Temp\Workflows 2019 Install.log
8/4/2026 3:52:41 AM C:\Users\arinagruseva\AppData\Local\Temp\Autodesk Revit 2019 Install.log
8/4/2026 3:51:44 AM C:\Users\arinagruseva\AppData\Local\Temp\CLM Install.log
8/4/2026 3:51:37 AM C:\Users\arinagruseva\AppData\Local\Temp\CLM Certificate Install.log
8/4/2026 3:51:25 AM C:\Users\arinagruseva\AppData\Local\Temp\dd_vcredist_amd64_20260804035124.log
8/4/2026 3:51:24 AM C:\Users\arinagruseva\AppData\Local\Temp\dd_vcredist_x86_20260804035124.log
8/4/2026 3:51:24 AM C:\Users\arinagruseva\AppData\Local\Temp\Autodesk Revit Content Libraries 2019 Install.log
8/4/2026 3:48:56 AM C:\Users\arinagruseva\AppData\Local\Temp\vcredist_x64_2015.log
8/4/2026 3:48:56 AM C:\Users\arinagruseva\AppData\Local\Temp\dd_vcredist_arm64_20260804034856.log
8/4/2026 3:48:55 AM C:\Users\arinagruseva\AppData\Local\Temp\vcredist_x86_2015.log
8/4/2026 3:48:51 AM C:\Users\arinagruseva\AppData\Local\Temp\ContentPackUI.log
8/4/2026 3:43:11 AM C:\Users\arinagruseva\AppData\Local\Temp\cv_debug.log
8/4/2026 3:41:22 AM C:\Users\arinagruseva\AppData\Local\Temp\mat-debug-13988.log
PS C:\Users\arinagruseva> Select-String "$env:TEMP\*.log" -Pattern "error status: [1-9]"
PS C:\Users\arinagruseva> Get-Content "$env:LOCALAPPDATA\Autodesk\ODIS\Setup.log" -Tail 60
Get-Content : Cannot find path 'C:\Users\arinagruseva\AppData\Local\Autodesk\ODIS\Setup.log' because it does not exist.
At line:1 char:1
+ Get-Content "$env:LOCALAPPDATA\Autodesk\ODIS\Setup.log" -Tail 60
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (C:\Users\arinag...\ODIS\Setup.log:String) [Get-Content], ItemNotFoundEx
ception
+ FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetContentCommand
PS C:\Users\arinagruseva> Select-String "$env:LOCALAPPDATA\Autodesk\ODIS\Summary.log" -Pattern "Failure|Error code" | Select-Object -Last 20
Select-String : Cannot find path 'C:\Users\arinagruseva\AppData\Local\Autodesk\ODIS\Summary.log' because it does not
exist.
At line:1 char:1
+ Select-String "$env:LOCALAPPDATA\Autodesk\ODIS\Summary.log" -Pattern ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (C:\Users\arinag...DIS\Summary.log:String) [Select-String], ItemNotFound
Exception
+ FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.SelectStringCommand
PS C:\Users\arinagruseva> Get-WinEvent -FilterHashtable @{LogName='Application'; ProviderName='MsiInstaller'; StartTime=(Get-Date).AddHours(-1)} -ErrorAction SilentlyContinue | Select-Object TimeCreated, Id, Message | Format-List
TimeCreated : 8/4/2026 3:57:46 AM
Id : 1042
Message : Ending a Windows Installer transaction: {941030D0-1900-0410-0000-818BB38A95FC}. Client Process Id: 1532.
TimeCreated : 8/4/2026 3:57:44 AM
Id : 1034
Message : Windows Installer removed the product. Product Name: Revit Content Libraries 2019. Product Version:
19.0.0.405. Product Language: 1033. Manufacturer: Autodesk. Removal success or error status: 0.
TimeCreated : 8/4/2026 3:57:44 AM
Id : 11724
Message : Product: Revit Content Libraries 2019 -- Removal completed successfully.
TimeCreated : 8/4/2026 3:57:23 AM
Id : 1040
Message : Beginning a Windows Installer transaction: {941030D0-1900-0410-0000-818BB38A95FC}. Client Process Id:
1532.
TimeCreated : 8/4/2026 3:57:23 AM
Id : 1042
Message : Ending a Windows Installer transaction: {52EBC484-44A1-4DC5-824A-0A503735ABD8}. Client Process Id: 9900.
TimeCreated : 8/4/2026 3:57:21 AM
Id : 1034
Message : Windows Installer removed the product. Product Name: Microsoft SQL Server 2014 Express LocalDB. Product
Version: 12.1.4100.1. Product Language: 1033. Manufacturer: Microsoft Corporation. Removal success or
error status: 0.
TimeCreated : 8/4/2026 3:57:21 AM
Id : 11724
Message : Product: Microsoft SQL Server 2014 Express LocalDB -- Removal completed successfully.
TimeCreated : 8/4/2026 3:57:18 AM
Id : 1040
Message : Beginning a Windows Installer transaction: {52EBC484-44A1-4DC5-824A-0A503735ABD8}. Client Process Id:
9900.
TimeCreated : 8/4/2026 3:57:18 AM
Id : 1042
Message : Ending a Windows Installer transaction: {1C891560-9ECD-4234-8BBD-752AFE0682D7}. Client Process Id: 1684.
TimeCreated : 8/4/2026 3:57:16 AM
Id : 1034
Message : Windows Installer removed the product. Product Name: Autodesk Certificate Package (x64) - 7.1.4.
Product Version: 7.1.4.0. Product Language: 1033. Manufacturer: Autodesk. Removal success or error
status: 0.
TimeCreated : 8/4/2026 3:57:16 AM
Id : 11724
Message : Product: Autodesk Certificate Package (x64) - 7.1.4 -- Removal completed successfully.
TimeCreated : 8/4/2026 3:57:15 AM
Id : 1040
Message : Beginning a Windows Installer transaction: {1C891560-9ECD-4234-8BBD-752AFE0682D7}. Client Process Id:
1684.
TimeCreated : 8/4/2026 3:57:15 AM
Id : 1042
Message : Ending a Windows Installer transaction: {F53D6D10-7A75-4A39-8C53-A3D855C7C50A}. Client Process Id: 4600.
TimeCreated : 8/4/2026 3:57:13 AM
Id : 1034
Message : Windows Installer removed the product. Product Name: Autodesk License Service (x64) - 7.1.4. Product
Version: 7.1.4.0. Product Language: 1033. Manufacturer: Autodesk. Removal success or error status: 0.
TimeCreated : 8/4/2026 3:57:13 AM
Id : 11724
Message : Product: Autodesk License Service (x64) - 7.1.4 -- Removal completed successfully.
TimeCreated : 8/4/2026 3:57:08 AM
Id : 1040
Message : Beginning a Windows Installer transaction: {F53D6D10-7A75-4A39-8C53-A3D855C7C50A}. Client Process Id:
4600.
TimeCreated : 8/4/2026 3:57:08 AM
Id : 1042
Message : Ending a Windows Installer transaction: {7346B4A0-1900-0510-0000-705C0D862004}. Client Process Id: 5396.
TimeCreated : 8/4/2026 3:57:06 AM
Id : 1034
Message : Windows Installer removed the product. Product Name: Revit 2019. Product Version: 19.2.0.65. Product
Language: 1033. Manufacturer: Autodesk. Removal success or error status: 0.
TimeCreated : 8/4/2026 3:57:06 AM
Id : 11724
Message : Product: Revit 2019 - - Removal completed successfully.
TimeCreated : 8/4/2026 3:56:36 AM
Id : 1040
Message : Beginning a Windows Installer transaction: {7346B4A0-1900-0510-0000-705C0D862004}. Client Process Id:
5396.
TimeCreated : 8/4/2026 3:56:36 AM
Id : 1042
Message : Ending a Windows Installer transaction: {F9857F69-9B57-4DF2-8930-7A4D5F8D5635}. Client Process Id: 9540.
TimeCreated : 8/4/2026 3:56:34 AM
Id : 1034
Message : Windows Installer removed the product. Product Name: Autodesk Workflows 2019. Product Version:
17.11.1.0. Product Language: 1033. Manufacturer: Autodesk, Inc.. Removal success or error status: 0.
TimeCreated : 8/4/2026 3:56:34 AM
Id : 11724
Message : Product: Autodesk Workflows 2019 -- Removal completed successfully.
TimeCreated : 8/4/2026 3:56:33 AM
Id : 1040
Message : Beginning a Windows Installer transaction: {F9857F69-9B57-4DF2-8930-7A4D5F8D5635}. Client Process Id:
9540.
TimeCreated : 8/4/2026 3:56:33 AM
Id : 1042
Message : Ending a Windows Installer transaction: {AA384BE4-1901-0010-0000-97E7D7D00B17}. Client Process Id: 8856.
TimeCreated : 8/4/2026 3:56:31 AM
Id : 1034
Message : Windows Installer removed the product. Product Name: Autodesk Collaboration for Revit 2019. Product
Version: 19.2.0.65. Product Language: 1033. Manufacturer: Autodesk. Removal success or error status: 0.
TimeCreated : 8/4/2026 3:56:31 AM
Id : 11724
Message : Product: Autodesk Collaboration for Revit 2019 -- Removal completed successfully.
TimeCreated : 8/4/2026 3:56:29 AM
Id : 1040
Message : Beginning a Windows Installer transaction: {AA384BE4-1901-0010-0000-97E7D7D00B17}. Client Process Id:
8856.
TimeCreated : 8/4/2026 3:56:29 AM
Id : 1042
Message : Ending a Windows Installer transaction: {7C317DB0-F399-4024-A289-92CF4B6FB256}. Client Process Id: 3840.
TimeCreated : 8/4/2026 3:56:27 AM
Id : 1034
Message : Windows Installer removed the product. Product Name: Personal Accelerator for Revit. Product Version:
16.0.1205.0. Product Language: 1033. Manufacturer: Autodesk. Removal success or error status: 0.
TimeCreated : 8/4/2026 3:56:27 AM
Id : 11724
Message : Product: Personal Accelerator for Revit -- Removal completed successfully.
TimeCreated : 8/4/2026 3:56:26 AM
Id : 1040
Message : Beginning a Windows Installer transaction: {7C317DB0-F399-4024-A289-92CF4B6FB256}. Client Process Id:
3840.
TimeCreated : 8/4/2026 3:56:26 AM
Id : 1042
Message : Ending a Windows Installer transaction: {82AF00E4-1901-0010-0000-FCE0F87063F9}. Client Process Id: 7764.
TimeCreated : 8/4/2026 3:56:24 AM
Id : 1034
Message : Windows Installer removed the product. Product Name: Batch Print for Autodesk Revit 2019. Product
Version: 19.0.0.405. Product Language: 1033. Manufacturer: Autodesk. Removal success or error status: 0.
TimeCreated : 8/4/2026 3:56:24 AM
Id : 11724
Message : Product: Batch Print for Autodesk Revit 2019 -- Removal completed successfully.
TimeCreated : 8/4/2026 3:56:23 AM
Id : 1040
Message : Beginning a Windows Installer transaction: {82AF00E4-1901-0010-0000-FCE0F87063F9}. Client Process Id:
7764.
TimeCreated : 8/4/2026 3:56:23 AM
Id : 1042
Message : Ending a Windows Installer transaction: {4477F08B-1901-0010-0000-9A09D834DFF5}. Client Process Id: 3468.
TimeCreated : 8/4/2026 3:56:21 AM
Id : 1034
Message : Windows Installer removed the product. Product Name: eTransmit for Autodesk Revit 2019. Product Version:
19.0.0.405. Product Language: 1033. Manufacturer: Autodesk. Removal success or error status: 0.
TimeCreated : 8/4/2026 3:56:21 AM
Id : 11724
Message : Product: eTransmit for Autodesk Revit 2019 -- Removal completed successfully.
TimeCreated : 8/4/2026 3:56:19 AM
Id : 1040
Message : Beginning a Windows Installer transaction: {4477F08B-1901-0010-0000-9A09D834DFF5}. Client Process Id:
3468.
TimeCreated : 8/4/2026 3:56:19 AM
Id : 1042
Message : Ending a Windows Installer transaction: {715812E8-1901-0010-0000-BBB894911B46}. Client Process Id: 1244.
TimeCreated : 8/4/2026 3:56:17 AM
Id : 1034
Message : Windows Installer removed the product. Product Name: Autodesk Revit Model Review 2019. Product Version:
19.0.0.405. Product Language: 1033. Manufacturer: Autodesk. Removal success or error status: 0.
TimeCreated : 8/4/2026 3:56:17 AM
Id : 11724
Message : Product: Autodesk Revit Model Review 2019 -- Removal completed successfully.
TimeCreated : 8/4/2026 3:56:16 AM
Id : 1040
Message : Beginning a Windows Installer transaction: {715812E8-1901-0010-0000-BBB894911B46}. Client Process Id:
1244.
TimeCreated : 8/4/2026 3:56:16 AM
Id : 1042
Message : Ending a Windows Installer transaction: {5063E738-1901-0010-0000-7B7B9AB0B696}. Client Process Id: 6700.
TimeCreated : 8/4/2026 3:56:14 AM
Id : 1034
Message : Windows Installer removed the product. Product Name: Worksharing Monitor for Autodesk Revit 2019.
Product Version: 19.0.0.405. Product Language: 1033. Manufacturer: Autodesk. Removal success or error
status: 0.
TimeCreated : 8/4/2026 3:56:14 AM
Id : 11724
Message : Product: Worksharing Monitor for Autodesk Revit 2019 -- Removal completed successfully.
TimeCreated : 8/4/2026 3:56:12 AM
Id : 1040
Message : Beginning a Windows Installer transaction: {5063E738-1901-0010-0000-7B7B9AB0B696}. Client Process Id:
6700.
TimeCreated : 8/4/2026 3:56:12 AM
Id : 1042
Message : Ending a Windows Installer transaction: {8F69EE2C-DC34-4746-9B47-7511147BD4B0}. Client Process Id: 5148.
TimeCreated : 8/4/2026 3:56:10 AM
Id : 1034
Message : Windows Installer removed the product. Product Name: Autodesk Material Library 2019. Product Version:
17.11.3.0. Product Language: 1033. Manufacturer: Autodesk. Removal success or error status: 0.
TimeCreated : 8/4/2026 3:56:10 AM
Id : 11724
Message : Product: Autodesk Material Library 2019 -- Removal completed successfully.
TimeCreated : 8/4/2026 3:56:04 AM
Id : 1040
Message : Beginning a Windows Installer transaction: {8F69EE2C-DC34-4746-9B47-7511147BD4B0}. Client Process Id:
5148.
TimeCreated : 8/4/2026 3:56:04 AM
Id : 1042
Message : Ending a Windows Installer transaction: {3AAA4C1B-51DA-487D-81A3-4234DBB9A8F9}. Client Process Id: 9176.
TimeCreated : 8/4/2026 3:56:02 AM
Id : 1034
Message : Windows Installer removed the product. Product Name: Autodesk Material Library Base Resolution Image
Library 2019. Product Version: 17.11.3.0. Product Language: 1033. Manufacturer: Autodesk. Removal
success or error status: 0.
TimeCreated : 8/4/2026 3:56:02 AM
Id : 11724
Message : Product: Autodesk Material Library Base Resolution Image Library 2019 -- Removal completed successfully.
TimeCreated : 8/4/2026 3:55:58 AM
Id : 1040
Message : Beginning a Windows Installer transaction: {3AAA4C1B-51DA-487D-81A3-4234DBB9A8F9}. Client Process Id:
9176.
TimeCreated : 8/4/2026 3:55:58 AM
Id : 1042
Message : Ending a Windows Installer transaction: {77F779B8-3262-4014-97E9-36D6933A1904}. Client Process Id: 10556.
TimeCreated : 8/4/2026 3:55:56 AM
Id : 1034
Message : Windows Installer removed the product. Product Name: Autodesk Material Library Low Resolution Image
Library 2019. Product Version: 17.11.3.0. Product Language: 1033. Manufacturer: Autodesk. Removal
success or error status: 0.
TimeCreated : 8/4/2026 3:55:56 AM
Id : 11724
Message : Product: Autodesk Material Library Low Resolution Image Library 2019 -- Removal completed successfully.
TimeCreated : 8/4/2026 3:55:53 AM
Id : 1040
Message : Beginning a Windows Installer transaction: {77F779B8-3262-4014-97E9-36D6933A1904}. Client Process Id:
10556.
TimeCreated : 8/4/2026 3:55:53 AM
Id : 1042
Message : Ending a Windows Installer transaction: {105181A1-013C-4EE7-A368-999FD7ED950A}. Client Process Id: 5044.
TimeCreated : 8/4/2026 3:55:51 AM
Id : 1034
Message : Windows Installer removed the product. Product Name: Autodesk Advanced Material Library Base Resolution
Image Library 2019. Product Version: 17.11.3.0. Product Language: 1033. Manufacturer: Autodesk. Removal
success or error status: 0.
TimeCreated : 8/4/2026 3:55:51 AM
Id : 11724
Message : Product: Autodesk Advanced Material Library Base Resolution Image Library 2019 -- Removal completed
successfully.
TimeCreated : 8/4/2026 3:55:49 AM
Id : 1040
Message : Beginning a Windows Installer transaction: {105181A1-013C-4EE7-A368-999FD7ED950A}. Client Process Id:
5044.
TimeCreated : 8/4/2026 3:55:49 AM
Id : 1042
Message : Ending a Windows Installer transaction: {ACC0DD09-7E20-4792-87D5-BDBE40206584}. Client Process Id: 10716.
TimeCreated : 8/4/2026 3:55:47 AM
Id : 1034
Message : Windows Installer removed the product. Product Name: Autodesk Advanced Material Library Low Resolution
Image Library 2019. Product Version: 17.11.3.0. Product Language: 1033. Manufacturer: Autodesk. Removal
success or error status: 0.
TimeCreated : 8/4/2026 3:55:47 AM
Id : 11724
Message : Product: Autodesk Advanced Material Library Low Resolution Image Library 2019 -- Removal completed
successfully.
TimeCreated : 8/4/2026 3:55:45 AM
Id : 1040
Message : Beginning a Windows Installer transaction: {ACC0DD09-7E20-4792-87D5-BDBE40206584}. Client Process Id:
10716.
TimeCreated : 8/4/2026 3:55:45 AM
Id : 1042
Message : Ending a Windows Installer transaction: {078698AF-8BB1-4631-86D0-D91FEE147256}. Client Process Id: 5464.
TimeCreated : 8/4/2026 3:55:43 AM
Id : 1034
Message : Windows Installer removed the product. Product Name: Autodesk Advanced Material Library Medium
Resolution Image Library 2019. Product Version: 17.11.3.0. Product Language: 1033. Manufacturer:
Autodesk. Removal success or error status: 0.
TimeCreated : 8/4/2026 3:55:43 AM
Id : 11724
Message : Product: Autodesk Advanced Material Library Medium Resolution Image Library 2019 -- Removal completed
successfully.
TimeCreated : 8/4/2026 3:55:41 AM
Id : 1040
Message : Beginning a Windows Installer transaction: {078698AF-8BB1-4631-86D0-D91FEE147256}. Client Process Id:
5464.
TimeCreated : 8/4/2026 3:55:40 AM
Id : 1042
Message : Ending a Windows Installer transaction: {1EBADAEA-1A0F-40E3-848C-0DD8C5E5A10D}. Client Process Id: 10380.
TimeCreated : 8/4/2026 3:55:38 AM
Id : 1034
Message : Windows Installer removed the product. Product Name: IronPython 2.7.3. Product Version: 2.7.31000.0.
Product Language: 1033. Manufacturer: IronPython Team. Removal success or error status: 0.
TimeCreated : 8/4/2026 3:55:38 AM
Id : 11724
Message : Product: IronPython 2.7.3 -- Removal completed successfully.
TimeCreated : 8/4/2026 3:55:32 AM
Id : 1040
Message : Beginning a Windows Installer transaction: {1EBADAEA-1A0F-40E3-848C-0DD8C5E5A10D}. Client Process Id:
10380.
TimeCreated : 8/4/2026 3:55:31 AM
Id : 1042
Message : Ending a Windows Installer transaction: {60761FA6-E5EC-4DC2-A6D8-051DCC2A4C66}. Client Process Id: 6156.
TimeCreated : 8/4/2026 3:55:29 AM
Id : 1034
Message : Windows Installer removed the product. Product Name: Dynamo Revit 1.3.4. Product Version: 1.3.4.6666.
Product Language: 1033. Manufacturer: Dynamo. Removal success or error status: 0.
TimeCreated : 8/4/2026 3:55:29 AM
Id : 11724
Message : Product: Dynamo Revit 1.3.4 -- Removal completed successfully.
TimeCreated : 8/4/2026 3:55:26 AM
Id : 1040
Message : Beginning a Windows Installer transaction: {60761FA6-E5EC-4DC2-A6D8-051DCC2A4C66}. Client Process Id:
6156.
TimeCreated : 8/4/2026 3:55:26 AM
Id : 1042
Message : Ending a Windows Installer transaction: E:\x64\FormIt\FormItConverter2019.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:54:28 AM
Id : 1040
Message : Beginning a Windows Installer transaction: E:\x64\FormIt\FormItConverter2019.msi. Client Process Id:
5992.
TimeCreated : 8/4/2026 3:54:28 AM
Id : 1042
Message : Ending a Windows Installer transaction: E:\x64\DYN\DynamoRevit.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:54:26 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Dynamo Revit 1.3.4. Product Version: 1.3.4.6666.
Product Language: 1033. Manufacturer: Dynamo. Installation success or error status: 0.
TimeCreated : 8/4/2026 3:54:26 AM
Id : 11707
Message : Product: Dynamo Revit 1.3.4 -- Installation completed successfully.
TimeCreated : 8/4/2026 3:54:15 AM
Id : 1040
Message : Beginning a Windows Installer transaction: E:\x64\DYN\DynamoRevit.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:54:02 AM
Id : 1042
Message : Ending a Windows Installer transaction: E:\x64\Tools\IronPython-2.7.3.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:53:59 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: IronPython 2.7.3. Product Version: 2.7.31000.0.
Product Language: 1033. Manufacturer: IronPython Team. Installation success or error status: 0.
TimeCreated : 8/4/2026 3:53:59 AM
Id : 11707
Message : Product: IronPython 2.7.3 -- Installation completed successfully.
TimeCreated : 8/4/2026 3:53:55 AM
Id : 1040
Message : Beginning a Windows Installer transaction: E:\x64\Tools\IronPython-2.7.3.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:53:55 AM
Id : 1042
Message : Ending a Windows Installer transaction:
E:\Content\ADSKMaterials\2019\PLM\PrismMediumImageLibrary2019.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:53:53 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Autodesk Advanced Material Library Medium
Resolution Image Library 2019. Product Version: 17.11.3.0. Product Language: 1033. Manufacturer:
Autodesk. Installation success or error status: 0.
TimeCreated : 8/4/2026 3:53:53 AM
Id : 11707
Message : Product: Autodesk Advanced Material Library Medium Resolution Image Library 2019 -- Installation
completed successfully.
TimeCreated : 8/4/2026 3:53:42 AM
Id : 1040
Message : Beginning a Windows Installer transaction:
E:\Content\ADSKMaterials\2019\PLM\PrismMediumImageLibrary2019.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:53:42 AM
Id : 1042
Message : Ending a Windows Installer transaction: E:\Content\ADSKMaterials\2019\PLL\PrismLowImageLibrary2019.msi.
Client Process Id: 5992.
TimeCreated : 8/4/2026 3:53:39 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Autodesk Advanced Material Library Low Resolution
Image Library 2019. Product Version: 17.11.3.0. Product Language: 1033. Manufacturer: Autodesk.
Installation success or error status: 0.
TimeCreated : 8/4/2026 3:53:39 AM
Id : 11707
Message : Product: Autodesk Advanced Material Library Low Resolution Image Library 2019 -- Installation completed
successfully.
TimeCreated : 8/4/2026 3:53:37 AM
Id : 1040
Message : Beginning a Windows Installer transaction:
E:\Content\ADSKMaterials\2019\PLL\PrismLowImageLibrary2019.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:53:37 AM
Id : 1042
Message : Ending a Windows Installer transaction: E:\Content\ADSKMaterials\2019\PLB\PrismBaseImageLibrary2019.msi.
Client Process Id: 5992.
TimeCreated : 8/4/2026 3:53:35 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Autodesk Advanced Material Library Base
Resolution Image Library 2019. Product Version: 17.11.3.0. Product Language: 1033. Manufacturer:
Autodesk. Installation success or error status: 0.
TimeCreated : 8/4/2026 3:53:35 AM
Id : 11707
Message : Product: Autodesk Advanced Material Library Base Resolution Image Library 2019 -- Installation completed
successfully.
TimeCreated : 8/4/2026 3:53:32 AM
Id : 1040
Message : Beginning a Windows Installer transaction:
E:\Content\ADSKMaterials\2019\PLB\PrismBaseImageLibrary2019.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:53:32 AM
Id : 1042
Message : Ending a Windows Installer transaction: E:\Content\ADSKMaterials\2019\ILL\LowImageLibrary2019.msi.
Client Process Id: 5992.
TimeCreated : 8/4/2026 3:53:30 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Autodesk Material Library Low Resolution Image
Library 2019. Product Version: 17.11.3.0. Product Language: 1033. Manufacturer: Autodesk. Installation
success or error status: 0.
TimeCreated : 8/4/2026 3:53:30 AM
Id : 11707
Message : Product: Autodesk Material Library Low Resolution Image Library 2019 -- Installation completed
successfully.
TimeCreated : 8/4/2026 3:53:24 AM
Id : 1040
Message : Beginning a Windows Installer transaction: E:\Content\ADSKMaterials\2019\ILL\LowImageLibrary2019.msi.
Client Process Id: 5992.
TimeCreated : 8/4/2026 3:53:24 AM
Id : 1042
Message : Ending a Windows Installer transaction: E:\Content\ADSKMaterials\2019\ILB\BaseImageLibrary2019.msi.
Client Process Id: 5992.
TimeCreated : 8/4/2026 3:53:22 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Autodesk Material Library Base Resolution Image
Library 2019. Product Version: 17.11.3.0. Product Language: 1033. Manufacturer: Autodesk. Installation
success or error status: 0.
TimeCreated : 8/4/2026 3:53:22 AM
Id : 11707
Message : Product: Autodesk Material Library Base Resolution Image Library 2019 -- Installation completed
successfully.
TimeCreated : 8/4/2026 3:53:18 AM
Id : 1040
Message : Beginning a Windows Installer transaction: E:\Content\ADSKMaterials\2019\ILB\BaseImageLibrary2019.msi.
Client Process Id: 5992.
TimeCreated : 8/4/2026 3:53:18 AM
Id : 1042
Message : Ending a Windows Installer transaction: E:\Content\ADSKMaterials\2019\CM\MaterialLibrary2019.msi. Client
Process Id: 5992.
TimeCreated : 8/4/2026 3:53:16 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Autodesk Material Library 2019. Product Version:
17.11.3.0. Product Language: 1033. Manufacturer: Autodesk. Installation success or error status: 0.
TimeCreated : 8/4/2026 3:53:16 AM
Id : 11707
Message : Product: Autodesk Material Library 2019 -- Installation completed successfully.
TimeCreated : 8/4/2026 3:53:08 AM
Id : 1040
Message : Beginning a Windows Installer transaction: E:\Content\ADSKMaterials\2019\CM\MaterialLibrary2019.msi.
Client Process Id: 5992.
TimeCreated : 8/4/2026 3:53:08 AM
Id : 1042
Message : Ending a Windows Installer transaction: E:\x64\RWSM\RWSM.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:53:06 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Worksharing Monitor for Autodesk Revit 2019.
Product Version: 19.0.0.405. Product Language: 1033. Manufacturer: Autodesk. Installation success or
error status: 0.
TimeCreated : 8/4/2026 3:53:06 AM
Id : 11707
Message : Product: Worksharing Monitor for Autodesk Revit 2019 -- Installation completed successfully.
TimeCreated : 8/4/2026 3:53:04 AM
Id : 1040
Message : Beginning a Windows Installer transaction: E:\x64\RWSM\RWSM.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:53:04 AM
Id : 1042
Message : Ending a Windows Installer transaction: E:\x64\RMR\RMR.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:53:02 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Autodesk Revit Model Review 2019. Product
Version: 19.0.0.405. Product Language: 1033. Manufacturer: Autodesk. Installation success or error
status: 0.
TimeCreated : 8/4/2026 3:53:02 AM
Id : 11707
Message : Product: Autodesk Revit Model Review 2019 -- Installation completed successfully.
TimeCreated : 8/4/2026 3:53:00 AM
Id : 1040
Message : Beginning a Windows Installer transaction: E:\x64\RMR\RMR.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:53:00 AM
Id : 1042
Message : Ending a Windows Installer transaction: E:\x64\RET\RET.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:52:58 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: eTransmit for Autodesk Revit 2019. Product
Version: 19.0.0.405. Product Language: 1033. Manufacturer: Autodesk. Installation success or error
status: 0.
TimeCreated : 8/4/2026 3:52:58 AM
Id : 11707
Message : Product: eTransmit for Autodesk Revit 2019 -- Installation completed successfully.
TimeCreated : 8/4/2026 3:52:56 AM
Id : 1040
Message : Beginning a Windows Installer transaction: E:\x64\RET\RET.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:52:56 AM
Id : 1042
Message : Ending a Windows Installer transaction: E:\x64\RBPU\RBPU.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:52:54 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Batch Print for Autodesk Revit 2019. Product
Version: 19.0.0.405. Product Language: 1033. Manufacturer: Autodesk. Installation success or error
status: 0.
TimeCreated : 8/4/2026 3:52:54 AM
Id : 11707
Message : Product: Batch Print for Autodesk Revit 2019 -- Installation completed successfully.
TimeCreated : 8/4/2026 3:52:53 AM
Id : 1040
Message : Beginning a Windows Installer transaction: E:\x64\RBPU\RBPU.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:52:52 AM
Id : 1042
Message : Ending a Windows Installer transaction: E:\x64\PACR\PACR.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:52:50 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Personal Accelerator for Revit. Product Version:
16.0.1205.0. Product Language: 1033. Manufacturer: Autodesk. Installation success or error status: 0.
TimeCreated : 8/4/2026 3:52:50 AM
Id : 11707
Message : Product: Personal Accelerator for Revit -- Installation completed successfully.
TimeCreated : 8/4/2026 3:52:48 AM
Id : 1040
Message : Beginning a Windows Installer transaction: E:\x64\PACR\PACR.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:52:48 AM
Id : 1042
Message : Ending a Windows Installer transaction: E:\x64\RCAO\RCAO.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:52:46 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Autodesk Collaboration for Revit 2019. Product
Version: 19.2.0.65. Product Language: 1033. Manufacturer: Autodesk. Installation success or error
status: 0.
TimeCreated : 8/4/2026 3:52:46 AM
Id : 11707
Message : Product: Autodesk Collaboration for Revit 2019 -- Installation completed successfully.
TimeCreated : 8/4/2026 3:52:45 AM
Id : 1040
Message : Beginning a Windows Installer transaction: E:\x64\RCAO\RCAO.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:52:45 AM
Id : 1042
Message : Ending a Windows Installer transaction: E:\3rdParty\x64\Workflows\Workflow_x64.msi. Client Process Id:
5992.
TimeCreated : 8/4/2026 3:52:43 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Autodesk Workflows 2019. Product Version:
17.11.1.0. Product Language: 1033. Manufacturer: Autodesk, Inc.. Installation success or error status: 0.
TimeCreated : 8/4/2026 3:52:43 AM
Id : 11707
Message : Product: Autodesk Workflows 2019 -- Installation completed successfully.
TimeCreated : 8/4/2026 3:52:41 AM
Id : 1040
Message : Beginning a Windows Installer transaction: E:\3rdParty\x64\Workflows\Workflow_x64.msi. Client Process
Id: 5992.
TimeCreated : 8/4/2026 3:52:41 AM
Id : 1042
Message : Ending a Windows Installer transaction: E:\x64\RVT\RVT.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:52:37 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Revit 2019. Product Version: 19.2.0.65. Product
Language: 1033. Manufacturer: Autodesk. Installation success or error status: 0.
TimeCreated : 8/4/2026 3:52:37 AM
Id : 11707
Message : Product: Revit 2019 - - Installation operation completed successfully.
TimeCreated : 8/4/2026 3:51:44 AM
Id : 1040
Message : Beginning a Windows Installer transaction: E:\x64\RVT\RVT.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:51:44 AM
Id : 1042
Message : Ending a Windows Installer transaction: E:\x64\CLM\CLIC_x64_Release.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:51:43 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Autodesk License Service (x64) - 7.1.4. Product
Version: 7.1.4.0. Product Language: 1033. Manufacturer: Autodesk. Installation success or error status:
0.
TimeCreated : 8/4/2026 3:51:43 AM
Id : 11707
Message : Product: Autodesk License Service (x64) - 7.1.4 -- Installation completed successfully.
TimeCreated : 8/4/2026 3:51:37 AM
Id : 1040
Message : Beginning a Windows Installer transaction: E:\x64\CLM\CLIC_x64_Release.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:51:37 AM
Id : 1042
Message : Ending a Windows Installer transaction: E:\x64\CLM\CLIC_x64_Release_certificate.msi. Client Process Id:
5992.
TimeCreated : 8/4/2026 3:51:36 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Autodesk Certificate Package (x64) - 7.1.4.
Product Version: 7.1.4.0. Product Language: 1033. Manufacturer: Autodesk. Installation success or error
status: 0.
TimeCreated : 8/4/2026 3:51:36 AM
Id : 11707
Message : Product: Autodesk Certificate Package (x64) - 7.1.4 -- Installation completed successfully.
TimeCreated : 8/4/2026 3:51:35 AM
Id : 1040
Message : Beginning a Windows Installer transaction: E:\x64\CLM\CLIC_x64_Release_certificate.msi. Client Process
Id: 5992.
TimeCreated : 8/4/2026 3:51:35 AM
Id : 1042
Message : Ending a Windows Installer transaction: E:\3rdParty\x64\Sql\SqlLocalDB.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:51:32 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Microsoft SQL Server 2014 Express LocalDB.
Product Version: 12.1.4100.1. Product Language: 1033. Manufacturer: Microsoft Corporation. Installation
success or error status: 0.
TimeCreated : 8/4/2026 3:51:32 AM
Id : 11707
Message : Product: Microsoft SQL Server 2014 Express LocalDB -- Installation completed successfully.
TimeCreated : 8/4/2026 3:51:25 AM
Id : 1040
Message : Beginning a Windows Installer transaction: E:\3rdParty\x64\Sql\SqlLocalDB.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:51:24 AM
Id : 1042
Message : Ending a Windows Installer transaction: E:\x64\RCL\RCL.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:51:24 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Revit Content Libraries 2019. Product Version:
19.0.0.405. Product Language: 1033. Manufacturer: Autodesk. Installation success or error status: 0.
TimeCreated : 8/4/2026 3:51:24 AM
Id : 11707
Message : Product: Revit Content Libraries 2019 -- Installation completed successfully.
TimeCreated : 8/4/2026 3:48:56 AM
Id : 1040
Message : Beginning a Windows Installer transaction: E:\x64\RCL\RCL.msi. Client Process Id: 5992.
TimeCreated : 8/4/2026 3:48:41 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Autodesk Revit 2019 MEP Fabrication Configuration
- Metric. Product Version: 2.2. Product Language: 1033. Manufacturer: Autodesk. Installation success or
error status: 0.
TimeCreated : 8/4/2026 3:48:41 AM
Id : 11707
Message : Product: Autodesk Revit 2019 MEP Fabrication Configuration - Metric -- Installation completed
successfully.
TimeCreated : 8/4/2026 3:48:41 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Autodesk Revit 2019 MEP Fabrication Configuration
- Imperial. Product Version: 2.2. Product Language: 1033. Manufacturer: Autodesk. Installation success
or error status: 0.
TimeCreated : 8/4/2026 3:48:41 AM
Id : 11707
Message : Product: Autodesk Revit 2019 MEP Fabrication Configuration - Imperial -- Installation completed
successfully.
TimeCreated : 8/4/2026 3:48:41 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Autodesk Material Library Medium Resolution Image
Library 2019. Product Version: 17.11.3.0. Product Language: 1033. Manufacturer: Autodesk. Installation
success or error status: 0.
TimeCreated : 8/4/2026 3:48:41 AM
Id : 11707
Message : Product: Autodesk Material Library Medium Resolution Image Library 2019 -- Installation completed
successfully.
TimeCreated : 8/4/2026 3:48:40 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Revit Content Libraries 2019. Product Version:
19.0.0.405. Product Language: 1033. Manufacturer: Autodesk. Installation success or error status: 0.
TimeCreated : 8/4/2026 3:48:40 AM
Id : 11707
Message : Product: Revit Content Libraries 2019 -- Installation completed successfully.
TimeCreated : 8/4/2026 3:46:57 AM
Id : 1033
Message : Windows Installer installed the product. Product Name: Revit 2019. Product Version: 19.2.0.65. Product
Language: 1033. Manufacturer: Autodesk. Installation success or error status: 0.
TimeCreated : 8/4/2026 3:46:57 AM
Id : 11707
Message : Product: Revit 2019 - - Installation operation completed successfully.
PS C:\Users\arinagruseva>