Jump to content

[Release] Raxco PerfectDisk 2008 Professional v9.0.0 Build 76


johndoe74

Recommended Posts

License is stored in

#cs ----------------------------------------------------------------------------

AutoIt Version: 3.3.0.0
Author: myName

Raxco PerfectDisk Professional 10 Build 100 x86 & x64
Application site: [url="http://www.raxco.com/"]http://www.raxco.com/[/url]

Script Function:
Template AutoIt script.

#ce ----------------------------------------------------------------------------

; Script Start - Add your code below here

Opt("TrayIconDebug", 1)

; Installation folder
$InstallLocation = @ProgramFilesDir & "\Raxco\PerfectDisk2008\"
; License key hash
$LicenseKey = "0xffffffffffffffffffffffffffffffff"
; Create Desktop icon
$DesktopIcon = 1

$PreviousInstallation = RegRead("HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\{7B738CD9-D107-48C7-8E65-2E6639A39C8D}", "InstallLocation")
If FileExists($PreviousInstallation & "\PerfectDisk.exe") Then
MsgBox(0x40010, @ScriptName, "Please uninstall previous version of PerfectDisk before using this script", 4)
Exit
EndIf

If @OSArch = "X86" Then
; Installer file name
$Installer = "PerfectDisk_x86.msi"

