Quantcast
Channel: All Revit API Forum posts
Viewing all 66641 articles
Browse latest View live

Re: Unitechnik CAD-CAM interface - UXML

$
0
0

Search the Internet for 'unitechnik uxml':

 

 

That turned up useful results for me, at last. Actually, all of them initially seemed pertinent.

 

However, after looking through some of those first hits, I can see that they say nothing about plotter interfaces or the file format.

 

Well, that's how it goes if people put more effort into marketing than sharing technology.

 

I suggest you ask your plotter vendor or these Unitechnik guys.

 

They must certainly have the file format specification accessible online somewhere.

 

 

 


Re: Unitechnik CAD-CAM interface - UXML

$
0
0

Hi Jeremy,

 

Thanks a lot.

I did try that web page and submit my requests for a few times, but I did not receive anything, unfortunately.

Re: Unitechnik CAD-CAM interface - UXML

$
0
0

Well, I've never even heard of them or their file format. so you are at an advantage there  🙂

 

Re: Dimension on Hatch Pattern Slab

$
0
0

Given a dimension from  method, you can get a the dimension line and the dimension segments, using the dimension line direction, a segment origin, and a segment value, you can get two parallel lines for the model pattern in XYZ coordinates. Intersect these with the floor face edges, and you have 2 grids, repeat it several times, you should have all the model pattern lines.

Have a look at the helper method posted by  in this post:

 

https://forums.autodesk.com/t5/revit-api-forum/use-of-align-function-programatically-to-change-the-alignment-of/m-p/7350967/highlight/true#M24949

 

 

Re: Dimension on Hatch Pattern Slab

$
0
0

  You're right, I can get the segment origin, totally forgot, today is a Friday after all!! Thanks.

Re: Place a Family instance along selected another family instance edge

$
0
0

Hi,

I forget to post the solution which i found.

 

Edge selEdge = RevitActions.Instance.GetInstanceEdgeFromSymbolRef(LeftSideEdge);
Curve refcurve = selEdge.AsCurve().CreateReversed();

 

After extracting the curve i reversed it. But still i couldn't understand, placement of family working fine while doing manually, if i use the api i need to reverse it.

Another Security Addin windows pop-up after adding winform

$
0
0

Hi,

Hi, i have multiple external command created and dock it into it's own Revit tab. however, when i add a winform to one of the commands it is now asking me for another security addin pop-up window when Revit launch. as you can see in GiF. Is there a way to get it rid of this? gif.gif

 

here is my code for External Command interface:

[Transaction(Autodesk.Revit.Attributes.TransactionMode.Manual)]
    public class DeleteUnusedFilter : IExternalCommand
    {
        public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
        {
            UIDocument uidoc = commandData.Application.ActiveUIDocument;
            Document doc = uidoc.Document;
                 var Form = new DeleteFilter(commandData);
                try
                {
                    var fltr = new FilterData(doc).GetUnusedFilter();
                    if (fltr.Count == 0)
                    {
                        MessageInfo.Display("No unused View Filters in Document");
                        Form.Close();
                    return Result.Cancelled;
                    }

                    Form.ShowDialog();
                    return Autodesk.Revit.UI.Result.Succeeded;
                }
                catch (Exception ex)
                {
                   
                    message = ex.Message;
                    return Autodesk.Revit.UI.Result.Failed;
                }
    
        }
    }

Here is for Winform:

  public partial class DeleteFilter : System.Windows.Forms.Form
    {
        Document doc;
        List<Element> FiltersToDelete;

        public DeleteFilter(ExternalCommandData commandData)
        {
            InitializeComponent();
            doc = commandData.Application.ActiveUIDocument.Document;
        }



        private void DeleteFilter_Load(object sender, EventArgs e)
        {
            callonload();


        }
    }

Here is for UiApplication:

 

 //ribbon for delete unused filter
            string path3 = Assembly.GetExecutingAssembly().Location;
            var button3 = new PushButtonData("Button2", "Delete\n Unused Filter", path2, "RevitCode.DeleteUnusedFilter");
            var panel3 = application.CreateRibbonPanel("Angelo Tools", "Delete");
            Uri imagePath3 = new Uri(@"C:\ProgramData\Autodesk\Revit\Addins\2019\icon\DeleteFtr.png");
            BitmapImage image3 = new BitmapImage(imagePath3);
            button3.ToolTip = "Delete Unused View Filters";
            PushButton Push_button3 = panel3.AddItem(button3) as PushButton;
            Push_button3.LargeImage = image3;

Thanks in Advance!

Re: How to remove security dialog when loading signed add-in?

$
0
0

Dear Perry,

 

Thank you for your query.

 

I am checking with the development team for you.

 

I hope to hear back from them soon and will let you know as soon as I do.

 

Best regards,

 

Jeremy

 


Re: Another Security Addin windows pop-up after adding winform

$
0
0

This is normal and expected.

  

You can get rid of them either by clicking 'load always' or by signing your add-in.

 

For more details, please refer to the Revit API online help documentation on 'Digitally Signing Your App':

  

https://help.autodesk.com/view/RVT/2020/ENU/?guid=Revit_API_Revit_API_Developers_Guide_Introduction_Add_In_Integration_Digitally_Signing_Your_Revit_Add_in_Digitally_Signing_Your_App_html

  

You can also take a look at previous discussions of this topic in the threads on

 

  

Re: Another Security Addin windows pop-up after adding winform

$
0
0

Thanks Jeremy i'll read the link. i thought it is posible to be removed coz one popup screen is just fine.

How to Unlock Sill Height dimension by C# code

$
0
0

I try to unlock the "Sill Height dimension" of a new family create by C# code. The family is create using a Revit generic template with a wall as host and several components are added in the process.

 

My final Revit Family work well but the "Sill Height dimension" is locked, with the indications from this Autodesk post "https://knowledge.autodesk.com/support/revit-products/troubleshooting/caas/sfdcarticles/sfdcarticles/How-to-unlock-Window-Family-Sill-Height-in-Revit.html" I know how to get the result by using Revit dialogs but what I need is make the change by C# code when the Family is created and before inserted in the Revit Project.

 

Get Started with Unity Reflect to import Revit Models

$
0
0

I do not have access to Revit (I am on a Mac) and want to try out the Reflect plugin for Unity. So I downloaded a demo Revit Project and put it into the Assets folder of the unity project. But the Reflect Plugin does not find the file.

So, question:

Do Revit projects need to get exported in special manner to be seen by Reflect?

I have seen demo videos, where they are simply press save in Revit and the Reflect plugin loads the file automatically.

How can that be achieved?

thanks 

Re: Another Security Addin windows pop-up after adding winform

$
0
0

Also answered your StackOverflow question on this, adding two more pertinent sentences:

 

Each individual external command and external application is individually checked.

 

Therefore, adding a new external command with its new Windows form will produce a new security check.

 

Installing Revit/Moving all autodesk files from c drive to d drive

$
0
0

I am trying to download revit on my computer and it wont allow me to change the installation directory from the C drive(which has no space) to my D drive(which has 800gb of space)

 

I have went online to try and find the solution, and it seemed like i have to uninstall *ALL* the autodesk programmes, and reinstall it into my D drive in order to download revit(which would require all of the autodesk plugin and programmes to be on the same drive. 

 

do you think its possible for me to just drag and copy all the files related to autodesk from my C drive to my D drive?(although it will take 15 hours) and just delete the autodesk file in C drive afterwards

Re: How to create a NURBS Surface given a gird of XYZ points

$
0
0

I have been working on this for quite a while. I calculated the control points of URBS Surface from a grid of surface XYZ points by solving a system of linear equations, and create the NURBS Surface using BRepBuilderSurfaceGeometry.CreateNURBSSurface. I then used the URBS Surface in BRepBuilder to create the solid. For some cases, I can get the correct solid. But for others, I got various kinds of internal exceptions.

I found the following link posted in 2014:

https://forums.autodesk.com/t5/revit-api-forum/nurbspline-creation-error/td-p/4831565

The development team said the Revit NURBS spline functions are limited. I’d like to know if the NURBS surface and spline have been improved since then. Could anyone please tell me if my approach to create a solid is the right way?

 

I do not use GeometryCreationUtilities because it also throws internal exceptions, as explained in one of my posts:

https://forums.autodesk.com/t5/revit-api-forum/createsweptblendgeometry-failed/td-p/9058479

 

Thanks,

 


Re: How to Unlock Sill Height dimension by C# code

$
0
0

You can easily achieve that by accessing the dimension and setting its IsLocked property:

 

https://www.revitapidocs.com/2020/496d64c6-3642-577d-7631-96956baed820.htm

 

To see how to retrieve it, use RevitLookup to explore the database, the dimension, its relationships and member data.

 

Here is a description how to research to solve a Revit API programming task:

 

https://thebuildingcoder.typepad.com/blog/2017/01/virtues-of-reproduction-research-mep-settings-ontology.html#3

 

Of course, this assumes that you know the basics of creating Revit add-ins.

 

If not, please refer to the getting started material:

 

https://thebuildingcoder.typepad.com/blog/about-the-author.html#2

 

Good luck and have fun!

 

Re: Get Started with Unity Reflect to import Revit Models

$
0
0

Question: Do Revit projects need to get exported in special manner to be seen by Reflect?

 

Answer: Yes. If Unity cannot natively read RVT, which I very much doubt, you will have so use some other method or file format to transport the model data. glTF?

 

Question: demo videos where they are simply press 'save' in Revit and the Reflect plugin loads the file automatically.

How can that be achieved?

 

Answer: In many ways. One possibility would be to implement a Revit add-in that reacts to the DocumentSaved event and exports the Revit model to some other file format that Unity or some Unity plugin can read.

  

Re: Installing Revit/Moving all autodesk files from c drive to d drive

$
0
0

Unfortunately, this is not the best place to ask such a question.

 

Please note that this discussion forum is dedicated to programming Revit using the Revit API.

 

Therefore, you cannot expect an answer to a question such as yours relating to installation, product usage or end user support issues here.

 

You should try one of the non-API Revit product support discussion forums instead for that:

 

https://forums.autodesk.com/t5/revit-api-forum/this-forum-is-for-revit-api-programming-questions-not-for/td-p/5607765

 

The people there are much better equipped to answer your question than us programming nerds.

 

I hope this clarifies.

 

Thank you for your cooperation and understanding.

 

Best regards,

 

Jeremy

 

having problem installing revit

$
0
0

I've been trying to install revit for the past week but i can't really install it for some reason.... so i've just gave up and try to ask for help thx thx... here's the installation error 

2019/10/19:22:23:44 RBrot SLEEPLESSPC === Setup started on SLEEPLESSPC by RBrot ===
2019/10/19:22:23:44 RBrot SLEEPLESSPC Path_Length: 115
2019/10/19:22:23:44 RBrot SLEEPLESSPC Current Directory C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm
2019/10/19:22:23:44 RBrot SLEEPLESSPC Launch
2019/10/19:22:23:44 RBrot SLEEPLESSPC CommandLine
2019/10/19:22:23:44 RBrot SLEEPLESSPC Path_Length: 115
2019/10/19:22:23:44 RBrot SLEEPLESSPC Current Directory C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp
2019/10/19:22:24:01 RBrot SLEEPLESSPC === Setup ended ===

2019/10/19:22:23:48 RBrot SLEEPLESSPC === Setup started on SLEEPLESSPC by RBrot ===
2019/10/19:22:23:48 RBrot SLEEPLESSPC Path_Length: 115
2019/10/19:22:23:48 RBrot SLEEPLESSPC Current Directory C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp
2019/10/19:22:23:48 RBrot SLEEPLESSPC Launch
2019/10/19:22:23:48 RBrot SLEEPLESSPC Install CustomCallback Info Invoking custom callback for details: [SETUP] CB_FUNC=CustomCallbackRevitOSVersionCheck CB_SOURCE=C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp\Setup\RevitSetup.dll
2019/10/19:22:23:48 RBrot SLEEPLESSPC Install CustomCallback Info Custom callback response: Status=0 SUCCECSS Title= Message= URLTitle= URLLink=
2019/10/19:22:24:00 RBrot SLEEPLESSPC Install CustomCallback Info Invoking custom callback for details: [RCL] CB_FUNC=CustomCallbackRevitContentWarning CB_SOURCE=C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp\Setup\RevitSetup.dll
2019/10/19:22:24:00 RBrot SLEEPLESSPC Install CustomCallback Info Custom callback response: Status=1 INFO Title= Message=Deselecting the content installation will affect critical settings in Autodesk® Revit® 2020. URLTitle= URLLink=
2019/10/19:22:24:02 RBrot SLEEPLESSPC PageOpen LaunchDialog
2019/10/19:22:24:26 RBrot SLEEPLESSPC PageOpen LicenseDialog
2019/10/19:22:24:34 RBrot SLEEPLESSPC PageOpen ProductInfoDialog
2019/10/19:22:24:34 RBrot SLEEPLESSPC PageOpen ProductSelectionDialog2
2019/10/19:22:24:50 RBrot SLEEPLESSPC PageOpen FullProgressDialog
2019/10/19:22:24:50 RBrot SLEEPLESSPC SetupUiUtil::IsDriveSSD: path is C:\Program Files\Autodesk\
2019/10/19:22:24:51 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2015 Redistributable (x86): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x86\VCRedist\2015\vcredist_x86.exe" /install /quiet /norestart /log C:\Users\RBrot\AppData\Local\Temp\vcredist_x86_2015.log
2019/10/19:22:24:53 RBrot SLEEPLESSPC Microsoft Visual C++ 2015 Redistributable (x86) return code: 1638
2019/10/19:22:24:53 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2015 Redistributable (x86) Failed Failure is ignored, Result=1638
2019/10/19:22:24:53 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2015 Redistributable (x86): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x86\VCRedist\2015\vcredist_x86.exe" /install /quiet /norestart /log C:\Users\RBrot\AppData\Local\Temp\vcredist_x86_2015.log
2019/10/19:22:24:54 RBrot SLEEPLESSPC Microsoft Visual C++ 2015 Redistributable (x86) return code: 1638
2019/10/19:22:24:54 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2015 Redistributable (x86) Failed Failure is ignored, Result=1638
2019/10/19:22:24:54 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2015 Redistributable (x64): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x64\VCRedist\2015\vcredist_x64.exe" /install /quiet /norestart /log C:\Users\RBrot\AppData\Local\Temp\vcredist_x64_2015.log
2019/10/19:22:24:56 RBrot SLEEPLESSPC Microsoft Visual C++ 2015 Redistributable (x64) return code: 1638
2019/10/19:22:24:56 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2015 Redistributable (x64) Failed Failure is ignored, Result=1638
2019/10/19:22:24:56 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2015 Redistributable (x64): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x64\VCRedist\2015\vcredist_x64.exe" /install /quiet /norestart /log C:\Users\RBrot\AppData\Local\Temp\vcredist_x64_2015.log
2019/10/19:22:24:58 RBrot SLEEPLESSPC Microsoft Visual C++ 2015 Redistributable (x64) return code: 1638
2019/10/19:22:24:58 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2015 Redistributable (x64) Failed Failure is ignored, Result=1638
2019/10/19:22:24:59 RBrot SLEEPLESSPC Installing Autodesk® Revit® Content Libraries 2020: TRANSFORMS=":en-us.mst;C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp\x64\RCL\RCL-standalone.mst" ADSK_EULA_STATUS=#1 ADSK_SOURCE_ROOT="C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\" INSTALLDIR="C:\Program Files\Autodesk\" FILESINUSETEXT="" REBOOT=ReallySuppress ADSK_SETUP_EXE=1

2019/10/19:22:35:25 RBrot SLEEPLESSPC Install Autodesk® Revit® Content Libraries 2020 Succeeded
2019/10/19:22:35:25 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2013 Redistributable (x86): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x86\VCRedist\2013\vcredist_x86.exe" /install /quiet /norestart
2019/10/19:22:35:26 RBrot SLEEPLESSPC Microsoft Visual C++ 2013 Redistributable (x86) return code: 0
2019/10/19:22:35:26 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2013 Redistributable (x86) Succeeded
2019/10/19:22:35:27 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2013 Redistributable (x64): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x64\VCRedist\2013\vcredist_x64.exe" /install /quiet /norestart
2019/10/19:22:35:28 RBrot SLEEPLESSPC Microsoft Visual C++ 2013 Redistributable (x64) return code: 0
2019/10/19:22:35:28 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2013 Redistributable (x64) Succeeded
2019/10/19:22:35:28 RBrot SLEEPLESSPC Installing Autodesk® Licensing: "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\x86\AdskLicensing\AdskLicensing-installer.exe" --mode unattended --unattendedmodeui none
2019/10/19:22:35:32 RBrot SLEEPLESSPC Autodesk® Licensing return code: 0
2019/10/19:22:35:32 RBrot SLEEPLESSPC Install Autodesk® Licensing Succeeded
2019/10/19:22:35:33 RBrot SLEEPLESSPC Installing Autodesk® Revit® 2020: TRANSFORMS=":en-us.mst;:all.mst;C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp\x64\RVT\RVT-standalone.mst" ADSK_EULA_STATUS=#1 ADSK_SOURCE_ROOT="C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\" INSTALLDIR="C:\Program Files\Autodesk\" FILESINUSETEXT="" REBOOT=ReallySuppress ADSK_SETUP_EXE=1

2019/10/19:22:39:02 RBrot SLEEPLESSPC Install Autodesk® Revit® 2020 Failed Installation aborted, Result=1603
2019/10/19:22:39:03 RBrot SLEEPLESSPC Installing Autodesk® Revit® 2020: TRANSFORMS=":en-us.mst;:all.mst;C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp\x64\RVT\RVT-standalone.mst" ADSK_EULA_STATUS=#1 ADSK_SOURCE_ROOT="C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\" INSTALLDIR="C:\Program Files\Autodesk\" FILESINUSETEXT="" REBOOT=ReallySuppress ADSK_SETUP_EXE=1

2019/10/19:22:42:04 RBrot SLEEPLESSPC Install Autodesk® Revit® 2020 Failed Installation aborted, Result=1603
2019/10/19:22:42:04 RBrot SLEEPLESSPC Component: RVT failed with code 16032019/10/19:22:42:05 RBrot SLEEPLESSPC verifyCertificates The file "C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp\Setup\SolutionProvider.dll" is signed.
2019/10/19:22:42:05 RBrot SLEEPLESSPC CertFindCertificateInStore C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp\Setup\SolutionProvider.dll Succeeded
2019/10/19:22:42:06 RBrot SLEEPLESSPC Download Play SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:06 RBrot SLEEPLESSPC Notify play SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:06 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE 1001(download started) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:06 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE 1003(unpackage started) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:08 RBrot SLEEPLESSPC Notify status SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:08 RBrot SLEEPLESSPC Notify status SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:08 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE 1009(download completed) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:08 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE readerStreamThread exited with status code: (0) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:08 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE 1011(unpackage completed) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:08 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE writerStreamThread exited with status code: (0) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:10 RBrot SLEEPLESSPC Download Complete SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:10 RBrot SLEEPLESSPC Notify complete SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:10 RBrot SLEEPLESSPC verifyCertificates The file "C:\Users\RBrot\AppData\Local\Temp\adsksolutionstub\SolutionProvider.exe" is signed.
2019/10/19:22:42:10 RBrot SLEEPLESSPC CertFindCertificateInStore C:\Users\RBrot\AppData\Local\Temp\adsksolutionstub\SolutionProvider.exe Succeeded
2019/10/19:22:42:10 RBrot SLEEPLESSPC Extracting files from solution stub
2019/10/19:22:42:11 RBrot SLEEPLESSPC verifyCertificates The file "C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp\Setup\SolutionProvider.dll" is signed.
2019/10/19:22:42:11 RBrot SLEEPLESSPC CertFindCertificateInStore C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp\Setup\SolutionProvider.dll Succeeded
2019/10/19:22:42:12 RBrot SLEEPLESSPC AnalyzeInstallFailure() for log file: C:\Users\RBrot\AppData\Local\Temp\Autodesk Revit 2020 Install.log
2019/10/19:22:42:12 RBrot SLEEPLESSPC AnalyzeInstallFailure() GetErrorontext returned: Error Context CustomAction licIsSvcUpgraded.8B858D99_2C63_4281_AE43_6782314CCC1B returned actual error code 1603 (note this may not be 100% accurate if translation happened inside sandbox)
MSI (s) (4C:BC) [22:42:03:987]: Note: 1: 2265 2: 3: -2147287035
MSI (s) (4C:BC) [22:42:03:987]: Machine policy value 'DisableRollback' is 0
MSI (s) (4C:BC) [22:42:03:987]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
Action ended 22:42:03: licIsSvcUpgraded.8B858D99_2C63_4281_AE43_6782314CCC1B. Return value 3.
MSI (s) (4C:BC) [22:42:03:989]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
MSI (s) (4C:BC) [22:42:03:990]: No System Restore sequence number for this installation.
MSI (s) (4C:BC) [22:42:03:990]: Unlocking Server

2019/10/19:22:42:12 RBrot SLEEPLESSPC AnalyzeInstallFailure() GetErrorContext returned: Error String fatal error
2019/10/19:22:42:12 RBrot SLEEPLESSPC AnalyzeInstallFailure() QueryAknURL returned: AKN Article https://knowledge.autodesk.com/search?p=RVT&search=fatal error&sort=score&page=1&v=2020
2019/10/19:22:42:12 RBrot SLEEPLESSPC AnalyzeInstallFailure() error 28672 mapping not found in error.xml
2019/10/19:22:42:12 RBrot SLEEPLESSPC Rollback: Autodesk® Licensing component is exe :Ignored Rollback.
2019/10/19:22:42:12 RBrot SLEEPLESSPC Rollback: Microsoft Visual C++ 2013 Redistributable (x64) component is exe :Ignored Rollback.
2019/10/19:22:42:12 RBrot SLEEPLESSPC Rollback: Microsoft Visual C++ 2013 Redistributable (x86) component is exe :Ignored Rollback.
2019/10/19:22:43:46 RBrot SLEEPLESSPC Rollback Autodesk® Revit® Content Libraries 2020 Succeeded
2019/10/19:22:43:50 RBrot SLEEPLESSPC PageOpen InstallCompleteDialog
2019/10/19:22:48:54 RBrot SLEEPLESSPC === Setup ended ===

2019/10/19:22:49:00 RBrot SLEEPLESSPC === Setup started on SLEEPLESSPC by RBrot ===
2019/10/19:22:49:00 RBrot SLEEPLESSPC Path_Length: 115
2019/10/19:22:49:00 RBrot SLEEPLESSPC Current Directory C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm
2019/10/19:22:49:00 RBrot SLEEPLESSPC Launch
2019/10/19:22:49:00 RBrot SLEEPLESSPC CommandLine
2019/10/19:22:49:00 RBrot SLEEPLESSPC Path_Length: 115
2019/10/19:22:49:00 RBrot SLEEPLESSPC Current Directory C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp
2019/10/19:22:49:27 RBrot SLEEPLESSPC === Setup ended ===

2019/10/19:22:49:06 RBrot SLEEPLESSPC === Setup started on SLEEPLESSPC by RBrot ===
2019/10/19:22:49:06 RBrot SLEEPLESSPC Path_Length: 115
2019/10/19:22:49:06 RBrot SLEEPLESSPC Current Directory C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp
2019/10/19:22:49:06 RBrot SLEEPLESSPC Launch
2019/10/19:22:49:07 RBrot SLEEPLESSPC Install CustomCallback Info Invoking custom callback for details: [SETUP] CB_FUNC=CustomCallbackRevitOSVersionCheck CB_SOURCE=C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp\Setup\RevitSetup.dll
2019/10/19:22:49:07 RBrot SLEEPLESSPC Install CustomCallback Info Custom callback response: Status=0 SUCCECSS Title= Message= URLTitle= URLLink=
2019/10/19:22:49:26 RBrot SLEEPLESSPC Install CustomCallback Info Invoking custom callback for details: [RCL] CB_FUNC=CustomCallbackRevitContentWarning CB_SOURCE=C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp\Setup\RevitSetup.dll
2019/10/19:22:49:26 RBrot SLEEPLESSPC Install CustomCallback Info Custom callback response: Status=1 INFO Title= Message=Deselecting the content installation will affect critical settings in Autodesk® Revit® 2020. URLTitle= URLLink=
2019/10/19:22:49:28 RBrot SLEEPLESSPC PageOpen LaunchDialog
2019/10/19:22:50:07 RBrot SLEEPLESSPC PageOpen LicenseDialog
2019/10/19:23:00:04 RBrot SLEEPLESSPC PageOpen ProductInfoDialog
2019/10/19:23:00:04 RBrot SLEEPLESSPC PageOpen ProductSelectionDialog2
2019/10/19:23:00:22 RBrot SLEEPLESSPC PageOpen FullProgressDialog
2019/10/19:23:00:23 RBrot SLEEPLESSPC SetupUiUtil::IsDriveSSD: path is C:\Program Files\Autodesk\
2019/10/19:23:00:24 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2015 Redistributable (x86): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x86\VCRedist\2015\vcredist_x86.exe" /install /quiet /norestart /log C:\Users\RBrot\AppData\Local\Temp\vcredist_x86_2015.log
2019/10/19:23:00:25 RBrot SLEEPLESSPC Microsoft Visual C++ 2015 Redistributable (x86) return code: 1638
2019/10/19:23:00:25 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2015 Redistributable (x86) Failed Failure is ignored, Result=1638
2019/10/19:23:00:26 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2015 Redistributable (x86): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x86\VCRedist\2015\vcredist_x86.exe" /install /quiet /norestart /log C:\Users\RBrot\AppData\Local\Temp\vcredist_x86_2015.log
2019/10/19:23:00:27 RBrot SLEEPLESSPC Microsoft Visual C++ 2015 Redistributable (x86) return code: 1638
2019/10/19:23:00:27 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2015 Redistributable (x86) Failed Failure is ignored, Result=1638
2019/10/19:23:00:27 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2015 Redistributable (x64): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x64\VCRedist\2015\vcredist_x64.exe" /install /quiet /norestart /log C:\Users\RBrot\AppData\Local\Temp\vcredist_x64_2015.log
2019/10/19:23:00:28 RBrot SLEEPLESSPC Microsoft Visual C++ 2015 Redistributable (x64) return code: 1638
2019/10/19:23:00:28 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2015 Redistributable (x64) Failed Failure is ignored, Result=1638
2019/10/19:23:00:28 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2015 Redistributable (x64): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x64\VCRedist\2015\vcredist_x64.exe" /install /quiet /norestart /log C:\Users\RBrot\AppData\Local\Temp\vcredist_x64_2015.log
2019/10/19:23:00:29 RBrot SLEEPLESSPC Microsoft Visual C++ 2015 Redistributable (x64) return code: 1638
2019/10/19:23:00:29 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2015 Redistributable (x64) Failed Failure is ignored, Result=1638
2019/10/19:23:00:29 RBrot SLEEPLESSPC Installing Autodesk® Revit® Content Libraries 2020: TRANSFORMS=":en-us.mst;C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp\x64\RCL\RCL-standalone.mst" ADSK_EULA_STATUS=#1 ADSK_SOURCE_ROOT="C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\" INSTALLDIR="C:\Program Files\Autodesk\" FILESINUSETEXT="" REBOOT=ReallySuppress ADSK_SETUP_EXE=1

2019/10/19:23:08:51 RBrot SLEEPLESSPC Install Autodesk® Revit® Content Libraries 2020 Succeeded
2019/10/19:23:08:52 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2013 Redistributable (x86): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x86\VCRedist\2013\vcredist_x86.exe" /install /quiet /norestart
2019/10/19:23:08:53 RBrot SLEEPLESSPC Microsoft Visual C++ 2013 Redistributable (x86) return code: 0
2019/10/19:23:08:53 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2013 Redistributable (x86) Succeeded
2019/10/19:23:08:54 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2013 Redistributable (x64): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x64\VCRedist\2013\vcredist_x64.exe" /install /quiet /norestart
2019/10/19:23:08:54 RBrot SLEEPLESSPC Microsoft Visual C++ 2013 Redistributable (x64) return code: 0
2019/10/19:23:08:54 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2013 Redistributable (x64) Succeeded
2019/10/19:23:08:55 RBrot SLEEPLESSPC Installing Autodesk® Licensing: "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\x86\AdskLicensing\AdskLicensing-installer.exe" --mode unattended --unattendedmodeui none
2019/10/19:23:08:57 RBrot SLEEPLESSPC Autodesk® Licensing return code: 0
2019/10/19:23:08:57 RBrot SLEEPLESSPC Install Autodesk® Licensing Succeeded
2019/10/19:23:08:58 RBrot SLEEPLESSPC Installing Autodesk® Revit® 2020: TRANSFORMS=":en-us.mst;:all.mst;C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp\x64\RVT\RVT-standalone.mst" ADSK_EULA_STATUS=#1 ADSK_SOURCE_ROOT="C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\" INSTALLDIR="C:\Program Files\Autodesk\" FILESINUSETEXT="" REBOOT=ReallySuppress ADSK_SETUP_EXE=1

2019/10/19:23:13:06 RBrot SLEEPLESSPC Install Autodesk® Revit® 2020 Failed Installation aborted, Result=1603
2019/10/19:23:13:07 RBrot SLEEPLESSPC Installing Autodesk® Revit® 2020: TRANSFORMS=":en-us.mst;:all.mst;C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp\x64\RVT\RVT-standalone.mst" ADSK_EULA_STATUS=#1 ADSK_SOURCE_ROOT="C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\" INSTALLDIR="C:\Program Files\Autodesk\" FILESINUSETEXT="" REBOOT=ReallySuppress ADSK_SETUP_EXE=1

2019/10/19:23:16:40 RBrot SLEEPLESSPC Install Autodesk® Revit® 2020 Failed Installation aborted, Result=1603
2019/10/19:23:16:40 RBrot SLEEPLESSPC Component: RVT failed with code 16032019/10/19:23:16:41 RBrot SLEEPLESSPC verifyCertificates The file "C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp\Setup\SolutionProvider.dll" is signed.
2019/10/19:23:16:41 RBrot SLEEPLESSPC CertFindCertificateInStore C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp\Setup\SolutionProvider.dll Succeeded
2019/10/19:23:16:42 RBrot SLEEPLESSPC Download Play SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:42 RBrot SLEEPLESSPC Notify play SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:42 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE 1001(download started) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:42 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE 1003(unpackage started) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:43 RBrot SLEEPLESSPC Notify status SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:43 RBrot SLEEPLESSPC Notify status SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:43 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE 1009(download completed) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:43 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE readerStreamThread exited with status code: (0) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:43 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE 1011(unpackage completed) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:43 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE writerStreamThread exited with status code: (0) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:44 RBrot SLEEPLESSPC Download Complete SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:44 RBrot SLEEPLESSPC Notify complete SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:44 RBrot SLEEPLESSPC verifyCertificates The file "C:\Users\RBrot\AppData\Local\Temp\adsksolutionstub\SolutionProvider.exe" is signed.
2019/10/19:23:16:44 RBrot SLEEPLESSPC CertFindCertificateInStore C:\Users\RBrot\AppData\Local\Temp\adsksolutionstub\SolutionProvider.exe Succeeded
2019/10/19:23:16:44 RBrot SLEEPLESSPC Extracting files from solution stub
2019/10/19:23:16:45 RBrot SLEEPLESSPC verifyCertificates The file "C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp\Setup\SolutionProvider.dll" is signed.
2019/10/19:23:16:45 RBrot SLEEPLESSPC CertFindCertificateInStore C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp\Setup\SolutionProvider.dll Succeeded
2019/10/19:23:16:46 RBrot SLEEPLESSPC AnalyzeInstallFailure() for log file: C:\Users\RBrot\AppData\Local\Temp\Autodesk Revit 2020 Install.log
2019/10/19:23:16:46 RBrot SLEEPLESSPC AnalyzeInstallFailure() GetErrorontext returned: Error Context CustomAction licIsSvcUpgraded.8B858D99_2C63_4281_AE43_6782314CCC1B returned actual error code 1603 (note this may not be 100% accurate if translation happened inside sandbox)
MSI (s) (A0:10) [23:16:39:787]: Note: 1: 2265 2: 3: -2147287035
MSI (s) (A0:10) [23:16:39:787]: Machine policy value 'DisableRollback' is 0
MSI (s) (A0:10) [23:16:39:787]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
Action ended 23:16:39: licIsSvcUpgraded.8B858D99_2C63_4281_AE43_6782314CCC1B. Return value 3.
MSI (s) (A0:10) [23:16:39:789]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
MSI (s) (A0:10) [23:16:39:790]: No System Restore sequence number for this installation.
MSI (s) (A0:10) [23:16:39:790]: Unlocking Server

2019/10/19:23:16:46 RBrot SLEEPLESSPC AnalyzeInstallFailure() GetErrorContext returned: Error String fatal error
2019/10/19:23:16:46 RBrot SLEEPLESSPC AnalyzeInstallFailure() QueryAknURL returned: AKN Article https://knowledge.autodesk.com/search?p=RVT&search=fatal error&sort=score&page=1&v=2020
2019/10/19:23:16:46 RBrot SLEEPLESSPC AnalyzeInstallFailure() error 28672 mapping not found in error.xml
2019/10/19:23:16:46 RBrot SLEEPLESSPC Rollback: Autodesk® Licensing component is exe :Ignored Rollback.
2019/10/19:23:16:46 RBrot SLEEPLESSPC Rollback: Microsoft Visual C++ 2013 Redistributable (x64) component is exe :Ignored Rollback.
2019/10/19:23:16:46 RBrot SLEEPLESSPC Rollback: Microsoft Visual C++ 2013 Redistributable (x86) component is exe :Ignored Rollback.
2019/10/19:23:18:06 RBrot SLEEPLESSPC Rollback Autodesk® Revit® Content Libraries 2020 Succeeded

Installation problem With Revit 2020

$
0
0

I've been trying to install revit for a while now and it's killing me that it won't install.... i can install the other products such as autocad and fusion but somehow revit is being stubborn and won't get installed..... here's the installation log 

 

2019/10/19:22:23:44 RBrot SLEEPLESSPC === Setup started on SLEEPLESSPC by RBrot ===
2019/10/19:22:23:44 RBrot SLEEPLESSPC Path_Length: 115
2019/10/19:22:23:44 RBrot SLEEPLESSPC Current Directory C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm
2019/10/19:22:23:44 RBrot SLEEPLESSPC Launch
2019/10/19:22:23:44 RBrot SLEEPLESSPC CommandLine
2019/10/19:22:23:44 RBrot SLEEPLESSPC Path_Length: 115
2019/10/19:22:23:44 RBrot SLEEPLESSPC Current Directory C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp
2019/10/19:22:24:01 RBrot SLEEPLESSPC === Setup ended ===

2019/10/19:22:23:48 RBrot SLEEPLESSPC === Setup started on SLEEPLESSPC by RBrot ===
2019/10/19:22:23:48 RBrot SLEEPLESSPC Path_Length: 115
2019/10/19:22:23:48 RBrot SLEEPLESSPC Current Directory C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp
2019/10/19:22:23:48 RBrot SLEEPLESSPC Launch
2019/10/19:22:23:48 RBrot SLEEPLESSPC Install CustomCallback Info Invoking custom callback for details: [SETUP] CB_FUNC=CustomCallbackRevitOSVersionCheck CB_SOURCE=C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp\Setup\RevitSetup.dll
2019/10/19:22:23:48 RBrot SLEEPLESSPC Install CustomCallback Info Custom callback response: Status=0 SUCCECSS Title= Message= URLTitle= URLLink=
2019/10/19:22:24:00 RBrot SLEEPLESSPC Install CustomCallback Info Invoking custom callback for details: [RCL] CB_FUNC=CustomCallbackRevitContentWarning CB_SOURCE=C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp\Setup\RevitSetup.dll
2019/10/19:22:24:00 RBrot SLEEPLESSPC Install CustomCallback Info Custom callback response: Status=1 INFO Title= Message=Deselecting the content installation will affect critical settings in Autodesk® Revit® 2020. URLTitle= URLLink=
2019/10/19:22:24:02 RBrot SLEEPLESSPC PageOpen LaunchDialog
2019/10/19:22:24:26 RBrot SLEEPLESSPC PageOpen LicenseDialog
2019/10/19:22:24:34 RBrot SLEEPLESSPC PageOpen ProductInfoDialog
2019/10/19:22:24:34 RBrot SLEEPLESSPC PageOpen ProductSelectionDialog2
2019/10/19:22:24:50 RBrot SLEEPLESSPC PageOpen FullProgressDialog
2019/10/19:22:24:50 RBrot SLEEPLESSPC SetupUiUtil::IsDriveSSD: path is C:\Program Files\Autodesk\
2019/10/19:22:24:51 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2015 Redistributable (x86): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x86\VCRedist\2015\vcredist_x86.exe" /install /quiet /norestart /log C:\Users\RBrot\AppData\Local\Temp\vcredist_x86_2015.log
2019/10/19:22:24:53 RBrot SLEEPLESSPC Microsoft Visual C++ 2015 Redistributable (x86) return code: 1638
2019/10/19:22:24:53 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2015 Redistributable (x86) Failed Failure is ignored, Result=1638
2019/10/19:22:24:53 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2015 Redistributable (x86): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x86\VCRedist\2015\vcredist_x86.exe" /install /quiet /norestart /log C:\Users\RBrot\AppData\Local\Temp\vcredist_x86_2015.log
2019/10/19:22:24:54 RBrot SLEEPLESSPC Microsoft Visual C++ 2015 Redistributable (x86) return code: 1638
2019/10/19:22:24:54 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2015 Redistributable (x86) Failed Failure is ignored, Result=1638
2019/10/19:22:24:54 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2015 Redistributable (x64): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x64\VCRedist\2015\vcredist_x64.exe" /install /quiet /norestart /log C:\Users\RBrot\AppData\Local\Temp\vcredist_x64_2015.log
2019/10/19:22:24:56 RBrot SLEEPLESSPC Microsoft Visual C++ 2015 Redistributable (x64) return code: 1638
2019/10/19:22:24:56 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2015 Redistributable (x64) Failed Failure is ignored, Result=1638
2019/10/19:22:24:56 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2015 Redistributable (x64): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x64\VCRedist\2015\vcredist_x64.exe" /install /quiet /norestart /log C:\Users\RBrot\AppData\Local\Temp\vcredist_x64_2015.log
2019/10/19:22:24:58 RBrot SLEEPLESSPC Microsoft Visual C++ 2015 Redistributable (x64) return code: 1638
2019/10/19:22:24:58 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2015 Redistributable (x64) Failed Failure is ignored, Result=1638
2019/10/19:22:24:59 RBrot SLEEPLESSPC Installing Autodesk® Revit® Content Libraries 2020: TRANSFORMS=":en-us.mst;C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp\x64\RCL\RCL-standalone.mst" ADSK_EULA_STATUS=#1 ADSK_SOURCE_ROOT="C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\" INSTALLDIR="C:\Program Files\Autodesk\" FILESINUSETEXT="" REBOOT=ReallySuppress ADSK_SETUP_EXE=1

2019/10/19:22:35:25 RBrot SLEEPLESSPC Install Autodesk® Revit® Content Libraries 2020 Succeeded
2019/10/19:22:35:25 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2013 Redistributable (x86): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x86\VCRedist\2013\vcredist_x86.exe" /install /quiet /norestart
2019/10/19:22:35:26 RBrot SLEEPLESSPC Microsoft Visual C++ 2013 Redistributable (x86) return code: 0
2019/10/19:22:35:26 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2013 Redistributable (x86) Succeeded
2019/10/19:22:35:27 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2013 Redistributable (x64): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x64\VCRedist\2013\vcredist_x64.exe" /install /quiet /norestart
2019/10/19:22:35:28 RBrot SLEEPLESSPC Microsoft Visual C++ 2013 Redistributable (x64) return code: 0
2019/10/19:22:35:28 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2013 Redistributable (x64) Succeeded
2019/10/19:22:35:28 RBrot SLEEPLESSPC Installing Autodesk® Licensing: "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\x86\AdskLicensing\AdskLicensing-installer.exe" --mode unattended --unattendedmodeui none
2019/10/19:22:35:32 RBrot SLEEPLESSPC Autodesk® Licensing return code: 0
2019/10/19:22:35:32 RBrot SLEEPLESSPC Install Autodesk® Licensing Succeeded
2019/10/19:22:35:33 RBrot SLEEPLESSPC Installing Autodesk® Revit® 2020: TRANSFORMS=":en-us.mst;:all.mst;C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp\x64\RVT\RVT-standalone.mst" ADSK_EULA_STATUS=#1 ADSK_SOURCE_ROOT="C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\" INSTALLDIR="C:\Program Files\Autodesk\" FILESINUSETEXT="" REBOOT=ReallySuppress ADSK_SETUP_EXE=1

2019/10/19:22:39:02 RBrot SLEEPLESSPC Install Autodesk® Revit® 2020 Failed Installation aborted, Result=1603
2019/10/19:22:39:03 RBrot SLEEPLESSPC Installing Autodesk® Revit® 2020: TRANSFORMS=":en-us.mst;:all.mst;C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp\x64\RVT\RVT-standalone.mst" ADSK_EULA_STATUS=#1 ADSK_SOURCE_ROOT="C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\" INSTALLDIR="C:\Program Files\Autodesk\" FILESINUSETEXT="" REBOOT=ReallySuppress ADSK_SETUP_EXE=1

2019/10/19:22:42:04 RBrot SLEEPLESSPC Install Autodesk® Revit® 2020 Failed Installation aborted, Result=1603
2019/10/19:22:42:04 RBrot SLEEPLESSPC Component: RVT failed with code 16032019/10/19:22:42:05 RBrot SLEEPLESSPC verifyCertificates The file "C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp\Setup\SolutionProvider.dll" is signed.
2019/10/19:22:42:05 RBrot SLEEPLESSPC CertFindCertificateInStore C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp\Setup\SolutionProvider.dll Succeeded
2019/10/19:22:42:06 RBrot SLEEPLESSPC Download Play SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:06 RBrot SLEEPLESSPC Notify play SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:06 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE 1001(download started) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:06 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE 1003(unpackage started) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:08 RBrot SLEEPLESSPC Notify status SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:08 RBrot SLEEPLESSPC Notify status SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:08 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE 1009(download completed) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:08 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE readerStreamThread exited with status code: (0) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:08 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE 1011(unpackage completed) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:08 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE writerStreamThread exited with status code: (0) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:10 RBrot SLEEPLESSPC Download Complete SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:10 RBrot SLEEPLESSPC Notify complete SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:22:42:10 RBrot SLEEPLESSPC verifyCertificates The file "C:\Users\RBrot\AppData\Local\Temp\adsksolutionstub\SolutionProvider.exe" is signed.
2019/10/19:22:42:10 RBrot SLEEPLESSPC CertFindCertificateInStore C:\Users\RBrot\AppData\Local\Temp\adsksolutionstub\SolutionProvider.exe Succeeded
2019/10/19:22:42:10 RBrot SLEEPLESSPC Extracting files from solution stub
2019/10/19:22:42:11 RBrot SLEEPLESSPC verifyCertificates The file "C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp\Setup\SolutionProvider.dll" is signed.
2019/10/19:22:42:11 RBrot SLEEPLESSPC CertFindCertificateInStore C:\Users\RBrot\AppData\Local\Temp\_AI5AC4.tmp\Setup\SolutionProvider.dll Succeeded
2019/10/19:22:42:12 RBrot SLEEPLESSPC AnalyzeInstallFailure() for log file: C:\Users\RBrot\AppData\Local\Temp\Autodesk Revit 2020 Install.log
2019/10/19:22:42:12 RBrot SLEEPLESSPC AnalyzeInstallFailure() GetErrorontext returned: Error Context CustomAction licIsSvcUpgraded.8B858D99_2C63_4281_AE43_6782314CCC1B returned actual error code 1603 (note this may not be 100% accurate if translation happened inside sandbox)
MSI (s) (4C:BC) [22:42:03:987]: Note: 1: 2265 2: 3: -2147287035
MSI (s) (4C:BC) [22:42:03:987]: Machine policy value 'DisableRollback' is 0
MSI (s) (4C:BC) [22:42:03:987]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
Action ended 22:42:03: licIsSvcUpgraded.8B858D99_2C63_4281_AE43_6782314CCC1B. Return value 3.
MSI (s) (4C:BC) [22:42:03:989]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
MSI (s) (4C:BC) [22:42:03:990]: No System Restore sequence number for this installation.
MSI (s) (4C:BC) [22:42:03:990]: Unlocking Server

2019/10/19:22:42:12 RBrot SLEEPLESSPC AnalyzeInstallFailure() GetErrorContext returned: Error String fatal error
2019/10/19:22:42:12 RBrot SLEEPLESSPC AnalyzeInstallFailure() QueryAknURL returned: AKN Article https://knowledge.autodesk.com/search?p=RVT&search=fatal error&sort=score&page=1&v=2020
2019/10/19:22:42:12 RBrot SLEEPLESSPC AnalyzeInstallFailure() error 28672 mapping not found in error.xml
2019/10/19:22:42:12 RBrot SLEEPLESSPC Rollback: Autodesk® Licensing component is exe :Ignored Rollback.
2019/10/19:22:42:12 RBrot SLEEPLESSPC Rollback: Microsoft Visual C++ 2013 Redistributable (x64) component is exe :Ignored Rollback.
2019/10/19:22:42:12 RBrot SLEEPLESSPC Rollback: Microsoft Visual C++ 2013 Redistributable (x86) component is exe :Ignored Rollback.
2019/10/19:22:43:46 RBrot SLEEPLESSPC Rollback Autodesk® Revit® Content Libraries 2020 Succeeded
2019/10/19:22:43:50 RBrot SLEEPLESSPC PageOpen InstallCompleteDialog
2019/10/19:22:48:54 RBrot SLEEPLESSPC === Setup ended ===

2019/10/19:22:49:00 RBrot SLEEPLESSPC === Setup started on SLEEPLESSPC by RBrot ===
2019/10/19:22:49:00 RBrot SLEEPLESSPC Path_Length: 115
2019/10/19:22:49:00 RBrot SLEEPLESSPC Current Directory C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm
2019/10/19:22:49:00 RBrot SLEEPLESSPC Launch
2019/10/19:22:49:00 RBrot SLEEPLESSPC CommandLine
2019/10/19:22:49:00 RBrot SLEEPLESSPC Path_Length: 115
2019/10/19:22:49:00 RBrot SLEEPLESSPC Current Directory C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp
2019/10/19:22:49:27 RBrot SLEEPLESSPC === Setup ended ===

2019/10/19:22:49:06 RBrot SLEEPLESSPC === Setup started on SLEEPLESSPC by RBrot ===
2019/10/19:22:49:06 RBrot SLEEPLESSPC Path_Length: 115
2019/10/19:22:49:06 RBrot SLEEPLESSPC Current Directory C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp
2019/10/19:22:49:06 RBrot SLEEPLESSPC Launch
2019/10/19:22:49:07 RBrot SLEEPLESSPC Install CustomCallback Info Invoking custom callback for details: [SETUP] CB_FUNC=CustomCallbackRevitOSVersionCheck CB_SOURCE=C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp\Setup\RevitSetup.dll
2019/10/19:22:49:07 RBrot SLEEPLESSPC Install CustomCallback Info Custom callback response: Status=0 SUCCECSS Title= Message= URLTitle= URLLink=
2019/10/19:22:49:26 RBrot SLEEPLESSPC Install CustomCallback Info Invoking custom callback for details: [RCL] CB_FUNC=CustomCallbackRevitContentWarning CB_SOURCE=C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp\Setup\RevitSetup.dll
2019/10/19:22:49:26 RBrot SLEEPLESSPC Install CustomCallback Info Custom callback response: Status=1 INFO Title= Message=Deselecting the content installation will affect critical settings in Autodesk® Revit® 2020. URLTitle= URLLink=
2019/10/19:22:49:28 RBrot SLEEPLESSPC PageOpen LaunchDialog
2019/10/19:22:50:07 RBrot SLEEPLESSPC PageOpen LicenseDialog
2019/10/19:23:00:04 RBrot SLEEPLESSPC PageOpen ProductInfoDialog
2019/10/19:23:00:04 RBrot SLEEPLESSPC PageOpen ProductSelectionDialog2
2019/10/19:23:00:22 RBrot SLEEPLESSPC PageOpen FullProgressDialog
2019/10/19:23:00:23 RBrot SLEEPLESSPC SetupUiUtil::IsDriveSSD: path is C:\Program Files\Autodesk\
2019/10/19:23:00:24 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2015 Redistributable (x86): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x86\VCRedist\2015\vcredist_x86.exe" /install /quiet /norestart /log C:\Users\RBrot\AppData\Local\Temp\vcredist_x86_2015.log
2019/10/19:23:00:25 RBrot SLEEPLESSPC Microsoft Visual C++ 2015 Redistributable (x86) return code: 1638
2019/10/19:23:00:25 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2015 Redistributable (x86) Failed Failure is ignored, Result=1638
2019/10/19:23:00:26 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2015 Redistributable (x86): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x86\VCRedist\2015\vcredist_x86.exe" /install /quiet /norestart /log C:\Users\RBrot\AppData\Local\Temp\vcredist_x86_2015.log
2019/10/19:23:00:27 RBrot SLEEPLESSPC Microsoft Visual C++ 2015 Redistributable (x86) return code: 1638
2019/10/19:23:00:27 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2015 Redistributable (x86) Failed Failure is ignored, Result=1638
2019/10/19:23:00:27 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2015 Redistributable (x64): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x64\VCRedist\2015\vcredist_x64.exe" /install /quiet /norestart /log C:\Users\RBrot\AppData\Local\Temp\vcredist_x64_2015.log
2019/10/19:23:00:28 RBrot SLEEPLESSPC Microsoft Visual C++ 2015 Redistributable (x64) return code: 1638
2019/10/19:23:00:28 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2015 Redistributable (x64) Failed Failure is ignored, Result=1638
2019/10/19:23:00:28 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2015 Redistributable (x64): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x64\VCRedist\2015\vcredist_x64.exe" /install /quiet /norestart /log C:\Users\RBrot\AppData\Local\Temp\vcredist_x64_2015.log
2019/10/19:23:00:29 RBrot SLEEPLESSPC Microsoft Visual C++ 2015 Redistributable (x64) return code: 1638
2019/10/19:23:00:29 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2015 Redistributable (x64) Failed Failure is ignored, Result=1638
2019/10/19:23:00:29 RBrot SLEEPLESSPC Installing Autodesk® Revit® Content Libraries 2020: TRANSFORMS=":en-us.mst;C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp\x64\RCL\RCL-standalone.mst" ADSK_EULA_STATUS=#1 ADSK_SOURCE_ROOT="C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\" INSTALLDIR="C:\Program Files\Autodesk\" FILESINUSETEXT="" REBOOT=ReallySuppress ADSK_SETUP_EXE=1

2019/10/19:23:08:51 RBrot SLEEPLESSPC Install Autodesk® Revit® Content Libraries 2020 Succeeded
2019/10/19:23:08:52 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2013 Redistributable (x86): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x86\VCRedist\2013\vcredist_x86.exe" /install /quiet /norestart
2019/10/19:23:08:53 RBrot SLEEPLESSPC Microsoft Visual C++ 2013 Redistributable (x86) return code: 0
2019/10/19:23:08:53 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2013 Redistributable (x86) Succeeded
2019/10/19:23:08:54 RBrot SLEEPLESSPC Installing Microsoft Visual C++ 2013 Redistributable (x64): "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\3rdParty\x64\VCRedist\2013\vcredist_x64.exe" /install /quiet /norestart
2019/10/19:23:08:54 RBrot SLEEPLESSPC Microsoft Visual C++ 2013 Redistributable (x64) return code: 0
2019/10/19:23:08:54 RBrot SLEEPLESSPC Install Microsoft Visual C++ 2013 Redistributable (x64) Succeeded
2019/10/19:23:08:55 RBrot SLEEPLESSPC Installing Autodesk® Licensing: "C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\x86\AdskLicensing\AdskLicensing-installer.exe" --mode unattended --unattendedmodeui none
2019/10/19:23:08:57 RBrot SLEEPLESSPC Autodesk® Licensing return code: 0
2019/10/19:23:08:57 RBrot SLEEPLESSPC Install Autodesk® Licensing Succeeded
2019/10/19:23:08:58 RBrot SLEEPLESSPC Installing Autodesk® Revit® 2020: TRANSFORMS=":en-us.mst;:all.mst;C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp\x64\RVT\RVT-standalone.mst" ADSK_EULA_STATUS=#1 ADSK_SOURCE_ROOT="C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\" INSTALLDIR="C:\Program Files\Autodesk\" FILESINUSETEXT="" REBOOT=ReallySuppress ADSK_SETUP_EXE=1

2019/10/19:23:13:06 RBrot SLEEPLESSPC Install Autodesk® Revit® 2020 Failed Installation aborted, Result=1603
2019/10/19:23:13:07 RBrot SLEEPLESSPC Installing Autodesk® Revit® 2020: TRANSFORMS=":en-us.mst;:all.mst;C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp\x64\RVT\RVT-standalone.mst" ADSK_EULA_STATUS=#1 ADSK_SOURCE_ROOT="C:\Autodesk\Revit_2020_G1_Win_64bit_r1_dlm\" INSTALLDIR="C:\Program Files\Autodesk\" FILESINUSETEXT="" REBOOT=ReallySuppress ADSK_SETUP_EXE=1

2019/10/19:23:16:40 RBrot SLEEPLESSPC Install Autodesk® Revit® 2020 Failed Installation aborted, Result=1603
2019/10/19:23:16:40 RBrot SLEEPLESSPC Component: RVT failed with code 16032019/10/19:23:16:41 RBrot SLEEPLESSPC verifyCertificates The file "C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp\Setup\SolutionProvider.dll" is signed.
2019/10/19:23:16:41 RBrot SLEEPLESSPC CertFindCertificateInStore C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp\Setup\SolutionProvider.dll Succeeded
2019/10/19:23:16:42 RBrot SLEEPLESSPC Download Play SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:42 RBrot SLEEPLESSPC Notify play SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:42 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE 1001(download started) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:42 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE 1003(unpackage started) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:43 RBrot SLEEPLESSPC Notify status SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:43 RBrot SLEEPLESSPC Notify status SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:43 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE 1009(download completed) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:43 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE readerStreamThread exited with status code: (0) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:43 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE 1011(unpackage completed) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:43 RBrot SLEEPLESSPC Notify info SOLUTION_PROVIDER_PACKAGE writerStreamThread exited with status code: (0) https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:44 RBrot SLEEPLESSPC Download Complete SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:44 RBrot SLEEPLESSPC Notify complete SOLUTION_PROVIDER_PACKAGE https://emsfs.autodesk.com/utility/SolutionFramework/FY19/SolutionProvider.exe
2019/10/19:23:16:44 RBrot SLEEPLESSPC verifyCertificates The file "C:\Users\RBrot\AppData\Local\Temp\adsksolutionstub\SolutionProvider.exe" is signed.
2019/10/19:23:16:44 RBrot SLEEPLESSPC CertFindCertificateInStore C:\Users\RBrot\AppData\Local\Temp\adsksolutionstub\SolutionProvider.exe Succeeded
2019/10/19:23:16:44 RBrot SLEEPLESSPC Extracting files from solution stub
2019/10/19:23:16:45 RBrot SLEEPLESSPC verifyCertificates The file "C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp\Setup\SolutionProvider.dll" is signed.
2019/10/19:23:16:45 RBrot SLEEPLESSPC CertFindCertificateInStore C:\Users\RBrot\AppData\Local\Temp\_AI791A.tmp\Setup\SolutionProvider.dll Succeeded
2019/10/19:23:16:46 RBrot SLEEPLESSPC AnalyzeInstallFailure() for log file: C:\Users\RBrot\AppData\Local\Temp\Autodesk Revit 2020 Install.log
2019/10/19:23:16:46 RBrot SLEEPLESSPC AnalyzeInstallFailure() GetErrorontext returned: Error Context CustomAction licIsSvcUpgraded.8B858D99_2C63_4281_AE43_6782314CCC1B returned actual error code 1603 (note this may not be 100% accurate if translation happened inside sandbox)
MSI (s) (A0:10) [23:16:39:787]: Note: 1: 2265 2: 3: -2147287035
MSI (s) (A0:10) [23:16:39:787]: Machine policy value 'DisableRollback' is 0
MSI (s) (A0:10) [23:16:39:787]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
Action ended 23:16:39: licIsSvcUpgraded.8B858D99_2C63_4281_AE43_6782314CCC1B. Return value 3.
MSI (s) (A0:10) [23:16:39:789]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
MSI (s) (A0:10) [23:16:39:790]: No System Restore sequence number for this installation.
MSI (s) (A0:10) [23:16:39:790]: Unlocking Server

2019/10/19:23:16:46 RBrot SLEEPLESSPC AnalyzeInstallFailure() GetErrorContext returned: Error String fatal error
2019/10/19:23:16:46 RBrot SLEEPLESSPC AnalyzeInstallFailure() QueryAknURL returned: AKN Article https://knowledge.autodesk.com/search?p=RVT&search=fatal error&sort=score&page=1&v=2020
2019/10/19:23:16:46 RBrot SLEEPLESSPC AnalyzeInstallFailure() error 28672 mapping not found in error.xml
2019/10/19:23:16:46 RBrot SLEEPLESSPC Rollback: Autodesk® Licensing component is exe :Ignored Rollback.
2019/10/19:23:16:46 RBrot SLEEPLESSPC Rollback: Microsoft Visual C++ 2013 Redistributable (x64) component is exe :Ignored Rollback.
2019/10/19:23:16:46 RBrot SLEEPLESSPC Rollback: Microsoft Visual C++ 2013 Redistributable (x86) component is exe :Ignored Rollback.
2019/10/19:23:18:06 RBrot SLEEPLESSPC Rollback Autodesk® Revit® Content Libraries 2020 Succeeded

Viewing all 66641 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>