WinRM Error

I am having a problem getting on of my library servers to work. It is a windows 2003 R2 SP2 box. I know WinRM needs to be up and configured prior to installing the VMM Library agent. WinRM installs but when I run the winrm qc command I get the following error:

WSMaqnFault

Message

ProviderFault

WSManFault

Message = Unable to check the status of the firewall.

Error number: -2147023143 0x800706D9

There are no more endpoints available from the endpoint mapper.

I do not have a firewall running on this server.

Even when I attempt to configure WinRM manually I get an error.

Anyone have any ideas.

March 12th, 2008 4:59pm

Hello,

enable first your windows firewall. After disable it. And then try again with winRM quickconfig. It works. That's because a Service isn't running.

Greets
Dude
Free Windows Admin Tool Kit Click here and download it now
March 21st, 2008 9:06am

Not always true:

PS H:\> Get-Service -DisplayName *fire*

Status   Name               DisplayName
------   ----               -----------
Running  MpsSvc             Windows Firewall


PS H:\> winrm quickconfig
WinRM already is set up to receive requests on this machine.
WSManFault
    Message
        ProviderFault
            WSManFault
                Message = Unable to check the status of the firewall.

Error number:  -2147024894 0x80070002
The system cannot find the file specified.

For us, I believe GPO is getting in the way.  Regardless, I was troubleshooting an Invoke-Command error I was getting.  Posted my findings in a related thread across the ether.


  • Edited by VertigoRay Thursday, November 29, 2012 7:49 PM
November 29th, 2012 7:12pm

Not always true:

PS H:\> Get-Service -DisplayName *fire*

Status   Name               DisplayName
------   ----               -----------
Running  MpsSvc             Windows Firewall


PS H:\> winrm quickconfig
WinRM already is set up to receive requests on this machine.
WSManFault
    Message
        ProviderFault
            WSManFault
                Message = Unable to check the status of the firewall.

Error number:  -2147024894 0x80070002
The system cannot find the file specified.

For us, I believe GPO is getting in the way.  Regardless, I was troubleshooting an Invoke-Command error I was getting.  Posted my findings in a related thread across the ether.


  • Edited by VertigoRay Thursday, November 29, 2012 7:49 PM
Free Windows Admin Tool Kit Click here and download it now
November 29th, 2012 7:12pm

Not always true:

PS H:\> Get-Service -DisplayName *fire*

Status   Name               DisplayName
------   ----               -----------
Running  MpsSvc             Windows Firewall


PS H:\> winrm quickconfig
WinRM already is set up to receive requests on this machine.
WSManFault
    Message
        ProviderFault
            WSManFault
                Message = Unable to check the status of the firewall.

Error number:  -2147024894 0x80070002
The system cannot find the file specified.

For us, I believe GPO is getting in the way.  Regardless, I was troubleshooting an Invoke-Command error I was getting.  Posted my findings in a related thread across the ether.


  • Edited by VertigoRay Thursday, November 29, 2012 7:49 PM
November 29th, 2012 7:12pm

Yes not always true, i even enabled the fw service, reconfigued my profiles in order to "save" some information, disabled again my profiles in firwall and is not working.

i even tried to do the disable-psremoting, and enable-psremoting, and nothing is working always the same error like something is blocking the winrm port, or winrm configuration.

Free Windows Admin Tool Kit Click here and download it now
November 29th, 2013 5:56pm

Hi all,

I had the same issue today and finaly soled it.

It was 2012 R2 server en-US with french language pack installed.

Disable the FR lang pack solved the issue!

B LEFEVRE

February 25th, 2015 2:10pm

$nlm = [Activator]::CreateInstance([Type]::GetTypeFromCLSID([Guid]"{DCB00C01-570F-4A9B-8D69-199FDBA5723B}"))
$connections = $nlm.getnetworkconnections()
$connections |foreach {
    if ($_.getnetwork().getcategory() -eq 0)
    {
        $_.getnetwork().setcategory(1)
    }
}

Run this code in powershell ise

Free Windows Admin Tool Kit Click here and download it now
June 30th, 2015 2:50am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics