To anyone who may desire to silently install Navisworks Exporters, I've found the 'New to 2022' SETUP.EXE uses different switches than in previous years. In previous years we could use /quiet or /qn to silently install. The 2022 SETUP.EXE needs the switch --silent
Therefore, to silently install, I'm downloading the entire package as it extracts itself from the download to C:\Autodesk on the local computer then running the SETUP.EXE --silent command on that local file. There may be other techniques, but this one is best for me. Below is the code for my .BAT Cheers -Dustin
IF NOT EXIST "C:\Autodesk\Autodesk_Navisworks_Exporters_2022_Win_64bit_dlm" mkdir "C:\Autodesk\Autodesk_Navisworks_Exporters_2022_Win_64bit_dlm"
XCOPY "\\<<server>>\Autodesk\Navisworks Exporters\2022\Package\Autodesk_Navisworks_Exporters_2022_Win_64bit_dlm" "C:\Autodesk\Autodesk_Navisworks_Exporters_2022_Win_64bit_dlm" /s /h /i
CD C:\Autodesk\Autodesk_Navisworks_Exporters_2022_Win_64bit_dlm
Setup.exe --silent
My other CAD is a Cadillac and I like to Revit to the Max!