Remove whitespace from Add-RegistrySettings function

White space is not allowed before the Powershell string terminator.
Fixed formatting.
This commit is contained in:
Marius Oprin 2019-08-29 13:11:42 +03:00
Родитель 3156953e2e
Коммит f80f4ca6eb
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -375,7 +375,7 @@ function Add-RegistrySettings {
:SETUP
reg add HKLM\SYSTEM\CurrentControlSet\Services\sgx_lc_msr\Parameters /v SGX_Launch_Config_Optin /t REG_DWORD /d 0x01
SHUTDOWN -r -t 10
"@
"@
$CurrentDir = (Get-Location).Path
$CMDFileName = "$CurrentDir\AddRegistry.cmd"
$AddingRegistryCMD | Out-File -FilePath $CMDFileName -Encoding ASCII