Remote powershell to Connection Brokers 2012R2

Good morning everyone!
Task is to get information about RDS status from remote machines.
Local poweshell on Connection Brokers works fine:
PS C:\> Import-Module RemoteDesktop
PS C:\> (Get-RDConnectionBrokerHighAvailability).ActiveManagementServer
ms-s-tscb02.sodrugestvo.local
But if we try to do this remotly it gives error:
PS C:\> New-PSSession -ComputerName ms-s-tscb02.sodrugestvo.local -Name RDS
 Id Name            ComputerName    State         ConfigurationName     Availability
 26 RDS             ms-s-tscb02.... Opened        Microsoft.PowerShell     Available
PS C:\>
PS C:\> Enter-PSSession -Name RDS
[ms-s-tscb02.sodrugestvo.local]: PS C:\Users\Administrator.SODRUGESTVO\Documents> cd \
[ms-s-tscb02.sodrugestvo.local]: PS C:\> Import-Module RemoteDesktop
[ms-s-tscb02.sodrugestvo.local]: PS C:\> (Get-RDConnectionBrokerHighAvailability).ActiveManagementServer
Get-RDConnectionBrokerHighAvailability : The RD Connection Broker server is not available. Verify that you can connect
to the RD Connection Broker server.
At line:1 char:2
+ (Get-RDConnectionBrokerHighAvailability).ActiveManagementServer
+  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Write-Error], WriteErrorException
    + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Get-RDConnectionBrokerHighAvailability
Can someone give a tip or direction to look at?
Regards, Dmitriy Ilyin

Hi,
Does it work if you specify the connection broker FQDN, like this:
(Get-RDConnectionBrokerHighAvailability -ConnectionBroker ms-s-tscb02.sodrugestvo.local).ActiveManagementServer
-TP
Hmm... First: as i sad command
(Get-RDConnectionBrokerHighAvailability).ActiveManagementServer 
works just fine if I run it localy. So thats not a problem. I have 3 CB and i just need to find who is active at this moment.
Second: I found the problem. Just need to use -Credential while create new session.
$OnPremisesPlainPassword = "XXXXXXXXXXXX"
$OnPremisesUsername = "sodrugestvo\administrator"
$OnPremisesSecurePassword = $OnPremisesPlainPassword | ConvertTo-SecureString -AsPlainText -Force
$OnPremisesCredentials = New-Object System.Management.Automation.PSCredential -ArgumentList $OnPremisesUsername, $OnPremisesSecurePassword
New-PSSession -ComputerName ms-s-tscb02.sodrugestvo.local -Name CB02 -Authentication CredSSP -Credential $OnPremisesCredentials
Enter-PSSession -Name CB02
Import-Module RemoteDesktop
(Get-RDConnectionBrokerHighAvailability).ActiveManagementServer
Exit-PSSession
And here result:
PS C:\Users\administrator> New-PSSession -ComputerName ms-s-tscb02.sodrugestvo.local -Name CB02 -Authentication CredSSP
-Credential $OnPremisesCredentials
 Id Name            ComputerName    State    ConfigurationName     Availability
  1 CB02            ms-s-tscb02.... Opened   Microsoft.PowerShell     Available
PS C:\Users\administrator>
PS C:\Users\administrator> Enter-PSSession -Name CB02
[ms-s-tscb02.sodrugestvo.local]: PS C:\Users\Administrator.SODRUGESTVO\Documents> Import-Module RemoteDesktop
[ms-s-tscb02.sodrugestvo.local]: PS C:\Users\Administrator.SODRUGESTVO\Documents> (Get-RDConnectionBrokerHighAvailability).ActiveManagementServer
ms-s-tscb02.sodrugestvo.local
[ms-s-tscb02.sodrugestvo.local]: PS C:\Users\Administrator.SODRUGESTVO\Documents> Exit-PSSession
Regards, Dmitriy Ilyin

Similar Messages

  • Remote PowerShell Connection to Lync Server With Kerberos authentication Fails

    Hi everyone ,
    Remote PowerShell to Lync Server With Kerberos authentication Fails .. Is there any reason for not being able to connect when authentication specified as Kerberos . But exactly same code works when Authentication is specified as "Negotiate"
    E.g :
    Error -
    $session=New-PSSession -ConfigurationName Microsoft.Powershell -ConnectionUri https://serverName.lync.com/ocspowershell/ -Credential $cred -Authentication Kerberos
    [serverName.lync.com] Connecting to remote server failed with the following error message : The WinRM client cannot process the request. The authentication mechanism requested by the client is not supported by the server or unencrypted traffic is disabled in
    the service configuration. Verify the unencrypted traffic setting in the service configuration or specify one of the authentication mechanisms supported by the server.  To use Kerberos, specify the computer name as the remote destination. Also verify
    that the client computer and the destination computer are joined to a domain.To use Basic, specify the computer name as the remote destination, specify Basic authentication and provide user name and password. Possible authentication mechanisms reported by
    server:   Digest Negotiate For more information, see the about_Remote_Troubleshooting Help topic.
        + CategoryInfo          : OpenError: (System.Manageme....RemoteRunspace:RemoteRunspace) [], PSRemotingTransportExc
       eption
        + FullyQualifiedErrorId : PSSessionOpenFailed
    Works  -
    $session=New-PSSession -ConfigurationName Microsoft.Powershell -ConnectionUri https://serverName.lync.com/ocspowershell/ -Credential $cred -Authentication Negotiate

    Hi,
    Please double check if Windows Update is the latest version, if not, please update and then test again.
    Please also ensure that the workstation you are using has network access to the Certificate Authority that signed the certificate.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Runspace opening multiple remote powershell connections and not closing them

    Hello,
    I hope this has not already been asked as I have been searching for good amount of time.
    I have an asp.net site that runs some remote PowerShell scripts. Below is the code I Pass the script to. Everything works fine except it does not close all connections.
    When I do a netstat -ao I see that each time this is called it leaves 2 sessions opened to the remote server. I go on the remote server and do a Get-PSSession and do not see any of the sessions opened. When stepping through the code, "pRunspace.Open()"
    creates 2 connections to the destination server, Then the "psresult = pShell.Invoke" creates another open connection. The Dispose() only closes one of the 3 connections. Upping the amount of connections or changing the idle time on the receiving
    server is not an option as I have already increased/lowered them and it still gets maxed connections. . iisreset clears the open connections. I have tried .disconnect() but the destination does not have PowerShell 3.0. Am I missing something stupid here? Is
    there a better way to go about this. 
    Any help is appreciated.
    Thank you,
    Mike
    Public Shared Function RunRemotePSScript(ByVal script As PSCommand, ByVal ServerURL As String, ByVal shellurl As String) As String
    Dim pCredential As PSCredential
    Dim pConnectionInfo As WSManConnectionInfo
    Dim pRunspace As Runspace
    Dim pShell As PowerShell
    Dim securepass As New System.Security.SecureString
    Dim serverUri As New Uri(ServerURL)
    Dim psresult As New System.Collections.ObjectModel.Collection(Of PSObject)
    For Each c In "Password"
    securepass.AppendChar(c)
    Next
    '-- set credentials
    pCredential = New PSCredential("Domain\username", securepass)
    '-- set connection info
    pConnectionInfo = New WSManConnectionInfo(serverUri, shellurl, pCredential)
    '-- create remote runspace
    pRunspace = RunspaceFactory.CreateRunspace(pConnectionInfo)
    pRunspace.Open()
    '-- create powershell
    pShell = PowerShell.Create
    pShell.Runspace = pRunspace
    '-- add command to powershell
    pShell.Commands = script
    Try
    '-- invoke the powershell
    psresult = pShell.Invoke
    pShell.Dispose()
    pRunspace.Close()
    pRunspace.Dispose()
    Dim sb As String = ""
    For Each result As PSObject In psresult
    sb &= result.ToString
    Next
    Return sb
    pShell.Dispose()
    pRunspace.Dispose()
    pRunspace.Close()
    pRunspace = Nothing
    Catch ex As Exception
    If Not IsNothing(pShell) Then
    pShell.Dispose()
    End If
    If Not IsNothing(pRunspace) Then
    pRunspace.Dispose()
    pRunspace.Close()
    End If
    Return Err.Description
    End Try
    End Function
    That is the netstat output I get after running through the function one time.
    c:\Windows\system32>netstat -ao |findstr Server1
      TCP    MycomptuerIP:49307    RemoteServer1:http           ESTABLISHED     7632
      TCP    MycomptuerIP:49312    RemoteServer:http           ESTABLISHED     7632
    Here is an example of how i call the function. 
    Public Shared Function Set_UM_PinNumber(ByVal UserSamAccout As String, ByVal PinNumber As String) As String
    Try
    Dim output As String = ""
    Dim psh As New PSCommand
    psh.AddCommand("Set-UMMailboxPIN")
    psh.AddParameter("Identity", UserSamAccout)
    psh.AddParameter("Pin", (PinNumber))
    psh.AddParameter("PinExpired", 0)
    output = AD.ADWrapper.RunRemotePSScript(psh, "http://Server.domain.com/powershell?serializationLevel=Full", "http://schemas.microsoft.com/powershell/Microsoft.Exchange")
    If output = "" Then
    Return "Pin Updated"
    Else
    Return output
    End If
    Catch ex As Exception
    Return Err.Description
    End Try
    End Function

    Fred, 
    Thank you for taking time to reply. From what I got and tested "The EndInvoke method
    is used to retrieve the results from the completed runspace" Then you clean up after that.. Close is supposed to close all the connections. But I could be very wrong. I am self taught and
    truly could be going at this all wrong. This was working in the past ( could be that more people are using it now that I am seeing the connections full). I really hope someone can help me or direct me in the right direction as this is causing a lot of problem
    for me.
    Mike 

  • SharePoint Remote Powershell Session - Can't find the local farm

    Hi,
    I've been trying to configure a remote PS session to connect to a SharePoint Farm to create site objects.  I can get connected and load the SharePoint PS snap in successfully but when I try commands like Get-SPWeb all I get is an error "Cannot
    access the local farm".
    If I launch PS on the SharePoint server and add the snap in I can use the CMDLETs fine.  I've ensured PS remoting is enabled and granted access so that the client computer is authorised to connect to the SharePoint server.
    Here is the connection code I've used:
    $RunAsAccount = "domain\user"
    $RunAsPass = "password"
    $pass = $RunAsPass | ConvertTo-SecureString -AsPlainText -Force
    $credentials = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $RunAsAccount, $pass
    enter-pssession -computername spserver.domain.local -credential $credentials
    Add-PSSnapin Microsoft.SharePoint.Powershell
    The connection user is a local administrator on the sharepoint server and is a dbowner of the sharepoint config and content databases (for testing) and also has shell access on the sharepoint config DB.
    Any ideas?
    Thanks,
    Tim

    Remoting isn't quite that nice.
    I believe you need to use an invoke-command to run the snapin on the destination server, or import the commandlets locally to slightly different names.
    To borrow the important section for your needs first you'd need to put the session into a variable for later use, then use the invoke-command cmdlet
    "$session = New-PSSession -computername "SPServer" -Authentication CredSSP -Credential $crd
    Start Remoting on you Client Computer
    Now your client computer is ready to actually create the session and import the SharePoint commands from the Server.
    The next command adds the SharePoint PowerShell commands to your session.
    Invoke-Command -Session $session -ScriptBlock{Add-PsSnapin Microsoft.SharePoint.PowerShell}
    Note, that at this point, you can run whatever administrative PowerShell commands you need to run by using the Invoke-Command -Session $session -ScriptBlock{} syntax."
    http://blogs.msdn.com/b/varun_malhotra/archive/2010/06/10/configure-power-shell-for-remote-use-of-sp-2010.aspx

  • [Exchange 2013/Online][PS] How to retrieve existing remote PowerShell sessions

    I'm trying to figure out how to retrieve all existing remote PowerShell sessions (user-managed) between a client and an Exchange 2013 server.
    Running Get-PSSession only returns remote sessions created within the current PowerShell session (system-managed). I need to do this from within a
    different PowerShell session, possibly even from a different computer from where those remote sessions were established.
    Documentation for Get-PSSession states that this should be possible starting with PS 3.0 since user-managed sessions are now stored locally on the remote server (in my case, the Exchange 2013 server) and can later be retrieved from any system-managed session
    by using Get-PSSession with either the ComputerName or ConnectionUri parameter sets.
    Here's how those remote sessions are created:
    PS $> $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://<exchange_server>/powershell/ -Credential $credential -Authentication Basic -AllowRedirection
    PS $> Import-PSSession $Session
    And how I try to retrieve those session afterward:
    PS $> Get-PSSession -ComputerName <exchange_server> -ApplicationName powershell -Authentication Basic -Credential $credential -UseSSL -Port 443
    PS $> Get-PSSession -ConnectionUri https://<exchange_server>/powershell/ -AllowRedirection -Authentication Basic -Credential $credential
    Both methods yield no results (nor errors), while running Get-PSSession (without any parameters) within the same user-managed session would successfully return the session. 
    The only explanation I could think of right now is that somehow, WinRM on the Exchange server is not running PS 3.0 even though:
    $PSVersionTable.PSVersion returns 3 0 -1 -1
    winrm id returns ProductVersion = OS: 6.2.9200 SP: 0.0
    Stack: 3.0
    But when I attempt to disconnect a remote session with this Exchange server using Disconnect-PSSession, I get the
    following error message: 
    Disconnect-PSSession : Disconnect-PSSession operation failed for runspace Id = XXXXX
    for the following reason: The disconnection operation is not supported on the remote computer. To support
    disconnecting, the remote computer must be running Windows PowerShell 3.0 or a later version of Windows PowerShell.
    So I guess I have a couple questions:
    Are remote PSSession even supposed to be maintained on
    an Exchange 2013 server? 
    If so, is it possible to retrieve them from a different session using GET-PSSession?
    Which version of PS 3.0 is used by WinRM on an Exchange 2013 server?
    thanks

    Thanks for your help. 
    1. I know that remote PS sessions are supported, I have no issue connecting to the Exchange server. The issue is with
    reconnecting to an existing PS session.
    2. As mentioned in my original post, PS & WinRM 3.0 are installed on the client:
    $PSVersionTable.PSVersion returns 3
    0 -1 -1
    winrm
    id returns ProductVersion = OS: 6.2.9200 SP: 0.0 Stack:
    3.0

  • Constrained Delegation For Remote Powershell Sessions

    Consider the case of a client (let's call it Client) doing a remote Powershell session to a server (ServerA). In this Active Directory environment, the client has full administrative permissions over ServerA. To create the
    session, the client opens a Powershell console and types:
    $ps = New-PSSession -ComputerName ServerA
    Enter-PSSession $ps
    From this point, the client wants to be able to open a different remote Powershell session to another server (ServerB). Again, he's having administrative permissions over this server as well. If he goes ahead and uses the cmdlet below:
    $newPS = New-PSSession -ComputerName ServerB
    ...this won't work by default due to the
    Kerberos double hop issue.
    A way to make this work is enable delegation for the Client AD account (by adding a dummy SPN and also making sure the
    Account is sensitive and cannot be delegated isn't enabled), and turn on unconstrained delegation for the
    ServerA computer account in Active Directory. After this is done, as soon as the 1st remote PS session is entered, issuing a 'klist' will reveal a Kerberos TGT for Client, with the 'forwarded' flag set. The 2nd remote PS session can be made without
    any issues now to ServerB.
    However, in order to make this more secure, as to not have ServerA being able to act on behalf of Client to any target machine, but only against
    ServerB, constrained delegation can be used. So the ServerA's Delegation tab in AD is changed as to contain only the
    http/ServerB.fqdn (since we're using Powershell remoting). The problem is that trying to initiate the 2nd connection fails just as in the original case (logon session does not exist). Checking things further, I've noticed that after the 1st session
    is entered, issuing a 'klist' only reveals an http/ServerB.fqdn Kerberos ticket, and no longer any Kerberos TGTs. However reading the documentation surrounding constrained delegation (namely the S4U2Proxy component)
    here, it doesn't look as the TGT should be present there.
    The question is why cannot constrained delegation be used here or more likely, what is it I'm doing wrong ?
    Note that CredSSP is a mechanism that I wouldn't want to use here. Also, even though this entry contains a lot of Active Directory information, I thought it would be relevant for the Powershell community to post here as opposed to the Active Directory section.
    If this should be moved, please let me know.

    Here's the start a series of articles that may help:
    http://blogs.msdn.com/b/taylorb/archive/2012/03/26/remote-administration-with-powershell-3-0-sessions-part-1.aspx
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • Lync 2013 Remote Powershell

    Hi everyone,
    I have problem to run start-csclslogging through remote powershell. Here is the step that I have done
    First: install Lync debug tool (that includes snooper, ocslogger, etc..) and install Lync administrative tool (which includes Lync management powershell). I also copied the clsagent folder inside "C:\Program Files\Common Files\Microsoft Lync Server
    2013" from Lync Frontend server to my own laptop
    Next, I run this script to remotely connect to my frontend server:
    # get creds for remote environment
    $credential = get-credential "my username"
    # set session options to bypass the PKI checks - I trust the far side
    $sessionoption = New-PSSessionOption -SkipCACheck -SkipCNCheck -SkipRevocationCheck
    #create new session
    $session = New-PSSession -ConnectionUri https://myfrontendserver/ocspowershell -Credential  $credential -SessionOption $sessionOption
    # assuming the above line worked, import the cmdlets needed for Lync
    import-pssession $session
    Everything works fine, i can run several Lync commands remotely (e.g. provision user account). However when I started to run the troubleshooting command like start-csclslogging -screnario IMandPresence, I faced below error message
    Start-CsClsLogging : Cannot validate argument on parameter 'Scenario'. Method not found: 'Void Microsoft.Rtc.ClsCommon.Settings.Initialize(Boolean)'.
    At line:1 char:30
    + Start-CsClsLogging -Scenario IMandPresence
    +                              ~~~~~~~~~~~~~
        + CategoryInfo          : InvalidData: (:) [Start-CsClsLogging], Parameter BindingValidationException
        + FullyQualifiedErrorId : ParameterArgumentValidationError,Microsoft.Rtc.Management.Cls.StartOcsLoggingCmdlet
    Your advise is much appreciated. Thank you

    Hi tdth,
    To better understand the issue, I would like to collect the following information for troubleshooting:
    1. Can you run the command on the Lync Server ?
    2. Do you have created any custom scenario ?
    3. Can you run the following command to capture the log?
    (Note: By default ClsController.exe is installed under "C:\Program Files\Common Files\Microsoft Lync Server 2013\ClsAgent". You need to start Lync Management Shell
    and access the location "C:\Program Files\Common Files\Microsoft Lync Server 2013\ClsAgent".)
    ClsController.exe -start -scenario IMAndPresence -Pools <Pool FQDN>
    Best regards,
    Eric
    1. Yes, I can run the command locally on FrontEnd server
    2. No. I know what problem you're talking about, but it's not because of Site-level scenario
    3. Same as question 1, if I run this command locally on Frontend server, it works. But I cannot run it from remote powershell session.

  • Cannot load Exchange Online Protection commands in Remote PowerShell

    My colleagues and I cannot load the Exchange Online Protection commands in Remote PowerShell.
    It just loads the Exchange Online cmdlets.
    Where are we going wrong?
    PS C:\Users\jmorrison> $UserCredential = Get-Credential
    cmdlet Get-Credential at command pipeline position 1
    Supply values for the following parameters:
    PS C:\Users\jmorrison> $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.protection.outlook.com/powershell-liveid/
    -Credential $UserCredential -Authentication Basic -AllowRedirection
    WARNING: Your connection has been redirected to the following URI: "https://outlook.office
    365.com/powershell-liveid?PSVersion=4.0&realm={I've removed my domain name for security reasons}.co.uk "
    PS C:\Users\jmorrison> Import-PSSession $Session
    ModuleType Version   
    Name                               
    ExportedCommands              
    Script    
    1.0        tmp_4fnmyflw.she                   
    {Add-AvailabilityAddressSpac...
    PS C:\Users\jmorrison> Get-TransportRule
    Get-TransportRule : The term 'Get-TransportRule' is not recognized as the name of a
    cmdlet, function, script file, or operable program. Check the spelling of the name, or
    if a path was included, verify that the path is correct and try again.
    At line:1 char:1
    + Get-TransportRule
    + ~~~~~~~~~~~~~~~~~
    + CategoryInfo         
    : ObjectNotFound: (Get-TransportRule:String) [], CommandNotF
    oundException
    + FullyQualifiedErrorId : CommandNotFoundException

    I've moved MX records to EOP and seems to be fine all domain expect few.<o:p></o:p>
    I can see that problematic domain has "-" between domain names.<o:p></o:p>
    mydomain.com<o:p></o:p>
    mydomain-com.mail.protection.outlook.com --> has no problem, however<o:p></o:p>
    mydomain.usa.com<o:p></o:p>
    mydomain-usa-com.mail.protection.outlook.com having issue <o:p></o:p>
    when i checked in mx lookup it says MX record has NO A Record.<o:p></o:p>
    any suggestions<o:p></o:p>

  • Remote PowerShell Error: Value cannot be null

    I am trying to run commands on our exchange server from another server, and I keep running into this problem regard less of the command I run.  For example I am trying to run the New-MailboxExportRequest and I alway get the error "Value cannot be null."
     If I run the command from the exchange server console it works fine.
    the client machine is Server 2008 (x86) and the server is Server 2008 R2 (x64).
    Here is the exact log of what I am doing
    Windows PowerShell
    Copyright (C) 2009 Microsoft Corporation. All rights reserved.
    PS C:\Users\Administrator> Enter-PSSession -computerName SAM
    [sam]: PS C:\Users\Administrator\Documents> Add-PSSnapin Microsoft.Exchange.Management.PowerShell.E2010
    [sam]: PS C:\Users\Administrator\Documents> new-mailboxexportRequest
    cmdlet New-MailboxExportRequest at command pipeline position 1
    Supply values for the following parameters:
    Mailbox: eric
    FilePath: C:\Test\eric.pst
    Value cannot be null.
    Parameter name: parameters
    + CategoryInfo :
    + FullyQualifiedErrorId : System.ArgumentNullException,Microsoft.Exchange.Management.RecipientTasks.NewMailboxExportRequest
    [sam]: PS C:\Users\Administrator\Documents>
    It seems that almost all the exchange commands do not work using this connection method.  Can any one tell me what I am missing?

    Have the remote powershell ever worked before?
    Have you tried to use the procedure in the article below to connect the remote exchange server?
    Connect Remote Exchange Management Shell to an Exchange Server
    James Luo
    TechNet Subscriber Support (http://technet.microsoft.com/en-us/subscriptions/ms788697.aspx)
    If you have any feedback on our support, please contact [email protected]

  • Ipad mini remote app will connect to my itunes library and apple tv but won't display content from itunes library on the apple tv section of remote app

    What I am trying to do is very simple, and I am sure I have done it before.
    I have an Apple TV (2nd Gen) connected to Wifi Network (Airport Extreme 802.11n) I want to stream content from the itunes library on my macbook pro over the wifi network to the Apple TV. This works no problem, home sharing is set up and I can see the itunes library under 'Computer' on the Apple TV interface. I can use the Apple Remote to scroll through and play content from my itunes. Works no problem.
    Now I want to use the remote app on my ipad mini to control the apple tv. Using up to date app (Version 3.01) Again, everything looks like it should work. I have turned on Home Sharing on the remote app settings. It works fine and both my itunes library and Apple TV show up on the interface. I can touch the itunes icon and control the itunes on my computer and play music and video on my computer screen.
    Now when I touch the apple tv icon I can't see my itunes library content to play on the apple tv. I see the below image. If I tap on the icon in the bottom left it takes me back to the screen in the first image. What is the strangest thing is that I can control the apple tv using the gestures interface! This isn't what I want though and I want to be able to see the itunes library on the screen of the ipad and play it on the apple tv. You can see in the video on this link (http://www.youtube.com/watch?v=UvEpgcE9KCs). This is what I am trying to do and I just don't understand why I don't get the screen seen at 1:25 in the video. Instead I get the screen seen in the below image. Any ideas? I know that the remote app is connecting to the apple TV because I can control it using gestures, just strange I can't see the content on the ipad like in the attached video clip, instead I see the screen in the image below. Any ideas would be greatly appreciated!

    OK, Problem solved. Software on Apple TV was VERY outdated. It had been sitting in the box for over a year and needed an update. Problem solved!

  • If your remote will not connect, read this, it will most likely help you.

    If your remote is not connecting, I can almost guarantee it is because you need to forward the ports on your router necessary to control it. I've suggested it to MANY people, and it has helped 100% of them. You need to forward ports TCP 3689 and UDP 5353.
    If you don't know how to do this go to the website www.portforward.com, and click "Guides". Then, under Port Forwarding", click "Port Forwarding Guides by Router".
    It doesn't matter if you're using a PC (which I am), or a Mac (which many of you are), this is more than likely what you need to do.
    And for those of you who have had no problem whatsoever: I'd make sure your security is enabled. If it's not, yer in for a world of hurt if someone finds that out.
    Please reply if this helped you, or if you need some more information. I will check back at 9:00PM Central when I get off work.
    Message was edited by: dylanfowles

    This is the exact same problem i am experiencing, wired pc, into router that also provides the wireless connection for my iphone. I get no device popping up in itunes when trying to add a library in remote.
    I have added the port forwards to my router with no joy, disabled any and all software firewall/av, no joy.
    Its quite frustrating as i can get to my laptop's library just fine (laptop is wireless), i've even tried at work and can get over wireless via an access point onto the network and my pc there is wired in.
    I can only guess it is my router doing something stupid, or because it is running as a gateway and router, or something.
    Any other info would be great

  • Can I use Apple Remote desktop to connect over the internet?

    I would like to use Apple Remote Desktop to connect back to my MacPro desktop at home while I am on my Macbook Air at work.  Will I need a static IP from my service provider to do it.

    Hi
    It's not absolutely necessary but it would be more useful if you did have one. Most ISPs will require you to have a business class broadband service at your home rather than a residential one. These cost more (a lot more in some cases) than a residential service. Call your home location's ISP and discuss it with them.
    If the cost is too much then you could go for a DynDNS account which is free. The details of this account would be configured in the whatever you're using as a firewall at your home's location. This assumes the firewall has the facility to add such an account. Thereafter it's just a question of configuring the port fowarding feature of that firewall.
    A potentially 'big' problem though is whether or not your workplace will allow that kind of traffic out of their network. This would be something you'd need to discuss with them first.
    HTH?
    Tony

  • Inconsistent behavior of "where" filter command in remote powershell session

    I've got a simple powershell script I've written to do a gpo backup (backup-gpo) to a remote file share, and then I launch a remote powershell session with "invoke-command" where I zip up the results of the gpo backup, then delete the gpo
    backups once the files are safely zipped.
    What I'm seeing, and I've never seen before, is very inconsistent results in the file filtering statements.  I use the following line twice in my code to find the files written by the GPO backup:
     Get-ChildItem -Force | ? {($_.lastwritetime.date -eq (Get-Date).date) -and ($_.name -notlike "*.zip")}
    The first time it finds the files to zip, the second time it finds the files to delete.  It's a copy/paste, so it's the exact same code.
    The weirdness that happens is some nights, it works fine, and both filters match what they should.  The GPO backup results are found, zipped, and then deleted.  Other nights, the first filter will match all old *.zip files (the exact
    opposite of the filter), and zip them up - then the "delete" filter, which is the exact same code, will match correctly and delete the GPO backup results that should have been zipped but weren't.
    Last night the first filter matched correctly, and then the second filter matched the date portion of the filter, ignored the *.zip portion, and deleted everything in the target folder from that day. 
    Anyone seen anything like this?

    Hi Nbhms,
    Any updates about this issue?
    If you need further help, please feel free to reply this post directly
    so we will be notified to follow it up.
    If you have any feedback on our support, please click here.
    Best Regards,
    Anna
    TechNet Community Support

  • TS1741 I can't get my remote app to connect my iPad to my Apple TV

    I can't get my remote app to connect my iPad to the Apple TV

    Meanwhile, since Apple does not read these forums, I suggest we all leave comments on their feedback page: http://www.apple.com/feedback/appletv.html
    That way they'll at least know a bunch of us are having this issue.
    Hopefully Apple will issue a fix soon.

  • I need help with the iPad Remote app to connect to apple TV 2

    I need help with the iPad Remote app to connect to apple TV 2 I have the app already on my ipad and when I open it only shows my itunes library and not the small black Apple TV 2 icon! How do i fix this and i know it's something 

    Get the manual at http://manuals.info.apple.com/en_US/AppleTV_SetupGuide.pdf
     Cheers, Tom

Maybe you are looking for

  • Can I restore my iMac hard drive to factory settings without the install disc?

    I have an older iMac running iOS X 10.5.8. with a 2GHZ processor.  1GB DDR SDRAM with a Power PC G5 chip We want to restore the hard drive to original factory settings but don't have the OS X install disc.  I have been searching online to find a disc

  • Can I use a power cord from a Macbook air with a Macbook?

    Can I use a power cord from a Macbook air with a Macbook?

  • Alert Button for delete record ASP

    Hello I have a delete record and have added a javascript alert box. I have 2 options. The first is OK and the second is to cancel. The problem is that I having trouble with the cancel part. It deletes the record regardless. I tried to pass informatio

  • Printing over Windows Network

    Hi, I wonder if anyone can help me with this. I'm at University, trying to connect my MacBook to a printer, but my Uni doesn't support Macs. I've got the instructions for connecting to the address in command prompt in Windows. Does anyone know of a w

  • FCP X don't show audio files in the music and sound browsing.

    Today I open FCP X to find some Sound Fx for a TV Spot and FCP X doesn't show any audio in the music and sound browsing. I trash my preference, restart computer with no lock. Hope that somebody can help, Ricky Dominguez Luna Films Puerto Rico