Download the .exe from Download Dargon Software
Run it and it will extract everything to:
C:\Users\%Username%\AppData\Local\Temp\Dragon
Copy into the location on the network of your choice and then you can use these scripts below to install it.
############################# INSTALLATION SCRIPT ############################################
@echo off
REM This script kills specific processes and installs Dragon16.msi with a user-entered serial key using a pop-up window.
REM Kill specified processes
taskkill /f /im msedge.exe
taskkill /f /im outlook.exe
taskkill /f /im chrome.exe
taskkill /f /im winword.exe
taskkill /f /im powerpnt.exe
taskkill /f /im msaccess.exe
taskkill /f /im excel.exe
taskkill /f /im onenote.exe
taskkill /f /im mspub.exe
taskkill /f /im AcroRd32.exe
REM Use VBScript to create a pop-up window for serial key entry
set "input="
for /f "delims=" %%I in ('cscript //nologo "%~f0?.wsf"') do set "input=%%I"
REM Install Dragon 16.msi with the entered serial key
MSIEXEC /i "%~dp0Dragon 16.msi" SERIALNUMBER=%input% SKIP_PENDINGREBOOT_CHECK=1 ACCEPTEULA=1 RebootYesNo=No /log %~dp0Dragon16InstallLog.log /qn
exit /b 0
<job><script language="VBScript">
result = InputBox("Enter SERIALNumber (XXXXX-XXX-XXXX-XXXX-XX):", "Serial Key Input")
WScript.Echo result
</script></job>
############################# UN-INSTALLATION SCRIPT ############################################
@echo off
REM The '@echo off' command is used to turn off the display of each command line in the batch script, making the output cleaner.
REM The following lines use 'taskkill' to forcefully terminate specific processes (msedge.exe, outlook.exe, chrome.exe).
REM Kill specified processes
taskkill /f /im msedge.exe
taskkill /f /im outlook.exe
taskkill /f /im chrome.exe
taskkill /f /im winword.exe
taskkill /f /im powerpnt.exe
taskkill /f /im msaccess.exe
taskkill /f /im excel.exe
taskkill /f /im onenote.exe
taskkill /f /im mspub.exe
taskkill /f /im AcroRd32.exe
REM The next line uninstalls a program (identified by its product code {A6D7FC58-BA8E-48E2-9AF5-3CBAD1711695}) using 'MsiExec.exe'.
REM '/X' specifies uninstall, '/log' specifies the log file location and name ('%~dp0' represents the current directory), '/qn' makes it silent.
MsiExec.exe /X{A6D7FC58-BA8E-48E2-9AF5-3CBAD1711695} /log %~dp0Dragon16UninstallLog.log /qn
##############################################################################################
Comments