How to perform language installation via Windows PowerShell Command in Windows 10?
I would install via command line a new language voice on Windows 10 Text To Speech.
Until now on the internet I've found only a manual way that user could perform:
https://support.office.com/en-us/article/download-voices-for-immersive-reader-read-mode-and-read-aloud-4c83a8d8-7486-42f7-8e46-2b0fdf753130
But what about if I would automate this process by a Command Line onto Windows 10?
I read and I tried a manual procedure that explains that it's possible to run a couple of installers (Runtime and Package Language), but I think it's not valid for Windows 10.
Microsoft Speech Platform - Runtime Languages (Version 11)
https://www.microsoft.com/en-us/download/details.aspx?id=27224
In details, I tried to install the Runtime and the French package MSSpeech_SR_fr-FR_TELE.msi and MSSpeech_TTS_fr-FR_Hortense.msi but it doesn't work.
I believe that those installers are not designed for Windows 10 because nothing will appear in Windows 10 Language Settings and onto the registry:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftSpeechVoicesTokens
HKEY_LOCAL_MACHINESOFTWAREWOW6432NodeMicrosoftSPEECHVoicesTokens
Just to try, I've manually added Chinese and English language as additional languages (following the first link that I paste in this post) and that language will appear as I expected onto the Windows Registry Keys that I mentioned (and on the system).
Using the [Windows PowerShell] (see this link) and the following commands is possible to add a new language in the Windows 10:
PS C:> $UserLanguageList = New-WinUserLanguageList -Language en-EN
PS C:> $UserLanguageList[0].Handwriting = $True
PS C:> Set-WinUserLanguageList -LanguageList $UserLanguageList
The result will be like this:
Area-Language Windows Settings
But how can I run the Download and Installation of the TTS voice?
Thanks
Cheers
windows command-line powershell text-to-speech-voices tts
add a comment |
I would install via command line a new language voice on Windows 10 Text To Speech.
Until now on the internet I've found only a manual way that user could perform:
https://support.office.com/en-us/article/download-voices-for-immersive-reader-read-mode-and-read-aloud-4c83a8d8-7486-42f7-8e46-2b0fdf753130
But what about if I would automate this process by a Command Line onto Windows 10?
I read and I tried a manual procedure that explains that it's possible to run a couple of installers (Runtime and Package Language), but I think it's not valid for Windows 10.
Microsoft Speech Platform - Runtime Languages (Version 11)
https://www.microsoft.com/en-us/download/details.aspx?id=27224
In details, I tried to install the Runtime and the French package MSSpeech_SR_fr-FR_TELE.msi and MSSpeech_TTS_fr-FR_Hortense.msi but it doesn't work.
I believe that those installers are not designed for Windows 10 because nothing will appear in Windows 10 Language Settings and onto the registry:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftSpeechVoicesTokens
HKEY_LOCAL_MACHINESOFTWAREWOW6432NodeMicrosoftSPEECHVoicesTokens
Just to try, I've manually added Chinese and English language as additional languages (following the first link that I paste in this post) and that language will appear as I expected onto the Windows Registry Keys that I mentioned (and on the system).
Using the [Windows PowerShell] (see this link) and the following commands is possible to add a new language in the Windows 10:
PS C:> $UserLanguageList = New-WinUserLanguageList -Language en-EN
PS C:> $UserLanguageList[0].Handwriting = $True
PS C:> Set-WinUserLanguageList -LanguageList $UserLanguageList
The result will be like this:
Area-Language Windows Settings
But how can I run the Download and Installation of the TTS voice?
Thanks
Cheers
windows command-line powershell text-to-speech-voices tts
First of all, welcome to Super User! We are always glad to help, but you apparently have two Super User accounts: this one and this one. Please take the time to utilize the following Help Center tutorial and ask the Super User staff to merge your accounts: I accidentally created two accounts; how do I merge them?
– Run5k
Jan 21 at 16:37
Welcome to Super User! You can freely edit your own posts but for your protection, this must be done under the original user account. It looks like you have created a second account, which will also interfere with your ability to comment within your thread and to accept an answer. Merging your accounts will solve the problem.
– fixer1234
Jan 23 at 0:11
Possible duplicate of Windows PowerShell: how to Set and Run Download of TTS language onto Windows 10 via
– Martin Prikryl
Jan 24 at 11:47
add a comment |
I would install via command line a new language voice on Windows 10 Text To Speech.
Until now on the internet I've found only a manual way that user could perform:
https://support.office.com/en-us/article/download-voices-for-immersive-reader-read-mode-and-read-aloud-4c83a8d8-7486-42f7-8e46-2b0fdf753130
But what about if I would automate this process by a Command Line onto Windows 10?
I read and I tried a manual procedure that explains that it's possible to run a couple of installers (Runtime and Package Language), but I think it's not valid for Windows 10.
Microsoft Speech Platform - Runtime Languages (Version 11)
https://www.microsoft.com/en-us/download/details.aspx?id=27224
In details, I tried to install the Runtime and the French package MSSpeech_SR_fr-FR_TELE.msi and MSSpeech_TTS_fr-FR_Hortense.msi but it doesn't work.
I believe that those installers are not designed for Windows 10 because nothing will appear in Windows 10 Language Settings and onto the registry:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftSpeechVoicesTokens
HKEY_LOCAL_MACHINESOFTWAREWOW6432NodeMicrosoftSPEECHVoicesTokens
Just to try, I've manually added Chinese and English language as additional languages (following the first link that I paste in this post) and that language will appear as I expected onto the Windows Registry Keys that I mentioned (and on the system).
Using the [Windows PowerShell] (see this link) and the following commands is possible to add a new language in the Windows 10:
PS C:> $UserLanguageList = New-WinUserLanguageList -Language en-EN
PS C:> $UserLanguageList[0].Handwriting = $True
PS C:> Set-WinUserLanguageList -LanguageList $UserLanguageList
The result will be like this:
Area-Language Windows Settings
But how can I run the Download and Installation of the TTS voice?
Thanks
Cheers
windows command-line powershell text-to-speech-voices tts
I would install via command line a new language voice on Windows 10 Text To Speech.
Until now on the internet I've found only a manual way that user could perform:
https://support.office.com/en-us/article/download-voices-for-immersive-reader-read-mode-and-read-aloud-4c83a8d8-7486-42f7-8e46-2b0fdf753130
But what about if I would automate this process by a Command Line onto Windows 10?
I read and I tried a manual procedure that explains that it's possible to run a couple of installers (Runtime and Package Language), but I think it's not valid for Windows 10.
Microsoft Speech Platform - Runtime Languages (Version 11)
https://www.microsoft.com/en-us/download/details.aspx?id=27224
In details, I tried to install the Runtime and the French package MSSpeech_SR_fr-FR_TELE.msi and MSSpeech_TTS_fr-FR_Hortense.msi but it doesn't work.
I believe that those installers are not designed for Windows 10 because nothing will appear in Windows 10 Language Settings and onto the registry:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftSpeechVoicesTokens
HKEY_LOCAL_MACHINESOFTWAREWOW6432NodeMicrosoftSPEECHVoicesTokens
Just to try, I've manually added Chinese and English language as additional languages (following the first link that I paste in this post) and that language will appear as I expected onto the Windows Registry Keys that I mentioned (and on the system).
Using the [Windows PowerShell] (see this link) and the following commands is possible to add a new language in the Windows 10:
PS C:> $UserLanguageList = New-WinUserLanguageList -Language en-EN
PS C:> $UserLanguageList[0].Handwriting = $True
PS C:> Set-WinUserLanguageList -LanguageList $UserLanguageList
The result will be like this:
Area-Language Windows Settings
But how can I run the Download and Installation of the TTS voice?
Thanks
Cheers
windows command-line powershell text-to-speech-voices tts
windows command-line powershell text-to-speech-voices tts
edited Jan 23 at 0:11
orecchione bruno
83
83
asked Jan 21 at 10:48
orecchionebrunoorecchionebruno
11
11
First of all, welcome to Super User! We are always glad to help, but you apparently have two Super User accounts: this one and this one. Please take the time to utilize the following Help Center tutorial and ask the Super User staff to merge your accounts: I accidentally created two accounts; how do I merge them?
– Run5k
Jan 21 at 16:37
Welcome to Super User! You can freely edit your own posts but for your protection, this must be done under the original user account. It looks like you have created a second account, which will also interfere with your ability to comment within your thread and to accept an answer. Merging your accounts will solve the problem.
– fixer1234
Jan 23 at 0:11
Possible duplicate of Windows PowerShell: how to Set and Run Download of TTS language onto Windows 10 via
– Martin Prikryl
Jan 24 at 11:47
add a comment |
First of all, welcome to Super User! We are always glad to help, but you apparently have two Super User accounts: this one and this one. Please take the time to utilize the following Help Center tutorial and ask the Super User staff to merge your accounts: I accidentally created two accounts; how do I merge them?
– Run5k
Jan 21 at 16:37
Welcome to Super User! You can freely edit your own posts but for your protection, this must be done under the original user account. It looks like you have created a second account, which will also interfere with your ability to comment within your thread and to accept an answer. Merging your accounts will solve the problem.
– fixer1234
Jan 23 at 0:11
Possible duplicate of Windows PowerShell: how to Set and Run Download of TTS language onto Windows 10 via
– Martin Prikryl
Jan 24 at 11:47
First of all, welcome to Super User! We are always glad to help, but you apparently have two Super User accounts: this one and this one. Please take the time to utilize the following Help Center tutorial and ask the Super User staff to merge your accounts: I accidentally created two accounts; how do I merge them?
– Run5k
Jan 21 at 16:37
First of all, welcome to Super User! We are always glad to help, but you apparently have two Super User accounts: this one and this one. Please take the time to utilize the following Help Center tutorial and ask the Super User staff to merge your accounts: I accidentally created two accounts; how do I merge them?
– Run5k
Jan 21 at 16:37
Welcome to Super User! You can freely edit your own posts but for your protection, this must be done under the original user account. It looks like you have created a second account, which will also interfere with your ability to comment within your thread and to accept an answer. Merging your accounts will solve the problem.
– fixer1234
Jan 23 at 0:11
Welcome to Super User! You can freely edit your own posts but for your protection, this must be done under the original user account. It looks like you have created a second account, which will also interfere with your ability to comment within your thread and to accept an answer. Merging your accounts will solve the problem.
– fixer1234
Jan 23 at 0:11
Possible duplicate of Windows PowerShell: how to Set and Run Download of TTS language onto Windows 10 via
– Martin Prikryl
Jan 24 at 11:47
Possible duplicate of Windows PowerShell: how to Set and Run Download of TTS language onto Windows 10 via
– Martin Prikryl
Jan 24 at 11:47
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1396570%2fhow-to-perform-language-installation-via-windows-powershell-command-in-windows-1%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1396570%2fhow-to-perform-language-installation-via-windows-powershell-command-in-windows-1%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
First of all, welcome to Super User! We are always glad to help, but you apparently have two Super User accounts: this one and this one. Please take the time to utilize the following Help Center tutorial and ask the Super User staff to merge your accounts: I accidentally created two accounts; how do I merge them?
– Run5k
Jan 21 at 16:37
Welcome to Super User! You can freely edit your own posts but for your protection, this must be done under the original user account. It looks like you have created a second account, which will also interfere with your ability to comment within your thread and to accept an answer. Merging your accounts will solve the problem.
– fixer1234
Jan 23 at 0:11
Possible duplicate of Windows PowerShell: how to Set and Run Download of TTS language onto Windows 10 via
– Martin Prikryl
Jan 24 at 11:47