Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security & DevOps Insights

  • Home
  • About
  • Advertise With US
  • Contact
  • Reviews
  • Toggle search form
Home » Scripts » Connecting to a remote server failed and WinRM cannot process the request: Error code 0x8009030e occurred while using Kerberos authentication, and a specified logon session does not exist
  • How to manage user permission in AD and Synology
    Manage User Permission on Synology with Active Directory [Part 1] Reviews
  • Allow and Disallow Simultaneous Connection to Domain and Non Domain network
    Allow and Disallow Simultaneous Connection to Domain and Non-Domain network Network | Monitoring
  • Jenkins
    How to Install Jenkins Automation Server on Ubuntu 20.04 LTS Linux
  • Delete Slack Account
    How to delete your Slack account JIRA|Confluence|Apps
  • images 1
    How to Monitor Windows Hosts via Nagios Network | Monitoring
  • Windows10 SCCM 20161
    What is ADK, MDT, Microsoft Endpoint Configuration Manager (SCCM), Intune, Autopilot, and WSUS Windows Server
  • BitLocker Recovery Password Rotation in Active Directory
    Perform BitLocker Recovery Password Rotation in Active Directory Windows Server
  • File Audit
    File Audit: How to install and configure PA File Sight Ultra and PA Endpoints Reviews

Connecting to a remote server failed and WinRM cannot process the request: Error code 0x8009030e occurred while using Kerberos authentication, and a specified logon session does not exist

Posted on 25/03/202027/07/2023 Christian By Christian 2 Comments on Connecting to a remote server failed and WinRM cannot process the request: Error code 0x8009030e occurred while using Kerberos authentication, and a specified logon session does not exist

I have put together three similar error types I simulated in my Test laboratory. When you are prompted with the following error when using the invoke-command, the following solutions and explanation below will help you resolve this issue. In this article, we will discuss how to resolve “Connecting to a remote server failed and WinRM cannot process the request: Error code 0x8009030e occurred while using Kerberos authentication, and a specified logon session does not exist”. Here are some interesting guides: How to request a certificate signing request in Windows using Microsoft Management Console, and how to troubleshoot and fix Windows Admin Center that cannot be reached.

For Windows Remote Management (WinRM) scripts to run, and for the Winrm command-line tool to perform data operations. WinRM is automatically installed with all currently-supported versions of the Windows operating system and must be configured for all clients. Please take a look at the Test-WASMan page for more information.

Various Errors: Connecting to a remote server failed and WinRM cannot process the request: Code 0x8009030e occurred while using Kerberos authentication, and a specified logon session does not exist

In the sections below, I will reproduce and discuss the various errors associated. Please see some related articles: How to Test Network Connection to the Windows Admin Center (WAC) Gateway, how to configure a remote server (windows) to Support Ansible, and How to enable or disable WinRM via the command-line.

1st Error: Below is the command run to install and reboot the TechDArchive

Invoke-Command -ComputerName TechDArchive -Script {ipmo PSWindowsUpdate; Get-WUInstall -AcceptAll -AutoReboot | Out-File C:\PSWindowsUpdate.log  } -Verbose

2nd Error: When you also run the Enter-PSSession to initiate a connection to the remote server the following error above will also be displayed.

Enter-PSSession -ComputerName TechDArchive

3rd Error: The invoke-command used to run the script locally or on remote computers. Once remoting is enabled on remote machines, we can run Invoke-Command as shown below to query the WinRM service. But WE are FACED with an ERROR.

Invoke-Command -ComputerName ServerDC -ScriptBlock {Get-Service winrm}

Please see this article on the Various Ansible Authentication Options. Also see What to note when settings up Ansible to work with Kerberos.

How do we solve this? | Solution

This error is a result of my login method as you can see in the error message above. Run the “whoami” command to display your account login information.

The follwoing issue was a result of the host machine (Ansibleserver) from where I was trying to connect. I was logged into the server as a local user with the administrator’s account. Whereas the remote machine to which I was trying to connect was running as a domain user. 

So, when I switched to the domain user account (Chris) on the host machine, Kerberos started working and the issue got resolved.

As you can see below, the invoke-command is working correctly to get the WinRM service.

Also, the invoke-command to have Windows updates installed is running and executing as well.

Below are the tips to ensure you are able to use the invoke-command.
– Please ensure PSRemoting is enabled on the remote device.
– Also ensure that the WinRM is running on the remote device. To determine this, run WinRM using the following command.
– Ensure the computers (servers) are added in the TrustedHosts. Instead of adding an individual host, use the asterisk to all subsequent hosts

Please see a similar error where the computer account could not be found.

I hope you found this blog post helpful on how to fix “Connecting to a remote server failed and WinRM cannot process the request: Error code 0x8009030e occurred while using Kerberos authentication, and a specified logon session does not exist”. If you have any questions, please let me know in the comment session.

Rate this post

Thank you for reading this post. Kindly share it with others.

  • Click to share on X (Opens in new window) X
  • Click to share on Reddit (Opens in new window) Reddit
  • Click to share on LinkedIn (Opens in new window) LinkedIn
  • Click to share on Facebook (Opens in new window) Facebook
  • Click to share on Pinterest (Opens in new window) Pinterest
  • Click to share on Tumblr (Opens in new window) Tumblr
  • Click to share on Telegram (Opens in new window) Telegram
  • Click to share on WhatsApp (Opens in new window) WhatsApp
  • Click to share on Pocket (Opens in new window) Pocket
  • Click to share on Mastodon (Opens in new window) Mastodon
  • Click to share on Bluesky (Opens in new window) Bluesky
  • Click to share on Threads (Opens in new window) Threads
  • Click to share on Nextdoor (Opens in new window) Nextdoor
Scripts Tags:errors, PowerShell

Post navigation

Previous Post: Cannot find the computer: Fix the following error occurred while using Kerberos authentication
Next Post: WinRM and PSRemoting: Configure servers for remote access

Related Posts

  • hero activedirectory
    Create and find Organisation Unit paths in AD Scripts
  • powershell
    How to install the Microsoft PSWindowsUpdate module silently Scripts
  • FileNotFoundError Errno 2 No such file or directory
    Fix FileNotFoundError: [Errno 2] No such file or directory Scripts
  • S3 Bucket
    Access AWS Management Console and Create Resources with AWS CLI on Windows AWS/Azure/OpenShift
  • image 130
    How to fix the Security Database on the Server does not have a Computer Account for this Workstation Trust Relationship on Windows Server [Part 2] Scripts
  • How to visualize MBAM Recovery Audit Report with Python
    Visualize MBAM Recovery Audit Report with Python Automation

More Related Articles

hero activedirectory Create and find Organisation Unit paths in AD Scripts
powershell How to install the Microsoft PSWindowsUpdate module silently Scripts
FileNotFoundError Errno 2 No such file or directory Fix FileNotFoundError: [Errno 2] No such file or directory Scripts
S3 Bucket Access AWS Management Console and Create Resources with AWS CLI on Windows AWS/Azure/OpenShift
image 130 How to fix the Security Database on the Server does not have a Computer Account for this Workstation Trust Relationship on Windows Server [Part 2] Scripts
How to visualize MBAM Recovery Audit Report with Python Visualize MBAM Recovery Audit Report with Python Automation

Comments (2) on “Connecting to a remote server failed and WinRM cannot process the request: Error code 0x8009030e occurred while using Kerberos authentication, and a specified logon session does not exist”

  1. Avatar photo Francisco Yepiz says:
    12/10/2020 at 8:34 PM

    Thanks for your help!

    Log in to Reply
    1. chris Christian says:
      13/10/2020 at 7:17 AM

      You are most welcome

      Log in to Reply

Leave a Reply Cancel reply

You must be logged in to post a comment.

Microsoft MVP

VEEAMLEGEND

vexpert-badge-stars-5

Virtual Background

GoogleNews

Categories

veeaam100

sysadmin top30a

  • How to manage user permission in AD and Synology
    Manage User Permission on Synology with Active Directory [Part 1] Reviews
  • Allow and Disallow Simultaneous Connection to Domain and Non Domain network
    Allow and Disallow Simultaneous Connection to Domain and Non-Domain network Network | Monitoring
  • Jenkins
    How to Install Jenkins Automation Server on Ubuntu 20.04 LTS Linux
  • Delete Slack Account
    How to delete your Slack account JIRA|Confluence|Apps
  • images 1
    How to Monitor Windows Hosts via Nagios Network | Monitoring
  • Windows10 SCCM 20161
    What is ADK, MDT, Microsoft Endpoint Configuration Manager (SCCM), Intune, Autopilot, and WSUS Windows Server
  • BitLocker Recovery Password Rotation in Active Directory
    Perform BitLocker Recovery Password Rotation in Active Directory Windows Server
  • File Audit
    File Audit: How to install and configure PA File Sight Ultra and PA Endpoints Reviews

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 1,839 other subscribers
  • RSS - Posts
  • RSS - Comments
  • About
  • Authors
  • Write for us
  • Advertise with us
  • General Terms and Conditions
  • Privacy policy
  • Feedly
  • Telegram
  • Youtube
  • Facebook
  • Instagram
  • LinkedIn
  • Tumblr
  • Pinterest
  • Twitter
  • mastodon

Tags

AWS Azure Bitlocker Microsoft Windows PowerShell WDS Windows 10 Windows 11 Windows Deployment Services Windows Server 2016

Copyright © 2025 TechDirectArchive

 

Loading Comments...
 

You must be logged in to post a comment.