HiveBrain v1.2.0
Get Started
← Back to all entries
patternsqlModerate

Skip multiple rules during SQL Server installation

Submitted by: @import:stackexchange-dba··
0
Viewed 0 times
duringsqlskipinstallationmultipleserverrules

Problem

I want to install SQL Server 2008, but I get 2 errors which prevent me from going forward. I know from this post how to skip one rule. Is there a method to skip both?

I am using Wine (PayOnLinux) on Linux and simulated an environment with help of this post. I managed to skip first rule, but I also need to skip the PowerShell rule. I am just interested to know if the below syntax can be altered to skip 2 rules:

setup.exe /ACTION=install /SKIPRULES=PerfMonCounterNotCorruptedCheck

Solution

Yes, just separate the rules with a space, for example:

/SkipRules=PerfMonCounterNotCorruptedCheck FacetPowerShellCheck


While SkipRules is undocumented, the list of rules is documented at:

  • Edition Upgrade Rules



Even more information at:

  • SQL 2012 Setup Rules – The 'Missing Reference'

Code Snippets

/SkipRules=PerfMonCounterNotCorruptedCheck FacetPowerShellCheck

Context

StackExchange Database Administrators Q#115377, answer score: 12

Revisions (0)

No revisions yet.