2017-10-31 1 views
0

Scene Builder을 설치하기 위해 Chocolatey 패키지를 만들고 싶습니다. 그래서 씬 빌더를 명령 줄에 자동으로 설치하는 방법을 찾고 있습니다.SceneBuilder의 자동 설치 매개 변수는 어떻게 찾습니까?

설치 프로그램 (SceneBuilder-8.4.1.exe)을 다운로드하고 아래와 같이 설치해보십시오.

> SceneBuilder-8.4.1.exe /silent 

그러나 설치 프로그램을 두 번 클릭하는 경우와 마찬가지로 설치 대화 상자가 시작됩니다.

Scene Builder 설치 프로그램에 자동으로 설치할 수 있습니까?

답변

0

사용되는 설치 프로그램의 종류를 확인하고 자동 설치 플래그를 찾아 보거나 실험적으로 시도해 볼 수 있습니다. 설치 프로그램에 "도움"매개 변수는 약간의 침묵 스위치와 일부 문서를 나타냅니다 통과하면 Chocolatey 문서는 뭔가이

choco-help

https://chocolatey.org/docs/helpers-install-chocolatey-package#silentargs-string

처럼 말한다. http://www.jrsoftware.org/ishelp/index.php?topic=setupcmdline

Universal Silent Switch Finder이이 Inno Setup으로 설치하고 일부 스위치를 제안 말했다

--------------------------- 
Setup 
--------------------------- 
The Setup program accepts optional command line parameters. 



/HELP, /? 

Shows this information. 

/SP- 

Disables the This will install... Do you wish to continue? prompt at the beginning of Setup. 

/SILENT, /VERYSILENT 

Instructs Setup to be silent or very silent. 

/SUPPRESSMSGBOXES 

Instructs Setup to suppress message boxes. 

/LOG 

Causes Setup to create a log file in the user's TEMP directory. 

/LOG="filename" 

Same as /LOG, except it allows you to specify a fixed path/filename to use for the log file. 

/NOCANCEL 

Prevents the user from cancelling during the installation process. 

/NORESTART 

Prevents Setup from restarting the system following a successful installation, or after a Preparing to Install failure that requests a restart. 

/RESTARTEXITCODE=exit code 

Specifies a custom exit code that Setup is to return when the system needs to be restarted. 

/CLOSEAPPLICATIONS 

Instructs Setup to close applications using files that need to be updated. 

/NOCLOSEAPPLICATIONS 

Prevents Setup from closing applications using files that need to be updated. 

/RESTARTAPPLICATIONS 

Instructs Setup to restart applications. 

/NORESTARTAPPLICATIONS 

Prevents Setup from restarting applications. 

/LOADINF="filename" 

Instructs Setup to load the settings from the specified file after having checked the command line. 

/SAVEINF="filename" 

Instructs Setup to save installation settings to the specified file. 

/LANG=language 

Specifies the internal name of the language to use. 

/DIR="x:\dirname" 

Overrides the default directory name. 

/GROUP="folder name" 

Overrides the default folder name. 

/NOICONS 

Instructs Setup to initially check the Don't create a Start Menu folder check box. 

/TYPE=type name 

Overrides the default setup type. 

/COMPONENTS="comma separated list of component names" 

Overrides the default component settings. 

/TASKS="comma separated list of task names" 

Specifies a list of tasks that should be initially selected. 

/MERGETASKS="comma separated list of task names" 

Like the /TASKS parameter, except the specified tasks will be merged with the set of tasks that would have otherwise been selected by default. 

/PASSWORD=password 

Specifies the password to use. 



For more detailed information, please visit http://www.jrsoftware.org/ishelp/index.php?topic=setupcmdline 
--------------------------- 
OK 
--------------------------- 

PS> ./SceneBuilder-9.0.1.exe /? 

.

ussf

+0

완벽한 답변! 'SceneBuilder-9.0.1.exe'에'/?'매개 변수가 있다는 것을 알지 못했습니다. '/?'매개 변수는'SceneBuilder-8.4.1.exe'에서 작동하지 않습니다. – kai2nenobu

+0

그들은 설치 기술을 8에서 9 사이로 전환 할 수 있습니다. ussf 앱은 상당히 유용합니다. 나는 그것을 시도 할 것입니다. –

관련 문제