SQL Server 2012 无人值守安装(加入新实例)
- 方法1,通过指定条个參数安装
setup.exe /Q /IACCEPTSQLSERVERLICENSETERMS /ACTION=install /PID=<validpid> /FEAT
URES=SQL,AS,RS,IS,Tools
/INSTANCENAME=MSSQLSERVER /SQLSVCACCOUNT="MyDomain\MyAccount"
/SQLSVCPASSWORD="************" /SQLSYSADMINACCOUNTS="MyDomain\MyAccount "
/AGTSVCACCOUNT="MyDomain\MyAccount" /AGTSVCPASSWORD="************"
/ASSVCACCOUNT="MyDomain\MyAccount" /ASSVCPASSWORD="************"
/RSSVCACCOUNT="MyDomain\MyAccount" /RSSVCPASSWORD="************"
/ISSVCAccount="MyDomain\MyAccount" /ISSVCPASSWORD="************"
/ASSYSADMINACCOUNTS="MyDomain\MyAccount"
- 方法2,指定配置文件安装
I:\>Setup.exe /ConfigurationFile="d:\ConfigurationFile.ini"
Microsoft (R) SQL Server 2012 11.00.2100.60
版权全部 (c) Microsoft Corporation。保留全部权利。
用另外一种方法安装。
下面是我的配置文件,为sql server 2012 加入名为I01的实例。;是凝视,像
; Required to acknowledge acceptance of the license terms.
IACCEPTSQLSERVERLICENSETERMS="True"
注意
;UIMODE="False"
注意
二选一,不然报错
; 安装程序将不会显示不论什么用户界面。 QUIET="False" ; 安装程序将仅仅显示运行进度,而不须要不论什么用户交互。 QUIETSIMPLE="True"<
注意; 默认值为 Windows 身份验证。使用 "SQL" 表示採用混合模式身份验证。 SECURITYMODE="SQL"
SAPWD="1qaz2WSX"
下面是完整文件,
;SQL Server 2012 Configuration File
[OPTIONS]
; Required to acknowledge acceptance of the license terms.
IACCEPTSQLSERVERLICENSETERMS="True"
; 指定安装程序的工作流。如 INSTALL、UNINSTALL 或 UPGRADE。 这是必需的參数。 ACTION="Install" ; 尚没有定义命令行參数 ENU 的具体帮助。 ENU="False" ; 用于控制用户界面行为的參数。 有效值对于完整 UI 为 Normal,对于简化的 UI 为 AutoAdvance,为 EnableUIOnServerCore 则跳过 Server Core 安装程序 GUI 块。 ;UIMODE="False" ; 安装程序将不会显示不论什么用户界面。 QUIET="False" ; 安装程序将仅仅显示运行进度。而不须要不论什么用户交互。 QUIETSIMPLE="True" ; 指定 SQL Server 安装程序是否应发现和包含产品更新。 有效值是 True 和 False 或者 1 和 0。默认情况下,SQL Server 安装程序将包含找到的更新。 UpdateEnabled="False" ; 指定要安装、卸载或升级的功能。顶级功能列表包含 SQL、AS、RS、IS、MDS 和工具。SQL 功能将安装数据库引擎、复制、全文和 Data Quality Services (DQS)server。 工具功能将安装管理工具、联机丛书组件、SQL Server Data Tools 和其它共享组件。 FEATURES=SQLENGINE,REPLICATION,FULLTEXT,DQ ; 指定 SQL Server 安装程序将获取产品更新的位置。有效值为 "MU" (以便搜索产品更新)、有效文件夹路径以及 .\MyUpdates 或 UNC 共享文件夹之类的相对路径。默认情况下,SQL Server 安装程序将通过 Window Server Update Services 搜索 Microsoft Update 或 Windows Update 服务。 UpdateSource="MU" ; 显示命令行參数使用方法 HELP="False" ; 指定应将具体的安装程序日志传送到控制台。 INDICATEPROGRESS="False" ; 指定安装程序应该安装到 WOW64 中。IA64 或 32 位系统不支持此命令行參数。 X86="False" ; 指定共享组件的安装根文件夹。在已安装共享组件后。此文件夹保持不变。 INSTALLSHAREDDIR="C:\Program Files\Microsoft SQL Server" ; 指定 WOW64 共享组件的安装根文件夹。在已安装 WOW64 共享组件后,此文件夹保持不变。 INSTALLSHAREDWOWDIR="C:\Program Files (x86)\Microsoft SQL Server" ; 指定默认实例或命名实例。MSSQLSERVER 是非 Express 版本号的默认实例,SQLExpress 则是 Express 版本号的默认实例。 在安装 SQL Server 数据库引擎(SQL)、Analysis Services (AS)或 Reporting Services (RS)时,此參数是必需的。 INSTANCENAME="I01" ; 为您已指定的 SQL Server 功能指定实例 ID。SQL Server 文件夹结构、注冊表结构和服务名称将包含 SQL Server 实例的实例 ID。 INSTANCEID="I01" ; 指定能够收集 SQL Server 功能使用情况数据。并将数据发送到 Microsoft。 指定 1 或 True 将启用此功能。指定 0 或 False 将禁用此功能。 SQMREPORTING="False" ; 指定是否可将错误报告给 Microsoft 以便改进以后的 SQL Server 版本号。指定 1 或 True 将启用此功能。指定 0 或 False 将禁用此功能。 ERRORREPORTING="False" ; 指定安装文件夹。 INSTANCEDIR="e:\Program Files\Microsoft SQL Server" ; 代理帐户名 AGTSVCACCOUNT="NT Service\SQLAgent$I01" ; 安装后自己主动启动服务。 AGTSVCSTARTUPTYPE="Manual" ; CM 程序块 TCP 通信port COMMFABRICPORT="0" ; 矩阵怎样使用专用网络 COMMFABRICNETWORKLEVEL="0" ; 怎样保护程序块间的通信 COMMFABRICENCRYPTION="0" ; CM 程序块使用的 TCP port MATRIXCMBRICKCOMMPORT="0" ; SQL Server 服务的启动类型。 SQLSVCSTARTUPTYPE="Manual" ; 启用 FILESTREAM 功能的级别(0、1、2 或 3)。 FILESTREAMLEVEL="0" ; 设置为 "1" 可为 SQL Server Express 启用 RANU。 ENABLERANU="False" ; 指定要用于数据库引擎的 Windows 排序规则或 SQL 排序规则。 SQLCOLLATION="Chinese_PRC_CI_AS" ; SQL Server 服务的帐户: 域\用户或系统帐户。 SQLSVCACCOUNT="NT Service\MSSQL$I01" ; 要设置为 SQL Server 系统管理员的 Windows 帐户。 SQLSYSADMINACCOUNTS="ADMINISTRATOR" ; 默认值为 Windows 身份验证。使用 "SQL" 表示採用混合模式身份验证。 SECURITYMODE="SQL"
SAPWD="1qaz2WSX" ; 将当前用户设置为 SQL Server 2012 Express 的数据库引擎系统管理员。 ADDCURRENTUSERASSQLADMIN="False" ; 指定 0 禁用 TCP/IP 协议,指定 1 则启用该协议。 TCPENABLED="1" ; 指定 0 禁用 Named Pipes 协议,指定 1 则启用该协议。 NPENABLED="0" ; Browser 服务的启动类型。 BROWSERSVCSTARTUPTYPE="Manual" ; 加入输入參数 FTSVCACCOUNT 的描写叙述 FTSVCACCOUNT="NT Service\MSSQLFDLauncher$I01"
1 挂载镜像
2进入命令行:
3执行
I:\>Setup.exe /ConfigurationFile="d:\ConfigurationFile.ini"
4安装完毕
怎样快捷编写配置文件,通过改动ui安装过程中的向导,生民第一个配置文件。配置保存在下图的路径中,打开并按例如以下改动它
加入
; Required to acknowledge acceptance of the license terms.
IACCEPTSQLSERVERLICENSETERMS="True"
不显示ui
;UIMODE="False"
注意
二选一。不然报错
; 安装程序将不会显示不论什么用户界面。 QUIET="False" ; 安装程序将仅仅显示运行进度。而不须要不论什么用户交互。 QUIETSIMPLE="True"
注意; 默认值为 Windows 身份验证。使用 "SQL" 表示採用混合模式身份验证。 SECURITYMODE="SQL"
SAPWD="1qaz2WSX"
watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvd2FuZ3pocHdhbmc=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt="">
HELP
Microsoft Windows [版本号 6.1.7601]
版权全部 (c) 2009 Microsoft Corporation。保留全部权利。 C:\Users\Patrick>I: I:\>setup.exe /help
Microsoft (R) SQL Server 2012 11.00.2100.60
版权全部 (c) Microsoft Corporation。 保留全部权利。 使用方法:
setup.exe /[选项]={value} /[选项]={value} ... 选项:
ACTION 指定安装程序的工作流。如 INSTALL、UNINSTALL 或 UPG
RADE。 这是必需的參数。
ADDCURRENTUSERASSQLADMIN Provision current user as a Database Engine
system administrator for SQL Server 2012 Express.
AGTDOMAINGROUP Either domain user name or system account
AGTSVCACCOUNT Either domain user name or system account
AGTSVCPASSWORD Password for domain user name. Not required for
system account
AGTSVCSTARTUPTYPE Startup type for the SQL Server Agent service.
Supported values are Manual, Automatic or
Disabled.
ALLINSTANCES 指定全部实例都将包含在安装操作中。仅仅有在应用修补程
序时才支持此參数。
ALLOWUPGRADEFORSSRSSHAREPOIN
RSInputSettings_AllowUpgradeForSSRSSharePointMode_
Description
ASBACKUPDIR The location for the Analysis Services backup
files.
ASCOLLATION The collation used by Analysis Services.
ASCONFIGDIR The location for the Analysis Services
configuration files.
ASDATADIR The location for the Analysis Services data
files.
ASLOGDIR The location for the Analysis Services log files.
ASPROVIDERMSOLAP Specifies if the MSOLAP provider can run in
process.
ASSERVERMODE Specifies the server mode of the Analysis
Services instance. Valid values are
MULTIDIMENSIONAL and TABULAR. The default value
is MULTIDIMENSIONAL.
ASSVCACCOUNT The account used by the Analysis Services
service.
ASSVCPASSWORD The password for the Analysis Services service
account.
ASSVCSTARTUPTYPE Controls the service startup type setting for the
service.
ASSYSADMINACCOUNTS Specifies the list of administrator accounts to
provision.
ASTEMPDIR The location for the Analysis Services temporary
files.
BROWSERSVCSTARTUPTYPE Startup type for Browser Service.
CLTCTLRNAME The computer name that the client communicates
with for the Distributed Replay Controller
service.
CLTRESULTDIR The result directory for the Distributed Replay
Client service.
CLTSTARTUPTYPE The startup type for the Distributed Replay
Client service.
CLTSVCACCOUNT The account used by the Distributed Replay Client
service.
CLTSVCPASSWORD The password for the Distributed Replay Client
service account.
CLTWORKINGDIR The working directory for the Distributed Replay
Client service.
CLUSTERPASSIVE 指定 SQL Server 安装程序不应管理 SQL Server 服务。 此选项应该仅在非
Microsoft 群集环境中使用。 COMMFABRICENCRYPTION MATRIXCOMMMESSAGEPROTECTION {0,1}
COMMFABRICNETWORKLEVEL MATRIXCOMMNETWORKISOLATION {0,1}
COMMFABRICPORT MATRIXCOMMPORT <port>
CONFIGURATIONFILE 指定将用于安装程序的配置文件。
CONFIRMIPDEPENDENCYCHANGE Indicates that the change in IP address resource
dependency type for the SQL Server multi-subnet
failover cluster is accepted.
CTLRSTARTUPTYPE The startup type for the Distributed Replay
Controller service.
CTLRSVCACCOUNT The account used by the Distributed Replay
Controller service.
CTLRSVCPASSWORD The password for the Distributed Replay
Controller service account.
CTLRUSERS The Windows account(s) used to grant permission
to the Distributed Replay Controller service.
ENABLERANU Set to "1" to enable RANU for SQL Server Express.
ENU 尚没有定义命令行參数 ENU 的具体帮助。 ERRORREPORTING 指定是否可将错误报告给 Microsoft 以便改进以后的 SQ
L Server 版本号。指定 1
或 True 将启用此功能。指定 0 或 False 将禁用此功能
。 FAILOVERCLUSTERDISKS Specifies a cluster shared disk to associate with
the SQL Server failover cluster instance.
FAILOVERCLUSTERGROUP Specifies the name of the cluster group for the
SQL Server failover cluster instance.
FAILOVERCLUSTERIPADDRESSES Specifies an encoded IP address. The encodings
are semicolon-delimited (;), and follow the
format <IP Type>;<address>;<network name>;<subnet
mask>. Supported IP types include DHCP, IPV4, and
IPV6.
FAILOVERCLUSTERNETWORKNAME Specifies the name of the SQ LServer failover
cluster instance. This name is the network name
that is used to connect to SQL Server services.
FAILOVERCLUSTERROLLOWNERSHIP Specifies whether the upgraded nodes should take
ownership of the failover instance group or not.
Use 0 to retain ownership in the legacy nodes, 1
to make the upgraded nodes take ownership, or 2
to let SQL Server Setup decide when to move
ownership.
FEATURES 指定要安装、卸载或升级的功能。顶级功能列表包含 SQL
、AS、RS、IS、MDS 和工具。SQL
功能将安装数据库引擎、复制、全文和 Data Quality Se
rvices
(DQS)服务器。工具功能将安装管理工具、联机丛书组件
、SQL Server Data Tools
和其它共享组件。
FILESTREAMLEVEL Level to enable FILESTREAM feature at (0, 1, 2 or
3).
FILESTREAMSHARENAME Name of Windows share to be created for
FILESTREAM File I/O.
FTSVCACCOUNT User account for Full-text Filter Daemon Host.
FTSVCPASSWORD User password for Full-text Filter Daemon Host
account.
FTUPGRADEOPTION Full-text catalog upgrade option.
HELP 显示命令行參数使用方法
IACCEPTSQLSERVERLICENSETERMS 通过指定此參数并接受 SQL Server 许可条款,您确认已
阅读并理解使用条款的内容。
INDICATEPROGRESS 指定应将具体的安装程序日志传送到控制台。 INSTALLSHAREDDIR 指定共享组件的安装根文件夹。在已安装共享组件后,此目
录保持不变。
INSTALLSHAREDWOWDIR 指定 WOW64 共享组件的安装根文件夹。 在已安装 WOW64 共
享组件后,此文件夹保持不变。
INSTALLSQLDATADIR The Database Engine root data directory.
INSTANCEDIR 指定实例根文件夹。
INSTANCEID 为您已指定的 SQL Server 功能指定实例 ID。SQL Serve
r
文件夹结构、注冊表结构和服务名称将包含 SQL Server 实
例的实例 ID。
INSTANCENAME 指定默认实例或命名实例。MSSQLSERVER 是非 Express
版本号的默认实例,SQLExpress 则是 Express 版本号的默认
实例。 在安装 SQL
Server 数据库引擎(SQL)、Analysis Services (AS)或
Reporting Services (RS)时,此參数是必需的。
ISSVCACCOUNT Either domain user name or system account.
ISSVCPASSWORD Password for domain user.
ISSVCSTARTUPTYPE Automatic, Manual or Disabled.
MATRIXCMBRICKCOMMPORT MATRIXCMBRICKCOMMPORT portNumber
MATRIXCMSERVERNAME MATRIXCMSERVERNAME hostName\instanceName
MATRIXNAME MATRIXNAME=<name>
NPENABLED Specify 0 to disable or 1 to enable the Named
Pipes protocol.
PID 指定 SQL Server 产品密钥以配置您要使用哪个版本号。
QUIET 安装程序将不会显示不论什么用户界面。
QUIETSIMPLE 安装程序将仅仅显示运行进度,而不须要不论什么用户交互。 ROLE 尚没有定义命令行參数 ROLE 的具体帮助。
RSCATALOGSERVERINSTANCENAME The SQL Server server for the report server
catalog database.
RSINSTALLMODE RSInputSettings_RSInstallMode_Description
RSSHPINSTALLMODE RSInputSettings_RSInstallMode_Description
RSSVCACCOUNT Specify the service account of the report server.
This value is required. If you omit this value,
Setup will use the default built-in account for
the current operating system (either
NetworkService or LocalSystem). If you specify a
domain user account, the domain must be under 254
characters and the user name must be under 20
characters. The account name cannot contain the
following characters:
" / \ [ ] : ; | = , + * ? < >
RSSVCPASSWORD Specify a strong password for the account. A
strong password is at least 8 characters and
includes a combination of upper and lower case
alphanumeric characters and at least one symbol
character. Avoid spelling an actual word or name
that might be listed in a dictionary.
RSSVCSTARTUPTYPE Specifies the startup mode for the Report Server
service. Valid values include Manual, Automatic,
and Disabled. The default value for StartupType
is Manual, where the server is started when a
request is received.
RSUPGRADEDATABASEACCOUNT RSInputSettings_RSInstallMode_Description
RSUPGRADEPASSWORD RSInputSettings_RSInstallMode_Description
RULES 指定要执行的规则 ID 或规则组 ID 的列表。 SAPWD Password for SQL Server sa account.
SECURITYMODE The default is Windows Authentication. Use "SQL"
for Mixed Mode Authentication.
SQLBACKUPDIR Default directory for the Database Engine backup
files.
SQLCOLLATION Specifies a Windows collation or an SQL collation
to use for the Database Engine.
SQLSVCACCOUNT Account for SQL Server service: Domain\User or
system account.
SQLSVCPASSWORD A SQL Server service password is required only
for a domain account.
SQLSVCSTARTUPTYPE Startup type for the SQL Server service.
SQLSYSADMINACCOUNTS Windows account(s) to provision as SQL Server
system administrators.
SQLTEMPDBDIR Directory for Database Engine TempDB files.
SQLTEMPDBLOGDIR Directory for the Database Engine TempDB log
files.
SQLUSERDBDIR Default directory for the Database Engine user
databases.
SQLUSERDBLOGDIR Default directory for the Database Engine user
database logs.
SQMREPORTING 指定能够收集 SQL Server 功能使用情况数据,并将数据
发送到 Microsoft。 指定 1
或 True 将启用此功能,指定 0 或 False 将禁用此功能
。 TCPENABLED Specify 0 to disable or 1 to enable the TCP/IP
protocol.
UIMODE 用于控制用户界面行为的參数。 有效值对于完整 UI 为 N
ormal,对于简化的 UI 为
AutoAdvance,为 EnableUIOnServerCore 则跳过 Server Core 安装程序 GUI 块。
UpdateEnabled 指定 SQL Server 安装程序是否应发现和包含产品更新。
有效值是 True 和 False
或者 1 和 0。默认情况下,SQL Server 安装程序将包含
找到的更新。
UpdateSource 指定 SQL Server 安装程序将获取产品更新的位置。有效
值为 "MU"
(以便搜索产品更新)、有效文件夹路径以及 .\MyUpdates
或 UNC
共享文件夹之类的相对路径。 默认情况下,SQL Server 安
装程序将通过 Window
Server Update Services 搜索 Microsoft Update 或
Windows Update 服务。
X86 指定安装程序应该安装到 WOW64 中。IA64 或 32 位系统
不支持此命令行參数。 完整的无人參与安装演示样例,显示全部必需的參数: setup.exe /Q /IACCEPTSQLSERVERLICENSETERMS /ACTION=install /PID=<validpid> /FEAT
URES=SQL,AS,RS,IS,Tools
/INSTANCENAME=MSSQLSERVER /SQLSVCACCOUNT="MyDomain\MyAccount"
/SQLSVCPASSWORD="************" /SQLSYSADMINACCOUNTS="MyDomain\MyAccount "
/AGTSVCACCOUNT="MyDomain\MyAccount" /AGTSVCPASSWORD="************"
/ASSVCACCOUNT="MyDomain\MyAccount" /ASSVCPASSWORD="************"
/RSSVCACCOUNT="MyDomain\MyAccount" /RSSVCPASSWORD="************"
/ISSVCAccount="MyDomain\MyAccount" /ISSVCPASSWORD="************"
/ASSYSADMINACCOUNTS="MyDomain\MyAccount" 按随意键退出... ^C
I:\>
PowerShell 批量启动关闭实例:
start test instances .bat
@powershell -command "Get-Service |Where-Object {$_.Name -like 'MSSQL$I*'}|Start-Service -ErrorAction SilentlyContinue"
@pause
stop test instances .bat
@powershell -Command " Get-Service |Where-Object {$_.Name -like 'MSSQL$I*'}|Stop-Service -ErrorAction SilentlyContinue" @pause
效果图
SQL Server 2012 无人值守安装(加入新实例)的更多相关文章
- SQL Server 2012 无人值守安装
方法1,通过指定条个參数安装 setup.exe /Q /IACCEPTSQLSERVERLICENSETERMS /ACTION=install /PID=<validpid> /F ...
- 基于iSCSI的SQL Server 2012群集测试(三)--SQL Server 2012群集安装总结
5.SQL Server 2012群集安装总结 5.1 群集与非群集的安装区别总结 SQL Server虚拟名称: 非群集环境下,本地服务器的名称就是SQL Server服务器名称:但在群集环境下,由 ...
- Microsoft SQL Server 2012 数据库安装图解教程
本文部分引用以下文章: SQL Server 2012 安装图解教程(附sql2012下载地址)_MsSql_脚本之家 http://www.jb51.net/article/36049.htm SQ ...
- (转)SQL Server 2012 手动安装帮助文档+排错
逆天SQL Server 2012装的不要不要的,最后发现...竟然没帮助文档...汗啊!原来它跟vs一样要自己装帮助文档...好吧,官网一下载,妹的...报错...然后就让我们还原这个安装过程以及逆 ...
- Step by step SQL Server 2012的安装
原创地址:http://www.cnblogs.com/jfzhu/p/4006744.html 转载请注明出处 计算机要先设置固定ip,加入域,然后安装账号需要有本地管理员的权限. 演示环境的操作系 ...
- SQL Server 2012 手动安装帮助文档+排错
逆天SQL Server 2012装的不要不要的,最后发现...竟然没帮助文档...汗啊!原来它跟vs一样要自己装帮助文档...好吧,官网一下载,妹的...报错...然后就让我们还原这个安装过程以及逆 ...
- 关于SQL Server 2012 手动安装帮助文档
大家以为安装帮助文档很简单,但是其实不然,这其中还有那么一点点道道.今天我就来给大家演示一下! 首先到microsoft官网上下载Microsoft SQL Server 2012 产品文档,然后将. ...
- SQL SERVER 2012文件表(FILETABLE)新体验之一
SQLSERVER 2012 文件表功能很COOL,让我们体验一下吧. 1,创建数据库 [sql] DREATE DATABASE FileTableTest ON PRIMARY ( NA ...
- Windows SQL Server 2012 R2 安装Intel I217-V/I218-V网卡驱动(转)
1.下载Intel官方驱动: https://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&DwnldID=23071&lang=zh ...
随机推荐
- Eclipse with ADT的安装和使用
我们从安卓官方网站下载下来的eclipse是捆绑好了ADT的,所以不用自己安装插件. 我现在在这个目录下简历一个空的文件夹--virtual,用来来存放虚拟机. 然后,在我的电脑上右键->属性, ...
- Ember.js 1.0 RC6 发布,JavaScript 框架
Ember.js 1.0 发布了第 6 个 RC 版本,下载地址:https://github.com/emberjs/ember.js/tree/v1.0.0-rc.6 该版本包含众多的改进记录,详 ...
- Visual Studio 2013中引入Web Service的简单方法visual studio 引用 wsdl
http://blog.csdn.net/wangzhongbo_24/article/details/49954191 Web Service有三种表示方式 三种方式分别为WSDL.Endpoint ...
- Python 的 Flask 框架安装应用
Flask是一个使用 Python 编写的轻量级 Web 应用框架.其 WSGI 工具箱採用 Werkzeug ,模板引擎则使用 Jinja2 ,使用 BSD 授权. Flask也被称为 " ...
- C语言中将0到1000的浮点数用强制指针类型转换的方式生成一幅图像
搞过计算机图像的人都知道,图像中的每一个像素通常为一个整型数,它可以分成4个无符号的char类型,以表示其RGBA四个分量.一幅图像可以看做是一个二维整型数组.这里我会生成一个float数组,其数组大 ...
- textrank的方法,大概懂了
https://www.cnblogs.com/clover-siyecao/p/5726480.html 介绍了textrank. 不过我觉得对于长文本,textrank才有用些.短文本的话,估计没 ...
- Fedora 18/19没有注销
sudo yum install dconf-editor -y 定位到org > gnome > shell 勾选always-show-log-out http://www.ryan ...
- go语言之进阶篇通过switch实现类型断言
1.通过switch实现类型断言 示例: package main import "fmt" type Student struct { name string id int } ...
- [leetcode]Unique Binary Search Trees II @ Python
原题地址:https://oj.leetcode.com/problems/unique-binary-search-trees-ii/ 题意:接上一题,这题要求返回的是所有符合条件的二叉查找树,而上 ...
- ztree默认自动打开第一级
var treeObj = $.fn.zTree.getZTreeObj("tree"); var nodes = treeObj.getNodes(); if (nodes.le ...