Skip to main content
deleted 3 characters in body
Source Link
Mr.Key7
  • 843
  • 1
  • 12

By following this post The keyboard cannot type in the start menu.

The
The cause is that service named TextInputManagementService does not start automatically at startup.

  And in my PC, there is no option to change it.

So
So. I use Task Scheduler to run the service at Log On.

# CMD
sc.exe start TextInputManagementService

# PowerShell
Get-Service -Name 'TextInputManagementService' | Start-Service

pic

By following this post The keyboard cannot type in the start menu.

The cause is that service named TextInputManagementService does not start automatically at startup.

  And in my PC, there is no option to change it.

So. I use Task Scheduler to run the service at Log On.

# CMD
sc.exe start TextInputManagementService

# PowerShell
Get-Service -Name 'TextInputManagementService' | Start-Service

pic

By following this post The keyboard cannot type in the start menu.
The cause is that service named TextInputManagementService does not start automatically at startup. And in my PC, there is no option to change it.
So. I use Task Scheduler to run the service at Log On.

# CMD
sc.exe start TextInputManagementService

# PowerShell
Get-Service -Name 'TextInputManagementService' | Start-Service

pic

added 47 characters in body
Source Link
Mr.Key7
  • 843
  • 1
  • 12

By following this post The keyboard cannot type in the start menu.

The cause is that service named TextInputManagementService does not start automatically at startup.

And in my PC, there is no option to change it.

So. I use Task Scheduler to run the service at startupLog On.

$TIMS# =CMD
sc.exe 'TextInputManagementService'start TextInputManagementService

# PowerShell
Get-Service -Name $TIMS'TextInputManagementService' | Start-Service

pic

By following this post The keyboard cannot type in the start menu.

The cause is that service named TextInputManagementService does not start automatically at startup.

And in my PC, there is no option to change it.

So. I use Task Scheduler to run the service at startup.

$TIMS = 'TextInputManagementService'  
Get-Service -Name $TIMS | Start-Service

pic

By following this post The keyboard cannot type in the start menu.

The cause is that service named TextInputManagementService does not start automatically at startup.

And in my PC, there is no option to change it.

So. I use Task Scheduler to run the service at Log On.

# CMD
sc.exe start TextInputManagementService

# PowerShell
Get-Service -Name 'TextInputManagementService' | Start-Service

pic

Source Link
Mr.Key7
  • 843
  • 1
  • 12

By following this post The keyboard cannot type in the start menu.

The cause is that service named TextInputManagementService does not start automatically at startup.

And in my PC, there is no option to change it.

So. I use Task Scheduler to run the service at startup.

$TIMS = 'TextInputManagementService'  
Get-Service -Name $TIMS | Start-Service

pic