Files
management-scripts/dbiarchitects/Create-SketchupActivationFile.bat
T

17 lines
489 B
Batchfile
Raw Normal View History

2019-11-11 19:22:39 -05:00
@echo off
rem Set the serial number
set SERIAL=UA-00036898-ALW
rem Set the authorization code
set AUTH=ae6e84bfc645d5
rem Set the activation directory
set SK_DIR=%PROGRAMDATA%\SketchUp\SketchUp 2019
rem Make the activation directory if it doesn't already exist
if not exist "%SK_DIR%" mkdir "%SK_DIR%"
rem Make the activation file.
rem Note: This will overwrite an existing activation file
echo {"serial_number":"%SERIAL%", "auth_code":"%AUTH%"} > "%SK_DIR%\activation_info.txt"