mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
Convert to code blocks for syntax highlight
This commit is contained in:
@@ -13,16 +13,19 @@ Provides the scripts and lists the steps to set up automatically exporting your
|
||||
1. Create and uploade the certificates that you will use to authenticate your connection to azure.
|
||||
- Run powershell as admin.
|
||||
- Run the New-SelfSignedCertificate command:
|
||||
|
||||
```powershell
|
||||
$cert = New-SelfSignedCertificate -CertStoreLocation cert:\localmachine\my -DnsName <certificateName>
|
||||
```
|
||||
|
||||
- Export the certificate as a .cer file
|
||||
|
||||
```powershell
|
||||
Export-Certificate -Cert "cert:\localmachine\my\$($cert.Thumbprint)" -FilePath <PathAndFileName>.cer
|
||||
```
|
||||
|
||||
- Create a corresponding pfx certificate by taking the thumbprint of the newly created certificate and running these commands:
|
||||
|
||||
```powershell
|
||||
$CertPassword = ConvertTo-SecureString -String <YourPassword> -Force -AsPlainText
|
||||
Export-PfxCertificate -Cert "cert:\localmachine\my\$($cert.Thumbprint)" -FilePath <PathAndFileName>.pfx -Password $CertPassword
|
||||
|
||||
Reference in New Issue
Block a user