mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-12 13:27:23 +00:00
Update evaluating-mbam-10.md
Fix HTML-encoded characters
This commit is contained in:
parent
40a7daf1d7
commit
3885d6c17c
@ -55,21 +55,21 @@ Even when you set up a non-production instance of MBAM to evaluate in a lab envi
|
||||
<td align="left"><p></p>
|
||||
<p>Prepare your computing environment for the MBAM installation. To do so, you must enable the Transparent Data Encryption (TDE) on the SQL Server instances that will host MBAM databases. To enable TDE in your lab environment, you can create a .sql file to run against the master database that is hosted on the instance of the SQL Server that MBAM will use.</p>
|
||||
<div class="alert">
|
||||
<strong>Note</strong><br/><p>You can use the following example to create a .sql file for your lab environment to quickly enable TDE on the SQL Server instance that will host the MBAM databases. These SQL Server commands will enable TDE by using a locally signed SQL Server certificate. Make sure to back up the TDE certificate and its associated encryption key to the example local backup path of <em>C:\Backup</em>. The TDE certificate and key are required when recover the database or move the certificate and key to another server that has TDE encryption in place.</p>
|
||||
<strong>Note</strong><br/><p>You can use the following example to create a .sql file for your lab environment to quickly enable TDE on the SQL Server instance that will host the MBAM databases. These SQL Server commands will enable TDE by using a locally signed SQL Server certificate. Make sure to back up the TDE certificate and its associated encryption key to the example local backup path of <em>C:\Backup</em>. The TDE certificate and key are required when recover the database or move the certificate and key to another server that has TDE encryption in place.</p>
|
||||
</div>
|
||||
<div>
|
||||
|
||||
</div>
|
||||
<pre class="syntax" space="preserve"><code>USE master;
|
||||
GO
|
||||
CREATE MASTER KEY ENCRYPTION BY PASSWORD = &amp;#39;P@55w0rd';
|
||||
CREATE MASTER KEY ENCRYPTION BY PASSWORD = 'P@55w0rd';
|
||||
GO
|
||||
CREATE CERTIFICATE tdeCert WITH SUBJECT = 'TDE Certificate';
|
||||
GO
|
||||
BACKUP CERTIFICATE tdeCert TO FILE = 'C:\Backup\TDECertificate.cer'
|
||||
WITH PRIVATE KEY (
|
||||
FILE = 'C:\Backup\TDECertificateKey.pvk',
|
||||
ENCRYPTION BY PASSWORD = &amp;#39;P@55w0rd');
|
||||
ENCRYPTION BY PASSWORD = 'P@55w0rd');
|
||||
GO</code></pre></td>
|
||||
<td align="left"><p><a href="mbam-10-deployment-prerequisites.md" data-raw-source="[MBAM 1.0 Deployment Prerequisites](mbam-10-deployment-prerequisites.md)">MBAM 1.0 Deployment Prerequisites</a></p>
|
||||
<p><a href="https://go.microsoft.com/fwlink/?LinkId=269703" data-raw-source="[Database Encryption in SQL Server 2008 Enterprise Edition](https://go.microsoft.com/fwlink/?LinkId=269703)">Database Encryption in SQL Server 2008 Enterprise Edition</a></p></td>
|
||||
|
Loading…
x
Reference in New Issue
Block a user