Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Updated section on hiding specific parts of the Settings dialog

...

  1. Ensure Autodesk® Revit® is not running.
  2. In Windows Search, Type Run and select the Program to open it.
  3. Type/Paste the following command:

    No Format
    "C:\Program Files\Xrev Transmit\XrevTransmit.exe" SHOWPRIVILEGEDCOMMANDS=0

    Would turn the Privileged commands OFF.

    No Format
    "C:\Program Files\Xrev Transmit\XrevTransmit.exe" SHOWPRIVILEGEDCOMMANDS=1

    Would turn the Privileged commands ON.

  4. Select OK to run the command.

    Info
    titleInfo

    This command requires Administrator privileges to complete. If you do not have Administrator privileges you will be prompted via UAC for a Username/Password.


  5. Restart Autodesk® Revit®.  The Xrev Transmit Privileged commands will now be disabled.

Hide specific parts of the Settings

It is also possible to hide specific sections of the Settings dialog.  This can be done by modifying the XrevTransmit.exe.config file in the installation directory (usually C:\Program Files\Xrev Transmit).  The relevant parts of the config file are shown below (for brevity, we've omitted lines that aren't relevant for this purpose).

Code Block
languagexml
titleXrevTransmit.exe.config
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    ...
    <section name="Xrev.Transmit.Windows.Settings" type="Xrev.Transmit.Windows.Settings.Configuration.SettingsConfigurationSection, Xrev.Transmit.Windows" />
    ...
  </configSections>
  ...
  <Xrev.Transmit.Windows.Settings ShowIssueSettings="True"
                                  ShowTransmittalSettings="True"
                                  ShowPostProcessingCommandSettings="True"
                                  ShowIssueMethods="True"
                                  ShowIssueReasons="True"
                                  ShowFormatTypes="True"
                                  ShowPaperSizes="True"
                                  ShowProjectIssueSettings="True"
                                  ShowProjectPostProcessingCommandSettings="True"
                                  ShowProjectAconexSettings="True"
                                  ShowFormatSettings="True"
                                  ShowContactSettings="True" />
  <runtime>
    ...
  </runtime>
  ...
</configuration>

Specifically, line 5 declares the Xrev.Transmit.Windows.Settings configuration section and lines 9-20 specify which sections should be visible in the Settings dialog.  Change the corresponding setting to False to hide that section.