From bec643a5732b4dd58c9f770038e138339a51fe57 Mon Sep 17 00:00:00 2001 From: Cameron Battagler Date: Thu, 12 Jan 2017 11:13:47 -0600 Subject: [PATCH] Test inline code blocks --- samples/manage/azure-automation-automated-export/README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/samples/manage/azure-automation-automated-export/README.md b/samples/manage/azure-automation-automated-export/README.md index 47d0b43f..95fa5645 100644 --- a/samples/manage/azure-automation-automated-export/README.md +++ b/samples/manage/azure-automation-automated-export/README.md @@ -12,7 +12,10 @@ 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: `$cert = New-SelfSignedCertificate -CertStoreLocation cert:\localmachine\my -DnsName ` + - Run the New-SelfSignedCertificate command: + ```powershell +$cert = New-SelfSignedCertificate -CertStoreLocation cert:\localmachine\my -DnsName +``` - Export the certificate as a .cer file - `Export-Certificate -Cert "cert:\localmachine\my\$($cert.Thumbprint)" -FilePath .cer` - Create a corresponding pfx certificate by taking the thumbprint of the newly created certificate and running these commands: