17 lines
489 B
Batchfile
17 lines
489 B
Batchfile
@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" |