Skip to content

Commit 7dfb512

Browse files
(AzureCXP) fixes MicrosoftDocs/azure-docs#98177
we have updated the line 82 $filePath = (Get-Location).Path + " \ $CSVFile" instead of: $filePath = (Get-Location).Path + "/$CSVFile"
1 parent f6ae2a0 commit 7dfb512

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/virtual-desktop/windows-11-language-packs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ You can create a custom image by following these steps:
7979
8080
##Set Path of CSV File##
8181
$CSVFile = "Windows-10-1809-FOD-to-LP-Mapping-Table.csv"
82-
$filePath = (Get-Location).Path + "/$CSVFile"
82+
$filePath = (Get-Location).Path + "\$CSVFile"
8383
8484
##Import Necesarry CSV File##
8585
$FODList = Import-Csv -Path $filePath -Delimiter ";"

0 commit comments

Comments
 (0)