; Run the installer
If $DesktopIcon = 0 Then
RunWait("msiexec.exe" & " /i" & ' "' & @ScriptDir & "\x86\" & $Installer & '"' & " /qb! /norestart")
ElseIf $DesktopIcon = 1 Then
RunWait("msiexec.exe" & " /i" & ' "' & @ScriptDir & "\x86\" & $Installer & '"' & " /qb! /norestart INSTALL_DESKTOP_ICON=1")
EndIf

Sleep(2000)

; Settings
RegWrite("HKCU\SOFTWARE\Raxco\PerfectDisk\10.0", "ShowSplashScreen", "REG_DWORD", 0)
RegWrite("HKCU\SOFTWARE\Raxco\PerfectDisk\10.0\Preferences", "Exit On Close", "REG_SZ", "true")
RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0", "AllowExternalHardDrives", "REG_DWORD", 1)
RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0", "AllowFlashDrives", "REG_DWORD", 1)
RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0", "EnableDebug", "REG_DWORD", 0)
RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0", "License", "REG_BINARY", $LicenseKey)
RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0", "LogSettings", "REG_BINARY", "0x0f00000001000000020000000000020000000000")
RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0", "PDManageLayoutIni", "REG_DWORD", 2)
RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0", "Wizard", "REG_DWORD", 15)
RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0\AutoUpdSettings", "Auto_Check", "REG_SZ", "No")
RegWrite("HKLM\SYSTEM\ControlSet001\Services\PDAgent", "Start", "REG_DWORD", 3)
RegWrite("HKLM\SYSTEM\ControlSet001\Services\PDEngine", "Start", "REG_DWORD", 3)
RegWrite("HKLM\SYSTEM\CurrentControlSet\Services\PDAgent", "Start", "REG_DWORD", 3)
RegWrite("HKLM\SYSTEM\CurrentControlSet\Services\PDEngine", "Start", "REG_DWORD", 3)
EndIf

If @OSArch = "X64" Then
; Installer file name
$Installer = "PerfectDisk_x64.msi"

; Run the installer
If $DesktopIcon = 0 Then
RunWait("msiexec.exe" & " /i" & ' "' & @ScriptDir & "\x64\" & $Installer & '"' & " /qb! /norestart")
ElseIf $DesktopIcon = 1 Then
RunWait("msiexec.exe" & " /i" & ' "' & @ScriptDir & "\x64\" & $Installer & '"' & " /qb! /norestart INSTALL_DESKTOP_ICON=1")
EndIf

Sleep(2000)

; Settings
RegWrite("HKCU\SOFTWARE\Raxco\PerfectDisk\10.0", "ShowSplashScreen", "REG_DWORD", 0)
RegWrite("HKCU\SOFTWARE\Raxco\PerfectDisk\10.0\Preferences", "Exit On Close", "REG_SZ", "true")
RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0", "AllowExternalHardDrives", "REG_DWORD", 1)
RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0", "AllowFlashDrives", "REG_DWORD", 1)
RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0", "EnableDebug", "REG_DWORD", 0)
RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0", "License", "REG_BINARY", $LicenseKey)
RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0", "LogSettings", "REG_BINARY", "0x0f00000001000000020000000000020000000000")
RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0", "PDManageLayoutIni", "REG_DWORD", 2)
RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0", "Wizard", "REG_DWORD", 15)
RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0\AutoUpdSettings", "Auto_Check", "REG_SZ", "No")
RegWrite("HKLM\SYSTEM\ControlSet001\Services\PDAgent", "Start", "REG_DWORD", 3)
RegWrite("HKLM\SYSTEM\ControlSet001\Services\PDEngine", "Start", "REG_DWORD", 3)
RegWrite("HKLM\SYSTEM\CurrentControlSet\Services\PDAgent", "Start", "REG_DWORD", 3)
RegWrite("HKLM\SYSTEM\CurrentControlSet\Services\PDEngine", "Start", "REG_DWORD", 3)
EndIf

Func OnAutoItStart()
; One script instance only
If WinExists(@ScriptName & '_Interpreter') Then Exit
AutoItWinSetTitle(@ScriptName & '_Interpreter')
EndFunc

Installation process will made a nice progress bar :D

Edited by radix
Link to comment
Share on other sites


License is stored in

#cs ----------------------------------------------------------------------------

AutoIt Version: 3.3.0.0
Author: myName

Raxco PerfectDisk Professional 10 Build 100 x86 & x64
Application site: [url="http://www.raxco.com/"]http://www.raxco.com/[/url]

Script Function:
Template AutoIt script.

#ce ----------------------------------------------------------------------------

; Script Start - Add your code below here

Opt("TrayIconDebug", 1)

; Installation folder
$InstallLocation = @ProgramFilesDir & "\Raxco\PerfectDisk2008\"
; License key hash
$LicenseKey = "0xffffffffffffffffffffffffffffffff"
; Create Desktop icon
$DesktopIcon = 1

$PreviousInstallation = RegRead("HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\{7B738CD9-D107-48C7-8E65-2E6639A39C8D}", "InstallLocation")
If FileExists($PreviousInstallation & "\PerfectDisk.exe") Then
MsgBox(0x40010, @ScriptName, "Please uninstall previous version of PerfectDisk before using this script", 4)
Exit
EndIf

If @OSArch = "X86" Then
; Installer file name
$Installer = "PerfectDisk_x86.msi"

; Run the installer
If $DesktopIcon = 0 Then
RunWait("msiexec.exe" & " /i" & ' "' & @ScriptDir & "\x86\" & $Installer & '"' & " /qb! /norestart")
ElseIf $DesktopIcon = 1 Then
RunWait("msiexec.exe" & " /i" & ' "' & @ScriptDir & "\x86\" & $Installer & '"' & " /qb! /norestart INSTALL_DESKTOP_ICON=1")
EndIf

Sleep(2000)

; Settings
RegWrite("HKCU\SOFTWARE\Raxco\PerfectDisk\10.0", "ShowSplashScreen", "REG_DWORD", 0)
RegWrite("HKCU\SOFTWARE\Raxco\PerfectDisk\10.0\Preferences", "Exit On Close", "REG_SZ", "true")
RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0", "AllowExternalHardDrives", "REG_DWORD", 1)
RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0", "AllowFlashDrives", "REG_DWORD", 1)
RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0", "EnableDebug", "REG_DWORD", 0)
RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0", "License", "REG_BINARY", $LicenseKey)
RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0", "LogSettings", "REG_BINARY", "0x0f00000001000000020000000000020000000000")
RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0", "PDManageLayoutIni", "REG_DWORD", 2)
RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0", "Wizard", "REG_DWORD", 15)
RegWrite("HKLM\SOFTWARE\Raxco\PerfectDisk\10.0\AutoUpdSettings", "Auto_Check", "REG_SZ", "No")
RegWrite("HKLM\SYSTEM\ControlSet001\Services\PDAgent", "Start", "REG_DWORD", 3)
RegWrite("HKLM\SYSTEM\ControlSet001\Services\PDEngine", "Start", "REG_DWORD", 3)
RegWrite("HKLM\SYSTEM\CurrentControlSet\Services\PDAgent", "Start", "REG_DWORD", 3)
RegWrite("HKLM\SYSTEM\CurrentControlSet\Services\PDEngine", "Start", "REG_DWORD", 3)
EndIf

If @OSArch = "X64" Then
; Installer file name
$Installer = "PerfectDisk_x64.msi"

; Run the installer
If $DesktopIcon = 0 Then
RunWait("msiexec.exe" & " /i" & ' "' & @ScriptDir & "\x64\" & $Installer & '"' & " /qb! /norestart")
ElseIf $DesktopIcon = 1 Then
RunWait("msiexec.exe" & " /i" & ' "' & @ScriptDir & "\x64\" & $Installer & '"' & " /qb! /norestart INSTALL_DESKTOP_ICON=1")
EndIf

Sleep(2000)

; Settings
RegWrite("HKCU\SOFTWARE\Raxco\PerfectDisk\10.0", "ShowSplashScreen", "REG_DWORD", 0)
RegWrite("HKCU\SOFTWARE\Raxco\PerfectDisk\10.0\Preferences", "Exit On Close", "REG_SZ", "true")
RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0", "AllowExternalHardDrives", "REG_DWORD", 1)
RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0", "AllowFlashDrives", "REG_DWORD", 1)
RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0", "EnableDebug", "REG_DWORD", 0)
RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0", "License", "REG_BINARY", $LicenseKey)
RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0", "LogSettings", "REG_BINARY", "0x0f00000001000000020000000000020000000000")
RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0", "PDManageLayoutIni", "REG_DWORD", 2)
RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0", "Wizard", "REG_DWORD", 15)
RegWrite("HKLM64\SOFTWARE\Raxco\PerfectDisk\10.0\AutoUpdSettings", "Auto_Check", "REG_SZ", "No")
RegWrite("HKLM\SYSTEM\ControlSet001\Services\PDAgent", "Start", "REG_DWORD", 3)
RegWrite("HKLM\SYSTEM\ControlSet001\Services\PDEngine", "Start", "REG_DWORD", 3)
RegWrite("HKLM\SYSTEM\CurrentControlSet\Services\PDAgent", "Start", "REG_DWORD", 3)
RegWrite("HKLM\SYSTEM\CurrentControlSet\Services\PDEngine", "Start", "REG_DWORD", 3)
EndIf

Func OnAutoItStart()
; One script instance only
If WinExists(@ScriptName & '_Interpreter') Then Exit
AutoItWinSetTitle(@ScriptName & '_Interpreter')
EndFunc

Installation process will made a nice progress bar :D

Thanks man, i completly missed the "License" point. :) Thanks!

Link to comment
Share on other sites

PD10 all you need to do is edit program files\Raxco\PerfectDisk10\Config.ini to add your registration in addition to other settings

#
# This configuration file for PerfectDisk allows you to configure certain features
# of PerfectDisk on installation. The file is only used during installation.
# During installation the information contained in this file is formatted and copied
# into the registry.
#
# Usage:
# 1. Use Config.ini
# 2. If any invalid parameters are specified, no values will be set, and
# this configuration file will be ignored.
# 3. If a value is left blank, the Default value will be used.
# 4. To use this file you must set 'Enabled' value under [Config.ini] section to 1.
# By default this value is set to 0 and Config.ini is ignored during the installation.

[Config.ini]
#Set this value to 1 to enable configuration with Config.ini file.
Enabled=0

[AutoUpdate]
# Install Options are:
# Notify: 1
# Always Install: 2
# Never Check: 3
InstallOption=1

# path to web/ftp server containing the PD10EN.ini
# URL must start with http:// or ftp://
# paths supported at Raxco are:
# Url=http://update.raxco.com/pub/download/PD100/English/x86
# Url=ftp://update3.raxco.com/pub/download/PD100/English/x86
Url=http://update.raxco.com/pub/download/PD100/English/x86

# Proxy server
FtpProxyServer=

# user name and password for the proxy server
Username=
Password=

# ini file name. This value should not be edited unless you are
# hosting AutoUpdate on your own server.
VersionIniFileName=PD10b100EN.ini

# Auto Update check Frequency
# EVERY WEEK = 1
# EVERY 2 WEEKS = 2
# EVERY 3 WEEKS = 3
# EVERY 4 WEEKS = 4
Frequency=2

# Day of the week to check for an update.
# Random=0, Sunday=1, Monday=2, Tuesday=3, Wednesday=4, Thursday=5, Friday=6, Saturday=7
# Default = 0
DayOfTheWeek=0

# Format is HH
# AutoUpdate will check the specified URL site for an update hourly only.
# Allowable values are NULL which is random or any hour from 00, 01, 02, ... to 23
# Default NULL
Time=NULL

[Schedules]
# indicate the number of schedules to create on install.
# If 1, the [Schedule1] section will be read.
# If 2, the [Schedule1] and [Schedule2] section will be read. You can create as
# many schedule sections as you need.
# Default = 0
NumberOfSchedules=0

[Schedule1]
# Default = MySchedule
ScheduleName="MySchedule"

# Comma delimited list of volumes.
# ALLDRIVES will select all volumes
# Acceptable formats C:, C:\, Path to Mountpoint followed by a back slash "\"
# Example: C:,H:\MyMountPoint\
# Do not insert spaces between items
# Default = ALLDRIVES
VolumeList=ALLDRIVES

# Parallel = 0
# Series = 1
# AutoDetect = 2
# Default = 1
Series=1

# Do not perform online defrag pass = 0
# Perform online defrag pass = 1
# Default = 1
Online=1

# Do not perform offline defrag pass = 0
# Perform offline defrag pass = 1
# Default = 0
Offline=0


# Do not perform free space clean = 0
# Empty Recycle Bin only = 1
# Clean Temporary Files only = 2
# Empty Recycle Bin and Temporary Files = 3
# Default = 0
ReclaimFreeSpace=0


# SmartPlacement = 0
# Defrag without SmartPlacement = 1
# Consolidate Free Space = 2
# Default = 0
DefragStrategy=0

# Do not OverrideDriveProperties = 0
# OverrideDriveProperties = 1
# Default = 0
OverrideDriveProperties=0

# Do not defragment Directories during an offline defrag pass = 0
# Defragment Directories during an offline defrag pass = 1
# Default = 0
OfflineDefragDirectories=0

# Do not defragment System Files during an offline defrag pass = 0
# Defragment System Files during an offline defrag pass = 1
# Default = 0
OfflineDefragSystemFiles=0

# Do not defragment the Pagefile during an offline defrag pass = 0
# Defragment the Pagefile during an offline defrag pass = 1
# Default = 0
OfflineDefragPagefile=0

# One Time = 1
# Daily = 2
# Weekly = 3
# Screen Saver = 4
# Full Auto = 5
# Analyze = 6
# Default = 2 (DAILY)
Type=2

# If Type = 2 (DAILY) allowable values are 1 to 31
# If Type = 3 (WEEKLY) allowable values are 1 to 52
# If Type = 6 (ANALYZE) allowable values are 1 to 31
# Default = 1
Frequency=1

# Format is HH:MM:SS
# If you create a one time schedule in the past, the schedule will never run.
# Default - 23:00:00
StartTime=23:00:00

# Format is MM/DD/YYYY
# If left blank, the start date will be set to the current date.
# If you create a one time schedule in the past, the schedule will never run.
# Default: empty (use current date)
StartDate=

# maximum duration for the schedule in hours. Format is an integer.
# Default = 0
MaxDuration=0

# Sunday=1, Monday=2, Tuesday=3, Wednesday=4, Thursday=5, Friday=6, Saturday=7
# Default = 1 (Sunday)
# Weekly schedule allow multiple days to be selected. Comma delimited for multiple days
DayOfTheWeek = 1

# The inverval in days between runs for Screen Saver or Full Auto schedules.
# Defaullt - 5
ScheduleInterval = 5

# The user activity timeout in minutes for Full Auto schedule.
# Default - 5
ActivityTimeout = 5

# The list of comma separated important processes for Full Auto schedule.
# The Full Auto schedule will not run if one of these processes are running.
# Default - the empty string
ImportantProcesses =

[Schedule2]
ScheduleName=
VolumeList=
Series=1
Online=1
Offline=0
ReclaimFreeSpace=0
DefragStrategy=1
OverrideDriveProperties=0
OfflineDefragDirectories=0
OfflineDefragSystemFiles=0
OfflineDefragPagefile=0
Type=2
Frequency=1
StartTime=23:00:00
StartDate=
MaxDuration=0
DayOfTheWeek=1
ScheduleInterval=
ActivityTimeout=
ImportantProcesses=

[DriveProperties]
# Drive Property Settings will be applied to all drives.
# This configuration file does not support different settings on different drives

# Integer between 1 and 999. Must be greater than FrequentlyModifiedAge
# Default = 60
RarelyModifiedAge=60

# Integer between 1 and 999. Must be less than RarelyModifiedAge
# Default = 30
FrequentlyModifiedAge=30

# Do not aggressively pack free space = 0
# Aggressively pack free space = 1
# Default = 0
AgressiveFreeSpaceConsolidation=0

# Fragmentation Threshold
# Integer 0 to 100
# Default = 0
DefragThreshold=0

# Do not Defragment Directories during offline passes = 0
# Defragment Directories during offline passes = 1
# Default = 0
OfflineDefragDirectories=0

# Do not defragment System Files during offline passes = 0
# Defragment System Files during offline passes = 1
# Default = 1
OfflineDefragSystemFiles=1

# Do not defragment the Pagefile during offline passes = 0
# Defragment the Pagefile during offline passes = 1
# Default = 0
OfflineDefragPagefile=0

# Do not perform an Offline defrag pass at every reboot = 0
# Perform an Offline defrag pass at every reboot = 1
# Default = 0
DefragEveryReboot=0

# Exclude files from the defragmentation pass (comma-delimited list).
# This is list of files and/or directories, the location of these must be preserved.
# Directories is excluded recursevely.
ExcludeFiles=

[AdvancedSettings]
# Let PerfectDisk manage the boot files = 0
# Let PerfectDisk manage all files listed in Layout.ini (XP and Vista Only) = 1
# Let Windows manage the layout.ini files (XP and Vista Only) = 2
# Do not place boot files for optimum boot speed = 3
# Default = 0
BootFileOptimizationType=0

# Do not log to the Application Event Log = 0
# Log to the Application Event Log = 1
# Default = 1
LogToEventLog=1

# Do not log to PerfectDisk log file = 0
# Log to PerfectDisk log file = 1
# Default = 1
LogToPDLog=1

# Do not stop defrag passes when on battery = 0
# Stop Defrag passes when on battery = 1
# Default = 1
StopDefragIfBattery=1

# Start Defrag passes when on battery = 0
# Do not start defrag passes when on battery = 1
# Default = 1
DoNotStartDefragIfBattery=1

# Reschedule missed schedules using the periodicity (daily, weekly) and start time = 0
# Run missed schedules when computer restarts = 1
# Default = 0
RunMissedSchedulesWhenComputerStarts=0

# Automatically adjust StealthPatrol schedule thresholds
# Default = 0
AutoAdjustThresholds=0

# Kernel mode CPU threshold for StealthPatrol schedule (in %)
# Default = 10
KernelTimeThreshold=10
#
# User mode CPU threshold for StealthPatrol schedule (in %)
# Default = 10
UserTimeThreshold=10
#
# IO activity threshold for StealthPatrol schedule (in bytes/second)
# Default = 80000
IoThreshold=80000


# Kernel mode CPU threshold of for StealthPatrol schedule
# for the client in a virtual environment, measured on the host computer(in %)
# Default = 10
VmHostKernelTimeThreshold=10
#
# User mode CPU threshold for StealthPatrol schedule
# for the client in a virtual environment, measured on the host computer(in %)
# Default = 10
VmHostUserTimeThreshold=10
#
# IO activity threshold for StealthPatrol schedule
# for the client in a virtual environment, measured on the host computer (in bytes/second)
# Default = 80000
VmHostIoThreshold=80000


# Do not wake computer from Hibernate/Standby to run a scheduled defrag pass = 0
# Wake computer from Hibernate/Standby to run a scheduled defrag pass = 1
# Default = 0
WakeComputerFromHibernateToRunSchedule=0

# Allow Defragging USB/Firewire connected hard drives = 1
# Do not allow defragging USB/Firewire connected hard drives = 0
# Default = 0
DefragRemovableHardDrives=0

# Allow Defragging Flash drives = 1
# Do not allow defragging Flash drives = 0
# Default = 0
DefragFlash=0

# CPU Priority Idle = 0
# CPU Priority Normal = 1
# CPU Priority Above Normal = 2
# Default = 1
CPUPriority=1

# Throttle Disk I/O = 1
# Do Not Throttle Disk I/O = 0
# Default = 0
IOThrottling=0

[ManageFromConsole]
# Use management from PerfectDisk Command Center using TCP/IP via dedicated port.
# If this value is set to 0, PerfectDisk local client will use DCOM management only.
# If this value is in range 10..65535, PerfectDisk local client will use management using TCP/IP via this port.
ManageOnPort=0

[Firewall]
# When PerfectDisk is used in a managed network run windows XP Service Pack 2, Vista or Windows 2003 Server,
# the built in firewall needs to be configured to allow PerfectDisk to communicate
# through the firewall. This requires:
# Opening PORT 135 (RPC)
# Opening PORT 445 (DCOM)
# Opening PORT, mentioned in section ManageFromConsole, ManageOnPort value.
# Turning on REMOTEADMIN (authorizing remote administration)
# Allow File and Print Sharing (used for credential validation)
# Adding PDAgent.exe, PDEngine.exe and PDEnginePS.dll to the allowable binaries list.
# Default = 0
# Configure the firewall = 1
# Do not configure firewall = 0
ConfigureFirewall=0

[UserInterface]
# Control UI close button behavior.
# Close PerfectDisk when exiting = 0
# Minimize to system tray when exiting = 1
# Default = 1
AllowTrayIcon =1

# Allow to have free space management tab in the PerfectDisk user interface. If this value is set to 0,
# free space management tab will be removed from the application.
# Default = 1
AllowFreeSpace=1

# Allow to access the Advanced property page.
# Default = 1
AllowAdvanceConfiguration=1


# Allow SplashScreen to Show.
# Default = 1
AllowSplashScreen=1


# Allow Welcome Wizard to Show.
# Default = 1
AllowWelcomeWizard=1


[License]
# Allow inputing a license key on install
# LicenseKey = NNN-NNNNNNN-NNNNNN-NNNN
# where NNN-NNNNNNN-NNNNNN-NNNN is a valid license key.
# default = null
LicenseKey=NULL

Edited by ricktendo64
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...