12 lines
285 B
PHP
12 lines
285 B
PHP
<?php
|
|
// Copyright 1999-2025. WebPros International GmbH. All rights reserved.
|
|
/**
|
|
* Script for APS Applications manipulation
|
|
*
|
|
*/
|
|
require_once('Loader.php');
|
|
Loader::registerAutoload();
|
|
|
|
$application = new Smb_Application_Cli_ReconfigureHelper(Os::factory());
|
|
$application->run();
|