In need of remote tools to manage AppleTvs(3)

We have over 50 AppleTVs and there is a need to manage these deices remotely via ssh or some other remote access
Need to reboot remotely
Need to update software remotely
Need to disable 2.4 Ghz Radio on wifi
Need to update profiles remotely
etc..
What options would be available?
Cheers

ummm... YES!!!
and his site has alot of free tutorials too
http://www.applemotion.net/
and specialcase
http://www.motionsmarts.com/
and Zak Peric
http://embryo.me.uk/wp/category/about/about-me/
and those who's sites I have not posted, sorry. I just posted the first three in my bookmarks menu..
-_-'

Similar Messages

  • Users not showing in Terminal Server Under Remote desktop services manager and Task Manager

    Hi All,
    I have a problem here in Terminal Server. I can not see the users logged in to Server but i know users are accessing the files and currently working.
    1. From the Task Manager-- Show processes from all users displayed all the processes accessing by users.
    2. From the Task Manager-- From Users Tab--No users list at all
    3. From the Command Prompt- Query users-- No information
    4. From the Remote desktop services Manager-- used with IP/Host name-- Still can not see the users list and processes. So i can not kill the session if needed.
    Enviroment:
    TS CALS 20 currently accessing 15 users
    VM-WARE GUEST: 2008 RS Terminal Services/Remote Desktop services installed
    Windows up to date-- Just updated last month
    Problem is here for long time. Just couldn't find the time to trouble shoot.
    UMESH DEUJA MCP,MCTS,MCSA,CCNA

    Hi,
    Thank you for posting in Windows Server Forum.
    As you have tried many steps, I suggest you to try below command line and power shell command if successful in your case. Please try below command with Admin access:
    qwinsta /server:<servername>
    To kill a session use rwinsta to delete the session specifying the ID number:
    rwinsta /server:computer01 3
    Here's the list of command line tools for Remote Desktop Or, you can use PowerShell:
    Get-RDUserSession and Disconnect-RDUser
    Please check the list of Power Shell command from
    this link.
    Hope it helps!
    Thanks,
    Dharmesh

  • Remote Access Disk Management

    I am wanting to be able to manage the new installation of windows 2012r2 core, which is a workgroup.
    I can see the event logs etc, but when I try device manager or disk manager I receive rpc error.
    What do I need to configure?

    I've posted this to a number of forums.  It has allowed me to manage almost everything remotely.  There are still some things with disk manager that don't work quite right, but they can be handled correctly from Server Manager instead of disk manager. 
    I run this on every server I build and I try to do almost all my management remotely.  Some things do require command line.  Microsoft has gotten a lot better over the years on the MMCs handling things remotely, but they are not 100% there.
    Oops, as I clicked submit, I saw the fact that your server is in a workgroup.  My script assumes domain.  But,
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/fe80f0aa-0697-4657-a1da-19d36b036698/guide-to-remote-manage-hyperv-servers-and-vms-in-workgroups-or-standalone?forum=winserverhyperv is another post talking about how another person accomplished
    in a workgroup.
    # Set-UcsHyperVRemoteMgmt.ps1
    # C A U T I O N: Ensure these settings conform to company security policy
    # This script works on a variety of settings that are easiest done from the
    # local machine to make it remotely manageable by a management workstation.
    # To find rule names
    # Get a list of possible groups
    # Get-NetFirewallRule | Select DisplayGroup -Unique | Sort DisplayGroup
    # To list the applicable rules that may be set.
    # Get-NetFirewallRule | Where { $_.DisplayGroup –Eq “Remote Volume Management”} | Format-Table Name
    # Ensure Server Manager remoting is enabled
    Configure-SMRemoting.exe -Enable
    # Set some firewall rules
    # Enable ping requests in and out
    Set-NetFirewallRule –Name “FPS-ICMP4-ERQ-In” –Enabled True -Profile Any
    Set-NetFirewallRule –Name “FPS-ICMP6-ERQ-In” –Enabled True -Profile Any
    Set-NetFirewallRule –Name “FPS-ICMP4-ERQ-Out” –Enabled True -Profile Any
    Set-NetFirewallRule –Name “FPS-ICMP6-ERQ-Out” –Enabled True -Profile Any
    # Enable remote volume management - firewall rules need to be set on both
    # source and destination computers
    # ***NOTE*** Policy must also be set on system to "Allow remote access
    # to the Plug and Play interface"
    # This is done with gpedit.msc locally or gpedit for domain policy
    Set-NetFirewallRule –Name “RVM-VDS-In-TCP” –Enabled True -Profile Any
    Set-NetFirewallRule –Name “RVM-VDSLDR-In-TCP” –Enabled True -Profile Any
    Set-NetFirewallRule –Name “RVM-RPCSS-In-TCP” –Enabled True -Profile Any
    # Enable DCOM management requests in
    Try
    Set-NetFirewallRule –Name “ComPlusNetworkAccess-DCOM-In” –Enabled True -Profile Any
    Catch
    Write-Host "ComPlusNetworkAccess-DCOM-In not set; assuming core installation"
    # Enable remote service management
    Set-NetFirewallRule –Name “RemoteSvcAdmin-In-TCP” –Enabled True -Profile Any
    Set-NetFirewallRule –Name "RemoteSvcAdmin-NP-In-TCP” –Enabled True -Profile Any
    Set-NetFirewallRule –Name “RemoteSvcAdmin-RPCSS-In-TCP” –Enabled True -Profile Any
    # Enable Remote Event Log Management
    Set-NetFirewallRule –Name "RemoteEventLogSvc-In-TCP” –Enabled True -Profile Any
    Set-NetFirewallRule –Name “RemoteEventLogSvc-NP-In-TCP” –Enabled True -Profile Any
    Set-NetFirewallRule –Name “RemoteEventLogSvc-RPCSS-In-TCP” –Enabled True -Profile Any
    # Enable Remote Scheduled Tasks Management
    Set-NetFirewallRule –Name “RemoteTask-In-TCP” –Enabled True -Profile Any
    Set-NetFirewallRule –Name “RemoteTask-RPCSS-In-TCP” –Enabled True -Profile Any
    # Enable Windows Firewall Remote Management
    Set-NetFirewallRule –Name “RemoteFwAdmin-In-TCP” –Enabled True -Profile Any
    Set-NetFirewallRule –Name “RemoteFwAdmin-RPCSS-In-TCP” –Enabled True -Profile Any
    # Enable WMI management requests in
    Set-NetFirewallRule –Name “WMI-WINMGMT-In-TCP” –Enabled True -Profile Any
    # Enable Remote Shutdown
    Set-NetFirewallRule –Name “Wininit-Shutdown-In-Rule-TCP-RPC” –Enabled True -Profile Any
    # Enable Network Discovery on the Domain Network
    Set-NetFirewallRule –Name “NETDIS-FDPHOST-In-UDP” –Enabled True -Profile Domain
    Set-NetFirewallRule –Name “NETDIS-FDPHOST-Out-UDP” –Enabled True -Profile Domain
    # Set some services to automatically start and start them.
    Set-Service -Name PlugPlay -StartupType Automatic
    Start-Service PlugPlay
    Set-Service -Name RemoteRegistry -StartupType Automatic
    Start-Service RemoteRegistry
    Set-Service -Name vds -StartupType Automatic
    Start-Service vds
    # Enable Remote Desktop
    (Get-WmiObject Win32_TerminalServiceSetting -Namespace root\cimv2\TerminalServices).SetAllowTsConnections(1,1) | Out-Null
    (Get-WmiObject -Class "Win32_TSGeneralSetting" -Namespace root\cimv2\TerminalServices -Filter "TerminalName='RDP-tcp'").SetUserAuthenticationRequired(0) | Out-Null
    # Enable Remote Desktop rules for all profiles
    Set-NetfirewallRule -Name "RemoteDesktop-UserMode-In-TCP" -Enabled True -Profile Any
    Set-NetfirewallRule -Name "RemoteDesktop-UserMode-In-UDP" -Enabled True -Profile Any
    .:|:.:|:. tim

  • Paperq: a tool for managing a reading queue of academic literature

    paperq is a command-line tool for managing a reading queue of academic literature.   It's usage is simple: you add files to the queue and then you run it without arguments to open the next file in the queue. The queue part of the code itself is rather simple but paperq also offers some other nice features:
    Add files (-a option)
    Remove a file (-r option)
    Display info on a file. Given a BibTeX file,  print the bibliographic information, otherwise print the file location (-i option)
    List all files (or bibliographic information) in the queue (-l option)
    Create an archive (tar.gz) of the papers in the queue, prepending the file names with the queue position (-z option)
    Operate on any file in the queue, instead of the head, via the -n option
    Peek at a file (open it, but don't remove it from the queue) via the -p option
    Print a file (-t option)
    Configurable file-opening command (xdg-open %s, by default)
    Documentation is available in the README file or on the website (see below). A man page is also included.
    I've been using it myself now that I finally stopped using Mendeley. I find it to be quite handy, so I've packaged it up to be shared with others.
    Screenshot showing the bibliographic info:
    Website
    AUR
    Last edited by jakobcreutzfeldt (2014-01-28 09:15:50)

    I just uploaded version 1.1.1.  I somehow missed a bug in which the first word of the author list was being chopped off. It's fixed.
    marttt wrote:Thanks very much for this! I can finally ditch some of my ugly scripts now. Have you considered adding other bibliographic data formats in the future? (Here is an interesting solution with YAML and Pandoc and, correspondingly, proper UTF-8 support.)
    Glad to hear it could be of use to you! Honestly, this also just started out as a quick script but little by little I started adding more handy features.
    As for other bibliographic formats, it could be possible. I'm mainly familiar with BibTeX, so I would need to see how the other formats look. 
    In all honesty, the bibliographic info printing could be greatly expanded: only journal articles are supported at the moment, and mathematical expressions in the titles aren't yet supported (i.e. greek characters).  It might be more efficient in the long run to write a dedicated biblio parsing program that loads some pre-written BibTeX-parsing library rather than all the crazy sed work that's going on in there right now. If that's the case, then it's just a  matter of loading some library for a different biblio file format in order to support it.

  • My remote wont turn the appletv on even after changing battery and unplugging everything and plugging it back in

    my remote wont turn my appletv on even after changing the battery

    Nothing, the light didn't flash at all? If so you either have a dead remote or a dead Apple TV.
    If you have a Mac you can try pairing the remote with it to test. Go to System Preferences->Security & Privacy and unlock the panel. Click the Advanced button and look for the Disable Remote Control Infrared   Receiver checkbox. Clear it and click the Pair button. If the remote is ok you should be able to pair it to the Mac.
    If you can't pair the remote it most likely pints to a bad remote. If the Apple TV still won;t respond then you need to get the Apple TV looked at.
    Good luck

  • Unable to use remote tools on two computers

    Hello All
    I cant seem to use the Remote Tools feature on two of our pcs. They are giving the exact same error below. All of the prereqs are in place. Any thoughts on this? Or logs I could look at?
    Thanks.
    Firewall disabled
    SCCM Remote tools account are in local admin on the computer
    Phil Balderos

    No, a manual client installation and manual running of the Machine Policy Retrieval & Evaluation Cycle, will not make any difference here. The client does not know how it was installed, or the actions were run. So as long as the client got installed
    correctly, and can download policies, it should be fine.
    Personally, since it is two clients only, I'd reimage the two systems. I've seen numerous threads and cases where a feature doesn't work, but are resolved with a reimage of the computer. Harsh, but usually works. You could certainly try uninstalling the
    Configuration Manager client, then reinstalling it again first.
    Wally Mead

  • In-Tools Preference Manager

    The In-Tools Preference Manager allows you to set preferences across multiple machines and get back up and running after you "trash preferences".  It's a great tool!
    I am a photographer using ID for wedding albums.  I help a lot of other photographers set up preferences.  So, I am trying to customize a default file.  I am stuck on the preference that sets Fill Frame Proportionally using Center Reference Point.  I would be so grateful if someone could show me the code for this one.  I've searched up and down the default settings file and the ID object model information.  I found some verbiage but can't implement it.
    This is how you do it manually:
    Object > Fitting > Frame Fitting Options: 
      1.  Select center reference point
      2.  Fitting on Empty Frame > Fitting > Fill Frame Proportionally
    Here is the custom file I have created so far:  Album Design
    Oh...one more thing...there seems to be a handful of options for default font.  Any idea how to set Helvetica as the default font?
    Thanks for any help.  And, if you are not familiar with the script you should download it and give it a try.  It's a great tool.

    Hi Braxton,
    I'm glad you like the script!
    There's no need to mess with the xml files (unless you like messing with xml).
    The script will save any preferences that you set -- provided it's one of the preferences that it deals with.
    There's a distinction between preferences and presets in the DOM. The latter is much more difficult to preserve, and the Preference Manager script does not save presets (including the ones for styles and text defaults).
    Tackling presets has been on my "to do" list since I created the script, but never quite got down low enough on the list to actually get to it...
    Application and document Frame Fitting Options are actually probably a preference, but Preference Manager doesn't currently handle that. I don't remember why. Possibly it was an oversight. I'll try to look at it when I have some time...
    Here' my list of what to look at adding:
    displaySettings
    documentPresets
    flattenerPresets
    PDFExportPresets
    PrinterPresets
    characterStyles
    paragraphStyles
    objectStyles
    cellStyles
    tableStyles
    saved search and replaces
    Contents of fonts folder?
    Scripts?
    Workspaces
    Keyboard shortcuts
    Print presets
    Custom dictionary?
    Either way, if you come across preferences which are not preserved, please let me know!
    Harbs

  • Bandwidth for remote Lion Profile Manager server

    Hi all,
    Can anyone shed some light on what kind of upstream bandwidth you'd need to have for a remote Lion Profile Manager server to manage your Macs?  I'm not thinking about accessing home directories over the Internet, just the configuration profiles.
    Thanks in advance for any input,
    Chris

    Hi
    64kbps for sites with approx 3-5 users or  using ADSL lines with 512kbps
    Regards
    Divya

  • Download tools to manage this host from

    Hi All,
    Recently we got a new SAP Discovery V4 from HP. While starting the server and after login we are getting an error like below,
    Download tools to manage this host from:
    http://XX.XXX.XX.XX  (STATIC)
    From here, no where its going further. I guess it has to do with ESXi.
    Could some one please help me here.
    Best Regards,
    Prasad.

    Hi Prasad,
    When you say "http://XX.XXX.XX.XX",  do you mean the IP address of your ESXi server? If yes then this is correct, you would first need to install the VMware VSphere client to be able to start the Linux and Windows server.
    You need to follow the Discovery system V4 quick guide to get started with the system. The V4 quick guide is available here: http://www.sdn.sap.com/irj/sdn/discoverysystem-guide
    If you continue to experience problems, please open a OSS support message with the component CA-SOA-DS.
    thanks,
    Deepa

  • Remote Desktop Connection Manager alternative

    Hi Guys,
    Not too sure if anyone has asked this question before, are there any tools that you guys are using other than RDCMan where it will not store password in plain text? Saw some paid app, but doesn't seems to have much review on this portion.
    thanks in advance.

    Hi Kinshi,
    Do you want to encrypt or decrypt the password? If you want to decrypt password then you can able to perform by this way.
    Go to Remote Desktop Connection Manager -> Edit -> Properties -> Logon Credentials - Clear the Password. Then click Save 
    In addition you can refer below thread for encrypt password.
    How does Microsoft Remote Desktop Manager encrypt passwords?
    Apart from this, there are other 3rd party software but I will suggest that to use in windows system Remote Desktop Connection Manager is the best option as it’s a product of Microsoft itself and it’s free.
    Remote Desktop Connection Manager 2.2 Clear Text Gateway Passwords?
    Hope it helps!
    Thanks.

  • How to you prevent disabling remote login via managed preferences?

    this doesn't seem to be an obvious setting.
    i want to disable our users from disabling remote login on their machines. some of them know how to do this.
    everyone has moblie home accounts, btw.
    hope someone can help!
    thanks in advance.

    thanks for your response, Tony.
    your 2nd suggestion is more towards what i am looking to do.
    we have WGM with User, Computer, Groups, and Computer Groups. right now, we aren't managing any preferences and we do make the users local admins on their machines after their first login/Home Sync.
    i was hoping to add a manifest to WGM in Preferences/Details, but i am not sure if this is possible and if it is, i don't know how to do it.
    we have users in remote sites that connect to our network via vpn and sometimes i need to remotely access their machines. but i can't on those that turn it off, obviously.
    thanks again!

  • HP Protect Tools Security Manager and Windows 7

    I need assistances for my HP ProBook 4440s. There is no HP Protect tools security manager in installed in the system.I also want to install  figer print security system.Kindly assist where necessary,
    Thanks,
    k.dineysh

    You need to contact HP Technical Support since the fingerprint reader is part of their hardware configuration and HP would be the source for support of the fingerprint reader.
    The HP Support website is found @
    http://www8.hp.com/us/en/contact-hp/contact.html
    There is also an HP Consumer Support forum @
    http://h30434.www3.hp.com/psg/
    There is even a dedicated thread for your problem found @
    http://h30434.www3.hp.com/t5/Other-Notebook-PC-Questions/HP-Probook-4530s-fingerprint-reader-not-working/m-p/1372895#M40259
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • SCCM 2007 Remote Tools Problem

    Hi All,
    I have SCCM 2007 R3 running on Server 2008 R2.  Client is Windows XP SP3 x32.  Here's the problem:
    When trying to connect to the client via remote tools I'm getting "The remote computer is either locked, or there is no user currently logged on. Configuration Manager remote control requires an interactive user to be logged on to the computer and for the
    session to be unlocked. Use Remote Desktop Connection client to control this computer, or click Cancel to terminate the connection." 
    There IS a user logged in locally and the system is NOT locked.  When I look in the RemoteControl.log I see error "Failed to activate launcher object (0x8000401a)    RemoteControl    6/1/2012 11:12:28 AM    624
    (0x0270)"
    I've tried uninstalling/reinstalling the client, uninstall then WMI repair then reinstall, checking/resetting/changing DCOM permissions on the client, none of which worked.  All other aspects seem to be working fine (Run Advertised Programs works fine
    as does any reporting tools).
    I'm trying to avoid re-imaging this system so as to not trouble the user however I'm not sure what to try next.  Any suggestions?

    Can you test WMI?
    http://blogs.technet.com/b/askperf/archive/2007/06/22/basic-wmi-testing.aspx
    http://www.microsoft.com/en-us/download/details.aspx?id=7684
    Nicholas Jones, MCITP® | Core Infrastructure Consultant | Sparkhound | https://www.mcpvirtualbusinesscard.com/VBCServer/nicholas.jones/profile

  • Remote Desktop Connection Manager can only open 6 sessions at a time on Server 2012

    I am only able to open, and view thumbnails, for a maximum of 6 RDP sessions on my Server 2012 box at a time in Remote Desktop Connection Manager (RDCM). If I add more sessions I just get a variety of connection errors for the additional sessions. If I activate
    a 7th session one of the existing 6 sessions goes off-line with a connection error message. Sometimes the error says 3334, sometimes the error says 0x8345000E, and sometimes it just says there is a connection error.
    I have checked Group Policy on the server to ensure I don't have any settings restricting the number of RDP sessions.
    In fact, I will often have 30 or 40 RDP simultaneous sessions opened, I am just not able to view them all in RDCM. I have seen reviews of RDCM with screenshots showing dozens of thumbnails so it seems to be something that's possible to do.
    Are there any settings I should make on the server to allow RDCM to connect to more than 6 simultaneous RDP sessions?
    Just to be clear, all these RDP sessions are running on the same server. Also, I am just using the trial license for Server 2012 and Remote Desktop Services right now. I don't think that should have an impact, but I wanted to be thorough.

    Thanks Jakub for "corflags" info.
    Unfortunatelly it doesn't work because running mRemoteNG.exe process in 64bit can't load MSTSC ActiveX component (referenced assemblies) because original files were assembled from 32bit dll [mstscax.dll]?
    Error message when making RDP connection:
    Could not load file or assembly 'Interop.MSTSCLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. An attempt was made to load a program with an incorrect format.
    I was able to create new AxInterop.MSTSCLib.dll and Interop.MSTSCLib.dll assemblies from 64bit dll version and now it works with "AnyCPU":-)
    http://www.filedropper.com/axinteropmstsclib-mremoteng
    Using AxImp.exe and TlbImp.exe didn't worked for me because it creates assemblies in wrong namespace "MSTSCLib" instead of "Interop.MSTSCLib" (AxImp.exe) and TlbImp.exe for changing namespace generated many "marshaled errors"
    so final .dll wasn't working.
    Adding MSTSCAX.dll reference in Visual Studio directly created correct and functional assemblies. Who don't know how to create 64bit compatible assemblies or don't have Visual Studio, feel free to check linked file.
    Hope it helps
    P.S. Sorry for possible technical misinterpretation, I am not programmer so creating new assemblies was trial-error process...

  • My family put multiple devices on the icloud, and I need to know how to manage duplicate entries.  Specifically contacts.  If I fix the contact list on my pc will it push the info out to the other devices and maintain it correctly?

    My family put multiple devices on the icloud, and I need to know how to manage duplicate entries.  Specifically contacts.  If I fix the contact list on my pc will it push the info out to the other devices and maintain it correctly?

    All devices signed into the same iCloud account will finish up with the same contacts. Of course if prior to joining iCloud two family members each had an entry for Uncle Fred, then you will finish up with two contact cards for Uncle Fred, and so on. If you tidy this up on your computer then the changes will propagate to everyone else.

Maybe you are looking for