You can reboot a DAG witness server but only if your DAG cluster is operating with all of its members online.
An FSW (file share witness) will only come into play during a failover scenario. This means that it will become a problem if a DAG member fails at the exact same moment your FSW is rebooting, because the remaining DAG member will then not achieve majority, causing the cluster to fail completely.
Note that if you reboot the FWS often in a short period, the cluster will mark the FWS as unreliable and fail the cluster. In that case, you should manually bring it back online by running the following PS cmdlet on a DAG member:
Get-ClusterResource | Start-ClusterResource
Your SCOM environment may produce the following alert on the RMS server:
Check whether the data warehouse write user has a proxy server active. If this is the case, log in with that user on the RMS, and disable the proxy, or reconfigure it so it bypasses local addresses.
You can quickly and easily install the System Center Configuration Manager console on a management server or workstation.
There are no particular prerequisites for installing the console.
Run the following command line to install the console on the current computer, and to the default location.
"\\SmsServer.domain.local\SMS_SiteName\bin\i386\consolesetup.exe" /q TargetDir="%programfiles%\ConfigMgrConsole" EnableSQM=0 DefaultSiteServerName=SmsServer.domain.local
Adjust the parameters accordingly:
Installing the SCOM 2012 (no R2) Operations console on a management server or workstation requires these prerequisites:
After installation, re-run setup.exe from the System Center 2012 media and select to install the Operations console. The presence of required software components will be verified, but with the runtime installed, the check should pass without errors.
You can mail-enable multiple accounts with a single Powershell command. Look below for some examples:
Mail-enable AD accounts whose first name is John:
Get-ADUser -Filter * | Where {$_.GivenName -like "John"} | ForEach-Object { Enable-Mailbox -Identity $_.DistinguishedName }
Mail-enable all accounts in an OU called Engineering:
Get-ADUser -Filter * -SearchBase "OU=Engineering,DC=contoso,DC=local" | ForEach-Object { Enable-Mailbox -Identity $_.DistinguishedName }
If your vCenter server has a self-signed certificate, you will get a warning about this when connecting to it from vSphere PowerCLI. You can disable this warning through PowerCLI with the Set-PowerCLIConfiguration cmdlet.
Set-PowerCLIConfiguration -InvalidCertificateAction Ignore
After making the change, new connections to the vCenter server will no longer produce a warning about the certificate.
« ‹ | November 2024 | › » | ||||
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |