10.3.1 remote using name

Hi Guys,
Since we have updated our primaries to 10.3.1, we are unable to remote control any client running 10.3.1 by device name. If we choose the machine IP address from the drop down instead of the name, we can remote control the device just fine. Machines running older clients are unaffected, it is only machines running the newer clients.
I should add I can resolve the IP address of the device from the name on my PC without any problems, and I guess the server must be able to as well if its giving me the ip address in the drop down.
All the clients i'm trying it on are XP
Anyone else having the same issue? Its not the end of the world, just a bit weird.
Thanks
Dave

Hi,
You can try disable at ZCC - Configuration -Remote Management ==> Look up viewer DNS name at the start of remote session

Similar Messages

  • Remote LAN Name Resolution on VPN not working after upgrading to iOS8

    Has anyone come across the problem since upgrading to iOS8 where remote LAN name resolution does not work when connected to the remote LAN with VPN.  Everything worked fine on iOS7 and continues to work okay on devices that have not been upgraded.
    If I'm connected with WiFi on the local network, I am able to resolve the FQDN to a local IP address.  The problem arises when I'm away from the office, on either LTE or another WiFi and I start a VPN connection to the office.  The VPN connects without any problems.  If I try to connect to a desktop with the FQDN it never connects.  I will work if I connect with the IP address.  If I try to do an nslookup of the FQDN, I don't get a response.  I am however able to get a response when performing an nslookup for google.com.
    The VPN we are using is PPTP to a Windows network.

    Has anyone come across the problem since upgrading to iOS8 where remote LAN name resolution does not work when connected to the remote LAN with VPN.  Everything worked fine on iOS7 and continues to work okay on devices that have not been upgraded.
    If I'm connected with WiFi on the local network, I am able to resolve the FQDN to a local IP address.  The problem arises when I'm away from the office, on either LTE or another WiFi and I start a VPN connection to the office.  The VPN connects without any problems.  If I try to connect to a desktop with the FQDN it never connects.  I will work if I connect with the IP address.  If I try to do an nslookup of the FQDN, I don't get a response.  I am however able to get a response when performing an nslookup for google.com.
    The VPN we are using is PPTP to a Windows network.

  • Add Timestamp to Remote File Name in Output Tab

    Hi,
    Is it possible to add a timestamp to the Remote File Name in the Destination part of the Output tab?
    E.g. If I have an FTP as the desgination, can I have a file name as dailyReport20130227.pdf, where the date part is generated dynamically on every run?
    Thanks and Regards
    JB

    For everyone's reference, this is possible using the below delimiters.
    http://docs.oracle.com/cd/E15586_01/bi.1111/e18861/T539768T541118.htm
    Expression     Description
    %y     Displays the year in four digits: Example: 2011
    %m     Displays the month in two digits: 01-12 (where 01 = January)
    %d     Displays the date in two digits: 01-31
    %H     Displays the hour in two digits based on 24-hour day: 00-24
    %M     Displays the minute in two digits: 00 - 59
    %S     Displays the number of seconds in two digits: 00 - 59
    %l     Displays milliseconds in three digits: 000 - 999
    In this case, we just need to set up the file name as "+dailyReport%y%m%d.pdf+"

  • LDAP Profile Source - "Remote Unique Name" oddity

    We have an Active Directory that I've set up to use as an Authentication Source, and it also retrieves a few properties from there - not a problem.
    We also have an LDAP directory which contains other attributes of users that I need to retrieve.
    I set everything up as I thought it should be, however it's querying the LDAP server with the wrong parameters!
    An example user I have is IUSER\803244205. ALUI is showing the Login Name as "IUSER\803244205", the Remote Unique Name as "137eb349-7579-4b15-9a68-b1bff296d933" and the Remote Authentication Name as "803244205@IUSER".
    When I look at the LDAP job, the error log is showing that it's trying to sync using the Remote Unique Name -
    Unable to attach to user 137eb349-7579-4b15-9a68-b1bff296d933, user not found
    My LDAP directory only holds (and is keyed on) the numeric portion of the login name (known as EIN to us) - 803244205. I have got this EIN as a property of the user (a seperate Property that I have mapped to the User object), which is held as a seperate attribute on the Active Directory.
    So how do I tell the sync job to use the EIN (which happens to be the "User Name Attribute" on the Authentication Source - samAccountName), rather than trying to use the "Remote Unique Name", which it appears to have generated for itself!
    Cheers

    Arrgh! Just found the option for myself, seconds after posting this! Cheers anyway.

  • Get Remote Machine Name and SerialNumber

    Hi -
    Looking to get remote machines name and serial number using computer names in a text file. THis is what I have but it's not working. ANy suggestions? TIA
    $computers = Get-Content c:\GETSN\computerlist.txt
    $computers | foreach { Get-WmiObject -ComputerName computers -Class Win32_BIOS | Select -Property PSComputerName,SerialNumber}

    Are you sure that all of the machines are online and you can run remote WMI queries against them?
    This should try to take some of that error handling into account:
    Get-Content .\computerList.txt | ForEach {
    $props = @{
    ComputerName = $_
    SerialNumber = ''
    Status = 'OFFLINE'
    If (Test-Connection -ComputerName $_ -Count 1 -Quiet) {
    $props.Status = 'Online'
    try {
    $bios = Get-WmiObject Win32_BIOS -ComputerName $_ -ErrorAction Stop
    $props.SerialNumber = $bios.SerialNumber
    } catch {
    $props.SerialNumber = 'ERROR retrieving value'
    New-Object PsObject -Property $props
    } | Select ComputerName,SerialNumber,Status | Sort ComputerName
    Don't retire TechNet! -
    (Don't give up yet - 12,950+ strong and growing)

  • Running a non mandatory program from remote using powershell without a logged in user

    Hi all,
    is there a way to execute a non mandatory program (a task sequence in my case) from remote using powershell
    without a logged in user on the target system?
    I have the following code: 
    $ProgramObject = Get-WmiObject -Class CCM_Program -Namespace "root\ccm\clientsdk" -ComputerName $ComputerItem | Where-Object { $_.Name -match "$ProgramName" }
    Invoke-WmiMethod -class CCM_ProgramsManager -Namespace "root\ccm\clientsdk" -Name ExecutePrograms -argumentlist $ProgramObject -ComputerName $ComputerItem | Out-Null
    Works like charm, but only with a user logged in on the target system what is not a good solution for me. 
    I saw some other ways on the internet but these only work when the program is mandatory.
    Is there a way to archive what I need ? 
    thanks 

    Hi,
    If you deploy the program as a available deployment, there need a user to run the program. Otherwise, the program will never run. This is contradicted with your requirement(run the program at log off).
    So I concur with Peter.
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • COM+ Application Update Activation Remote Server Name

    Hello all
    We have a 3rd party application during installation it asks for a server name then it creates a COM+ application that registers the server name in the Activation tab for Remote Server Name.
    I've found the Remote Server Name in the registry to change however that doesn't change the value in the Activation tab for the COM+ application. My question is: Is there a way to change the value in the Remote Server Name without having to manually
    change it on each computer? I can't find any other keys in the Registry to change the Remote Server Name.

    Hi Jack,
    Unfortunately since Group policy object or Group policy group policy preferences won’t affect 3rd party application configurations, I am afraid that If we cannot find relevant Registry entry, there might be no way to get that goal by using
    building feature in Windows. Since we are not expert about this application, I’d suggest contact with this app vendor/developer check if there is any .conf file for deploy, there you might get more effective suggestion by experts who familiar with
    practice on this.
    Also you could try to change the value from application interface, and at the same time using process monitor to check that if any registry value modification occurs.
    For more information about process monitor
    https://technet.microsoft.com/en-us/library/bb896645.aspx
    Best Regards,
    D. Wu
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • My DVR security sofware that I access remotely uses a "dvr .ocx" file....when I try it in Firefox , either the latest non beta (3.6.1.5) or the new beta version (4.0 rc) it will NOT work as it says the plugin is missing... it works in IE 8,but not IE9...

    My machine is Top of the range (my Company builds them so it had better be :) )
    Amd 1100t , 8gb ram , Windows 7 64 bit etc, etc...
    The is not a hardware problem , but a software problem with FF...Any help would be appreciated as I hate using IE 8 for anything at all :( but I have to keep it on my machines just to run my remote security cameras at my Computer shop ???
    Original question...as question length is limited ...not very bright that limit by the way :(
    "My DVR security sofware that I access remotely uses a "dvr .ocx" file....when I try it in Firefox , either the latest non beta (3.6.1.5) or the new beta version (4.0 rc) it will NOT work as it says the plugin is missing... it works in IE 8 (unfortunately) but not IE9...
    As I own a Computer company I am fairly computer literate but cannot find a plugin that allows this to work in Firefox.... but I would have expected it to work in the new Firefox :(
    All the best, Brett :)

    The longer this thread continues, the more ancillary comments you throw in that aren't directly pertinent to your problem with your DVR software not working with Firefox 4.0. Sorry, I don't intend to continue with this discussion.
    I do agree that ''something'' needs to be done better with regards to plugins for Firefox, but I do disagree with you as to whose responsibility that ''something'' is.

  • Application crashes when using @NAME

    We have an outline with dimensionsPlanversion ... 2002_12 2003_01 2003_02 2003_03 ...Jahr 2001 2002 2003I want to use the following formula for a member in the accounts dimension "Kostenart":IF (@ISMBR(@LSIBLINGS(@MEMBER(@SUBSTRING(@NAME(@CURRMBR(Planversion)),0,4))))) 1;ELSE #missing;ENDIFThis formula validates on the server but if validated on the client a message pops up saying "This function must be a macro" and the outline cannot be saved.So I wrote a macro with maxL:MAXL> create or replace macro '@ISMBRLSIBLCURRMBR' (Single) AS 2> '@ISMBR(@LSIBLINGS(@MEMBER(@SUBSTRING(@NAME(@CURRMBR(@@1)),0,4))))' 3> spec '@ISMBRLSIBLCURRMBR(dimName)' 4> comment 'checks if current member is left sibling of a member deducted from a substring of the current member in another dimension';and I changed the member formula to:IF (@ISMBRLSIBLCURRMBR(Planversion)) 1;ELSE #missing;ENDIFWhen I try to start the application it immediately crashes with a Dr. Watson in esssvr.exe (Exception: access violation 0xc0000005, Address 0x0023110d). Essbase creates an exception error log.If I do not use the @Name function, the application starts properly. But there is a problem when compiling the member formula:"Error compiling formula for [ERLOESE_HR] (line 2): expected type [STRING] found [MEMBER] ([@ISMBRLSIBLCURRMBR]) in function [@ISMBRLSIBLCURRMBR]"IMO the remedy would be to use @Name. But this causes the application to crash! Is this a bug in the @Name function? Are there any other ways to achieve the desired functionality? Please help!Best Regards,GeraldPS The problem occurs with Essbase 6.22 and 6.24

    I have figured out that the application fails on its first call to the native methods.
    So I have this Bitmap class that contains all the native calls and it is defined shortly as follow:
    public class Bitmap {
    static {
    System.loadLibrary("BitmapImpl");
    native void setDebug(int debuglevel, int statistics);
    There are many more native methods defined in Bitmap, but I only show the setDebug method because that is the first one that is executed and also the one that immediately fails.
    My setDebug C function is defined as follow in BitmapImpl.c
    #include <time.h>
    #include <stdio.h>
    #include <limits.h>
    #include <fcntl.h>
    #include <jni.h>
    #include <math.h>
    #include <errno.h>
    #include "Bitmap.h"
    #include "data.h"
    jint debug = 0;
    jint statistics = 1;
    JNIEXPORT void JNICALL Java_Bitmap_setDebug
    (JNIEnv *jenv, jobject jo, jint d, jint s)
    debug = d;
    statistics = s;
    My libBitmapImpl.so file is compiled using the following Makefile and using GNU gcc:
    JAVAPATH=$(JAVAINCLUDEPATH)
    LMACRO=-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSOLARIS
    CSOURCE=BitmapImpl.c
    all:
    gcc -O3 -G $(LMACRO) -I$(JAVAPATH) -I$(JAVAPATH)/solaris \
    $(CSOURCE) -o libBitmapImpl.so
    It is still a total mystory why the application fails. I have tried it on a RedHat Linux machine and there it works fine. But not on Solaris. Only if I use the jdk1.1.8 but not a later one.
    Would really appreiciate some help!
    Best regards
    Lars

  • Problem accessing company resources remotely using Cisco VPN Client

    I connect to my company's network remotely using Cisco VPN client both from a PC (v 4.0.1) and from a MacBook Pro (v 4.9.00)(same configs), and use Remote Desktop to connect to my work computer, and now i'm able to use Citrix to run applications on the company server.
    The problem occurs on the Mac when I'm connecting from a location that uses the same private domain IP as our company's private domain. Our company's private domain is 192.168.1.x, so when I'm using the Mac on a WiFi router that happens to be set to 192.168.1.1, the Mac can connect using VPN but the remote desktop cannot connect to my work computer. Presumably, the Mac doesn't "know" that I'm trying to go through the VPN for the connection and not connect to something locally.
    This problem seems to be unique to the Mac. Every Windows machine with the same client installed has no problems no matter what WiFi I've tried. The Mac works fine on any WiFi that is not 192.168.1.x.
    However, since 192.168.1.x is very common (hotels, airports, etc., its a major problem with the Mac.
    Suggestions are greatly appreciated!
    Also, now that we're moving to Citrix, our administrator has created a webpage on the intranet that we launch applications from, but the Mac cannot find that page when connected to VPN from 192.168.1.x. Same problem.
    Thanks in advance.

    Hi,
    I presume you have split-tunneling activated.
    1. Make sure the 192.168.1.x is on the protected networks and on the MacBook client, disable "Allow local LAN access"
    2. Create a separate group for the Mac users and assgn them a different pool (192.168.100.x )and advertise it in your company to point to the VPN Concentrator.
    3. Use the NAT feature on your VPN concentrator.
    If this helped, please rate.
    Regards,
    Daniel

  • How to get Name 2 also when we search for a customer using 'Name' as search

    In XD03, when I am searching for Customer using ‘Name’ as Search term I am getting postal code, Name1, City, Customer no. I want Name2 also to be displayed. Can somebody please suggest.
    Thank you.

    hi,
        for this you will have to change the search term involved during the master data creation.
    now during the creation of customer master data , enter the name as the search term in the data base.
    if possible change the database of customers and insert the name in the search term.
    without it, it will be really difficult to locate the customers with the search term as their name
    regards,
    Siddharth.

  • What best way to turn on all computers remotely using sccm 2012 sp 1

    what best way to turn on all computers remotely using sccm  2012
    and what the difference  between wake on lan and out of band service point role

    Hey!!! I am a 1E engineer and MVP... we started the power management movement with our very first software product, created around 12 or so years ago, called 1E WakeUp. The complete solution which manages power on (integrated with SCCM, or stand alone if
    you are not an SCCM shop) and power off (under a tightly controlled process) is called
    NightWatchman
    Here is a
    recent blog post I authored that was the last in a series documenting the entire wake-up process including how it integrates with SCCM or stood up standalone. It contains links to those earlier posts that explain our entire technology, so you will likely
    want to read all of them in order for a full understanding of our technology. It works incredibly well, is the most mature solution in the industry, and is extremely simple to install with minimal resources.
    If you have any questions, feel free to reach out to me privately
    Ed Aldrich | 1E | Pre-Sales Solutions Engineer | ConfigManager MVP 2003-2012

  • Using name In spite of IP

    Hi Experts,
    Can anyone suggest me, if there have any way to use name In spite of IP in application server as the client user can use names in the url not IP .
    Thanks in advance

    the client user can use names in the url not IP . Of course that's possible, but the name has to be resolved in some way, for example by a DNS, or within the hosts file on the client.
    Anyway, this has nothing to do with Oracle...

  • Data Binding: Use name

    As per Adobe Help::
    Use name
    Enables data merging and saving options. Data values are merged and stored implicitly according to Adobe data-merging rules.
    Can anybody Explain with Example?

    Hi,
    We now use a webservice to submit the xml of the form (and any attachments).  At one point we did submit the PDF byte stream to the webservice but now we just render it again with the XML form data.
    This has the added advantage of allowing us to do some server side checks, things like is the application round still open, does the user have the correct roles, etc.
    It also allows us to return a reference number to the form, so the user gets confirmation that the form was received.
    Regards
    Bruce

  • How to do Finder Search using Name Contains in 10.8.2

    I just purchased a MacBook Pro with 10.8.2 installed.  I used Migration Assistant to move my account from my old MacBook Pro which was running 10.7.8. On my old MacBook, a search for a file in a finder window dropped down to let you select "name contains", so you could type in just a bit of the filename to find a file.  On my new MacBook, when I do the same thing, all I get is "name matches", which is much less useful.  How do I get back to being able to use "name contains" or maybe even other options like "name starts with"??

    As OS X Mountain Lion is registered to your Apple ID, you have to install the OS X version that came with your Mac or Mac OS X Snow Leopard, so he will be able to purchase Mountain Lion from the App Store.
    To do it, just follow these specs:
    1. Back up the data you need.
    2. Insert the Snow Leopard DVD and press C key while your Mac is starting to start from the disc.
    3. Go to Utilities menu > Disk Utility, select the hard disk at the top of the sidebar, go to Erase tab and erase the disc.
    4. Close Disk Utility and reinstall Mac OS X. When the installation has finished, press the mouse while your Mac is starting to eject the DVD, and turn off the Mac.
    You could also give him the Mac with Mountain Lion, but as he's using a different Apple ID, it's not legal and he could have problems if he needs to reinstall OS X, because the Mac won't allow him to reinstall it

Maybe you are looking for

  • Keyboard key not working

    Hi I left my mac over the weekend and not use it at all and I came back after the weekend to find that my 't' key isn't working. It works on my wireless keyboard so I am guessing its an error on the key but I have never know it happen to just a singl

  • Powershell : Checking DNS alias

    Hi, We have 2 servers, one production and one back-up. With a DNS alias everyone connects to the production server. When the backup server becomes operational we just need to change the DNS alias. Now, I need a script for checking this DNS alias valu

  • SCSM - Service Request Area list - modifications not showing for all users

    Hi All As you cant edit the Service Request Area list, i've settled on changing the default display names to better reflect the categories we want for our SR's. The changes i've made are visible in SCSM on my computer (where i made the changes from),

  • Customer Trial Components

    Hi My customer manufacturers Industrial Machinery and Components. As part of the business practice, he receives trial components from his customers. These trial components are not part of the valuation. On the same trial components he performs a test

  • Problems moving text from safari to numbers and pages

    Hi, I'm trying to copy some data from a website, for example, an address with multiple lines of text, and paste it into a cell in numbers, and from there into a cell in a table in pages. The trouble is that the original text is sometimes formatted on