Logging into a remote server Windows prepopulated my domain name and I don't want it to.

I am logging into a web server using an old and no longer supported Microsoft software but when I do this the username is automatically populated with ALASTAIR-PC/Administrator. When I select another account the domain still shows ALASTAIR-PC. It's that
domain that is preventing me logging into the server.  I also tried to enter the IP address of the server but again it's still showning the domain name.
Hence... how can I stop the ALASTAIR-PC showning?  
Or
Is there a way for the web server recognising my domain and thus letting me sign in?

Hi,
You can type"\" before User name, it would clear the default domain login. If I misundertand your meaning, please feel free let us know.
Roger Lu
TechNet Community Support

Similar Messages

  • Can I use ASUS VM60-G072R Desktop (like mini Mac) with my iMac all in one computer? I need to use Windows version of QB and I don't want to buy a PC tower or laptop.

    I need to use the Windows version of Quickbooks Pro and I don't want to use Parallel or buy a PC tower or laptop. Can I use ASUS VM60-G072R Desktop (like Apple Mini) with my iMac all-in-one computer?

    Thank you Kappy. I guess I have to decide to purchase a separate monitor and keyboard for this mini PC computer then. And also find extra space in my office. I'm happy you answered my question so quickly.

  • I can't log into icloud from my Windows 8 PC, but I can from my Windows XP PC

    I had my old Vista PC upgraded to Windows 8.  I just tried to log into www.icloud.com, but after entering my username and my password nothing happens.  No errors, nor messages.  Fortunately, I can remotely log into my work PC which is a Windows XP.  Logging in is no problem at all for my XP.  I get in and do what I need to do.  This would seem to eliminate a server issue.
    Is the icloud website not available for Windows 8?
    Thank you!

    Have you tried in another Browser ?

  • Trying to log into a RDS server using cached credentials

    I have a Windows Server 2012 R2 with Remote Desktop Services installed and it is a member server in my domain.   As a test,  I have cut the network connection between the RDS server and the domain controller.   I can log into the
    RDS server at the console with my cached domain account,  but I can't RDP into the server with my cached domain accout.   It is telling me the specified domain either does not exist or could not be contacted.   Does RDS sessions not
    use cached credentials ?    I have set the Group Policy Option: Interactive logon: Number of previous logons to cache (in case domain controller is not available) to 30.   That didn't seem to make any difference.  Thanks for any
    help with this problem.

    Hi,
    By default Network Level Authentication (NLA) will be used for RDP connections, and this requires the domain controller to be available.  If you needed to you could disable the requirement to use NLA in the collection properties and set a custom rdp
    property so that clients would not attempt to use NLA when they connect.  The downside of this approach is clients will never use NLA when connecting and instead will see a server-side log on screen, and may get multiple prompts for credentials.
    It is preferred to use NLA where possible, which in most cases it is since modern clients support it.
    -TP

  • HELP!! When logging into a remote machine I only get ASCII chracters

    Hello,
    When my program logs into the telnet server....ASCII characters
    continuiosly scroll across my screen continiously. What I should be seeing is C:\.Instead I am seeing a continious stream of ASCII characters.Any sugesstions? (Please see the code below)
    Thanks,
    MM
    public class RemoteConnection
    /* Constructor */
    public RemoteConnection(String Host, int TelnetPort)
         try
         {       /* Create a new Socket and call the pipe streams */
              /* This does not output data to the window */
    socket = new Socket(Host, TelnetPort);
    /* This works...I can create a terminal emulator*/
              //socket = new Socket("time.gov", 13);
    new InputPipe(socket.getOutputStream()).start();
              new OutputPipe(socket).start();
         catch(IOException e)
         txtTelnetWindow.setText("");
    txtTelnetWindow.setText("Error Could not connect to host: "+Host);
              return;
    }/* end Constructor */
    * Inner class (to Remote Connection ) which
    * handles the input stream pipe
    public class InputPipe extends Thread
    /* Create objects of type DataInputStream and PrintStream */
    //DataInputStream is;
         PrintStream os;
    BufferedReader BR_is;
    String TheTxt;
    public InputPipe(OutputStream os)
         /* Creates a Input Stream Reader that uses an underlying buffered reader */
    this.BR_is = new BufferedReader(new InputStreamReader(System.in));
         this.os = new PrintStream(os);
    public void run()
    String line;
         try
              while(true)
    line = BR_is.readLine();
    // TheTxt = txtTelnetWindow.getText();
    //txtTelnetWindow.setText(line);
    /* Print one character at a time */
    os.println(line);
    /* Note: DOS only knows "\n", "\r" is Unix */
                   //Used "line seperator" instaed
    //os.print("\r\n");
              //os.print("\n");
    os.flush();
         catch(IOException e)
              throw new RuntimeException("Failed to read or print the line");
    }/* end class input pipe */
    * Inner class (to Remote Connection ) which
    * handles the output stream pipe
    public class OutputPipe extends Thread
         /* Create Stream Objects */
    InputStream in;
         OutputStream ot;
         PrintStream os;
    public OutputPipe(Socket socket)
         try
              this.ot = socket.getOutputStream();
              this.in = socket.getInputStream();
              this.os = new PrintStream(System.out);
         catch(Exception e)
              System.out.println("Oops3");
    public void run()
    /* Create a new String Buffer
    This was the whole formating issue /
    StringBuffer sb = new StringBuffer();
    /* Work on reading text from the counsol */
         int i;
    try
              while(true)
                   /* Reads the next byte of data from the input stream */
    i = in.read();     
    if (i == 255) /* Read in the IAC bytes. Start over after 255th byte*/
                        int i1 = in.read();     
                        int i2 = in.read();
                        Connect(i1,i2);     
                   else
    /* Prints out sun OS, username and login */
    sb.append(""+(char)i);
    //sb.append("\n");
    System.out.print((char)i);
    os.flush();
    txtTelnetWindow.setText(sb.toString());
    catch(Exception e)
         txtTelnetWindow.setText("");
    txtTelnetWindow.setText("You are no longer connected to the host");
    private void Connect(int i1, int i2)
         int i = i1;
         if (i == 253)/* 253 = "DO"*/
         {         /* Write characters to the print Stream */
              i = i2;
         if (i == 1) WriteBytes(i);/* Echo */
              else if (i == 24) WriteBytes(i);/*TTYPE */
              else if (i == 31) WriteBytes(i);/* NAWS */
              else if (i == 35) WriteBytes(i);
              else if (i == 36) WriteBytes(i);
              else if (i == 39) WriteBytes(i);
    private void WriteBytes(int i)
    {                String ReadTxt;
         try
         /* Write the bytes to the output stream from the host machine*/
    ot.write(255); /* IAC*/
              ot.write(252); /* WONT*/
              ot.write(i); /* DO */
         catch (Exception e)
              System.out.println("oops5");
    } /* End output Stream class */
    }/*End Class Remote Connection*/

    I have two suggestions. Firstly, use the [code] tag to format your post. Secondly, log the output to a file and post the first 10 or 20 lines.

  • Log on to remote server and start database -error while installing CI in HA

    Hello All,
    We are installing ECC 6.0 with High Availability using HP-UX. We have completed installation in ASCS and Database Instance. Now when were trying to install in Central Instance, we encountered an error at Start Instance which informed us to Log on to remote server and start database. However the database is already running in DB node.  Please find the log below.
    TRACE      2011-06-10 16:31:45.825 [syuxctask.cpp:1382]
               CSyTaskImpl::start(bool)
    A child process has been started. Pid = 25742
    INFO       2011-06-10 16:31:45.835
               CJSlibModule::writeInfo_impl()
    Output of /usr/sap/PE2/SYS/exe/run/startsap all DVEBMGS01 DBMCI001 is written to the logfile start_PE2_DVEBMGS01.log.
    WARNING    2011-06-10 16:31:46.345
               CJSlibModule::writeWarning_impl()
    Execution of the command "/usr/sap/PE2/SYS/exe/run/startsap all DVEBMGS01 DBMCI001" finished with return code 6. Output:
    Database PE2 must be started on remote server
    Log on to remote server and start database
    WARNING[E] 2011-06-10 16:31:46.355
               CJSlibModule::writeError_impl()
    CJS-20022  Could not start instance 'DVEBMGS01' of SAP system PE2.
    TRACE      2011-06-10 16:31:46.355 [iaxxejsbas.hpp:408]
               handleException<ESAPinstJSError>()
    Converting exception into JS Exception EJSException.
    TRACE      2011-06-10 16:31:46.355
    Function setMessageIdOfExceptionMessage: ind-rel.ind-os.ind-db.webas.startInstanceFailed
    WARNING[E] 2011-06-10 16:31:46.355
               CJSlibModule::writeError_impl()
    CJS-20022  Could not start instance 'DVEBMGS01' of SAP system PE2.
    TRACE      2011-06-10 16:31:46.355 [iaxxejsbas.hpp:483]
               EJS_Base::dispatchFunctionCall()
    JS Callback has thrown unknown exception. Rethrowing.
    TRACE      2011-06-10 16:31:46.405 [syuxctask.cpp:1382]
               CSyTaskImpl::start(bool)
    A child process has been started. Pid = 25793
    ERROR      2011-06-10 16:31:46.525 [sixxcstepexecute.cpp:950]
    FCO-00011  The step start with step key |NW_ABAP_CI|ind|ind|ind|ind|0|0|NW_CI_Instance|ind|ind|ind|ind|10|0|NW_CI_Instance_Start|ind|ind|ind|ind|2|0|start was executed with status ERROR .
    TRACE      2011-06-10 16:31:46.555 [iaxxgenimp.cpp:752]
                CGuiEngineImp::showMessageBox
    <html> <head> </head> <body> <p> An error occurred while processing option SAP ERP 6.0 EHP4 Ready - Support Release 1 > SAP Application Server ABAP > Oracle > High-Availability System > Central Instance . You can now: </p> <ul> <li> Choose <i>Retry</i> to repeat the current step. </li> <li> Choose <i>View Log</i> to get more information about the error. </li> <li> Stop the option and continue with it later. </li> </ul> <p> Log files are written to /tmp/sapinst_instdir/ERPEhP4/AS-ABAP/ORA/HA/CI. </p> </body></html>
    TRACE      2011-06-10 16:31:46.555 [iaxxgenimp.cpp:1255]
               CGuiEngineImp::acceptAnswerForBlockingRequest
    Waiting for an answer from GUI
    Kindly let us know how to rectify the error and prroceed further with the instalaltion.
    Thanks
    Rishi

    Dear Guys,
    we didnt change the date and time but i m very sure it is same trans.log file.
    for your kind information please note SID and Nodes details
    Sid (PE2)
    DB Node : DBMDB001
    CI Node :   DBMCI001
    also i am attaching starting part of the file.
    4 ETW000 R3trans version 6.14 (release 701 - 26.01.09 - 12:46:00).
    4 ETW000 unicode enabled version
    4 ETW000 ===============================================
    4 ETW000
    4 ETW000 date&time   : 07.11.2010 - 03:44:06
    4 ETW000 control file: <no ctrlfile>
    4 ETW000 R3trans was called as follows: R3trans -d
    4 ETW000  trace at level 2 opened for a given file pointer
    4 ETW000  [dev trc     ,00000]  Sun Nov  7 03:44:06 2010                             295  0.000295
    4 ETW000  [dev trc     ,00000]  db_con_init called                                    22  0.000317
    4 ETW000  [dev trc     ,00000]  create_con (con_name=R/3)                            116  0.000433
    4 ETW000  [dev trc     ,00000]  Loading DB library '/usr/sap/PC1/SYS/exe/run/dboraslib.so' ...
    4 ETW000                                                                              64  0.000497
    4 ETW000  [dev trc     ,00000]  load shared library (/usr/sap/PC1/SYS/exe/run/dboraslib.so), hdl 0
    4 ETW000                                                                           32161  0.032658
    4 ETW000  [dev trc     ,00000]  Library '/usr/sap/PC1/SYS/exe/run/dboraslib.so' loaded
    4 ETW000                                                                              39  0.032697
    4 ETW000  [dev trc     ,00000]  function DbSlExpFuns loaded from library
    /usr/sap/PC1/SYS/exe/run/dboraslib.so
    4 ETW000                                                                             111  0.032808
    4 ETW000  [dev trc     ,00000]  Version of '/usr/sap/PC1/SYS/exe/run/dboraslib.so' is "700.08",
    patchlevel (0.25)
    4 ETW000                                                                             265  0.033073
    4 ETW000  [dev trc     ,00000]  function dsql_db_init loaded from library
    /usr/sap/PC1/SYS/exe/run/dboraslib.so
    4 ETW000                                                                              41  0.033114
    4 ETW000  [dev trc     ,00000]  function dbdd_exp_funs loaded from library
    /usr/sap/PC1/SYS/exe/run/dboraslib.so
    4 ETW000                                                                              82  0.033196
    4 ETW000  [dev trc     ,00000]  New connection 0 created                              52  0.033248
    4 ETW000  [dev trc     ,00000]  0: name = R/3, con_id = -000000001 state = DISCONNECTED, perm = YES,
    reco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    4 ETW000                                                                              41  0.033289
    4 ETW000  [dev trc     ,00000]  db_con_connect (con_name=R/3)                         84  0.033373
    4 ETW000  [dev trc     ,00000]  find_con_by_name found the following connection for reuse:
    4 ETW000                                                                              31  0.033404
    4 ETW000  [dev trc     ,00000]  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES,
    reco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    4 ETW000                                                                              37  0.033441
    4 ETW000  [dev trc     ,00000]  Oracle Client Version: '10.2.0.4.0'                  601  0.034042
    4 ETW000  [dev trc     ,00000]  -->oci_initialize (con_hdl=0)                         25  0.034067
    4 ETW000  [dev trc     ,00000]  Client character set UTF16 -> UTF8                 35674  0.069741
    4 ETW000  [dev trc     ,00000]  Client NLS setting (OCINlsGetInfo): 'AMERICAN_AMERICA.UTF8'
    4 ETW000                                                                              57  0.069798
    4 ETW000  [dev trc     ,00000]  Logon as OPS$-user to get SAPSR3's password           55  0.069853
    4 ETW000  [dev trc     ,00000]  Connecting as /@PC1 on connection 0 (nls_hdl 0) ... (dbsl 700
    151208)
    4 ETW000                                                                              34  0.069887
    4 ETW000  [dev trc     ,00000]  Nls CharacterSet                 NationalCharSet              C     
    EnvHp      ErrHp ErrHpBatch
    4 ETW000                                                                              52  0.069939
    4 ETW000  [dev trc     ,00000]    0 UTF8                                                      0
    0x6000000001052910 0x600000000105a3c0 0x600000000106ab38
    4 ETW000                                                                              58  0.069997
    4 ETW000  [dev trc     ,00000]  Allocating service context handle for con_hdl=0       40  0.070037
    4 ETW000  [dev trc     ,00000]  Allocating server context handle                      27  0.070064
    4 ETW000  [dev trc     ,00000]  Attaching to DB Server PC1
    (con_hdl=0,svchp=0x600000000106aa68,srvhp=0x600000000106de78)
    4 ETW000                                                                              63  0.070127
    4 ETW000  [dev trc     ,00000]  Assigning server context 0x600000000106de78 to service context
    0x600000000106aa68
    4 ETW000                                                                           60612  0.130739
    4 ETW000  [dev trc     ,00000]  Allocating user session handle                        97  0.130836
    4 ETW000  [dev trc     ,00000]  Starting user session: OCISessionBegin(con_hdl=0,
    usr='/',svchp=0x600000000106aa68, srvhp=0x600000000106de78, usrhp=0x60000000010fc940)
    4 ETW000                                                                              64  0.130900
    4 ETW000  [dev trc     ,00000]  Assigning user session 0x60000000010fc940 to service context
    0x600000000106aa68
    4 ETW000                                                                            9302  0.140202
    4 ETW000  [dev trc     ,00000]  -->oci_prepare_stmt(con_hdl=0, len=53, stmth_p=0x6000000001077608)
    4 ETW000                                                                             198  0.140400
    4 ETW000  [dev trc     ,00000]         BEGIN DBMS_APPLICATION_INFO.SET_MODULE(:A0,:A1); END;        
    4 ETW000                                                                              38  0.140438
    4 ETW000  [dev trc     ,00000]  CbApplInfoGet() failed! Ignore, but uninstall callback to avoid more
    erroneous calls
    4 ETW000                                                                             291  0.140729
    4 ETW000  [dev trc     ,00000]  -->oci_prepare_stmt(con_hdl=0, len=54, stmth_p=0x6000000001078660)
    4 ETW000                                                                              33  0.140762
    4 ETW000  [dev trc     ,00000]         BEGIN DBMS_APPLICATION_INFO.SET_CLIENT_INFO(:A0); END;       
    4 ETW000                                                                              35  0.140797
    4 ETW000  [dev trc     ,00000]  -->oci_prepare_stmt(con_hdl=0, len=0, stmth_p=0x6000000001078660)
    4 ETW000                                                                             937  0.141734
    4 ETW000  [dev trc     ,00000]         SELECT SID FROM V$MYSTAT WHERE ROWNUM<2                                                                               
    4 ETW000                                                                              36  0.141770
    4 ETW000  [dev trc     ,00000]  Connected to session 297.                            639  0.142409
    4 ETW000  [dev trc     ,00000]  Now '/@PC1' is connected: con_hdl=0, nls_hdl=0, session_id=297.
    4 ETW000                                                                              38  0.142447
    4 ETW000  [dev trc     ,00000]  -->oci_prepare_stmt(con_hdl=0, len=0, stmth_p=0x6000000001078660)
    4 ETW000                                                                              37  0.142484
    4 ETW000  [dev trc     ,00000]         ALTER SESSION SET NLS_SORT = BINARY                                                                               
    4 ETW000                                                                              36  0.142520
    4 ETW000  [dev trc     ,00000]  -->oci_prepare_stmt(con_hdl=0, len=0, stmth_p=0x6000000001078660)
    4 ETW000                                                                             327  0.142847
    4 ETW000  [dev trc     ,00000]         SELECT USERID, PASSWD FROM SAPUSER WHERE USERID IN (:A0, :A1)
    4 ETW000                                                                              36  0.142883
    4 ETW000  [dev trc     ,00000]  Got SAPSR3's password from OPS$-user                 728  0.143611
    4 ETW000  [dev trc     ,00000]  Disconnecting from connection 0 ...                   38  0.143649
    4 ETW000  [dev trc     ,00000]  Rolling back transaction ...                          31  0.143680
    4 ETW000  [dev trc     ,00000]  Closing user session
    (con_hdl=0,svchp=0x600000000106aa68,usrhp=0x60000000010fc940)
    4 ETW000                                                                             210  0.143890
    4 ETW000  [dev trc     ,00000]  Now I'm disconnected from ORACLE                     721  0.144611
    4 ETW000  [dev trc     ,00000]  Connecting as SAPSR3/<pwd>@PC1 on connection 0 (nls_hdl 0) ... (dbsl
    700 151208)
    4 ETW000                                                                              40  0.144651
    4 ETW000  [dev trc     ,00000]  Nls CharacterSet                 NationalCharSet              C     
    EnvHp      ErrHp ErrHpBatch
    4 ETW000                                                                              37  0.144688
    4 ETW000  [dev trc     ,00000]    0 UTF8                                                      0
    0x6000000001052910 0x600000000105a3c0 0x600000000106ab38
    4 ETW000                                                                              37  0.144725
    4 ETW000  [dev trc     ,00000]  Assigning username to user session: con_hdl=0,
    usrhp=0x60000000010fc940
    4 ETW000                                                                              35  0.144760
    4 ETW000  [dev trc     ,00000]  Assigning password to user session: con_hdl=0,
    usrhp=0x60000000010fc940
    4 ETW000                                                                              40  0.144800
    4 ETW000  [dev trc     ,00000]  Starting user session: OCISessionBegin(con_hdl=0, usr=SAPSR3/<pwd>,
    svchp=0x600000000106aa68, srvhp=0x600000000106de78, usrhp=0x60000000010fc940)
    4 ETW000                                                                             337  0.145137
    4 ETW000  [dev trc     ,00000]  Assigning user session 0x60000000010fc940 to service context
    0x600000000106aa68
    4 ETW000                                                                            4085  0.149222
    4 ETW000  [dev trc     ,00000]  -->oci_prepare_stmt(con_hdl=0, len=54, stmth_p=0x6000000001077608)
    4 ETW000                                                                              63  0.149285
    4 ETW000  [dev trc     ,00000]         BEGIN DBMS_APPLICATION_INFO.SET_CLIENT_INFO(:A0); END;       
    4 ETW000                                                                              37  0.149322
    4 ETW000  [dev trc     ,00000]  -->oci_prepare_stmt(con_hdl=0, len=0, stmth_p=0x6000000001077608)
    4 ETW000                                                                             585  0.149907
    4 ETW000  [dev trc     ,00000]         SELECT SID FROM V$MYSTAT WHERE ROWNUM<2                                                                               
    4 ETW000                                                                              36  0.149943
    4 ETW000  [dev trc     ,00000]  Connected to session 297.                            350  0.150293
    4 ETW000  [dev trc     ,00000]  Now 'SAPSR3/<pwd>@PC1' is connected: con_hdl=0, nls_hdl=0,
    session_id=297.
    4 ETW000                                                                              38  0.150331
    4 ETW000  [dev trc     ,00000]  -->oci_prepare_stmt(con_hdl=0, len=0, stmth_p=0x6000000001077608)
    4 ETW000                                                                              38  0.150369
    4 ETW000  [dev trc     ,00000]         ALTER SESSION SET NLS_SORT = BINARY                                                                               
    4 ETW000                                                                              34  0.150403
    4 ETW000  [dev trc     ,00000]  -->oci_prepare_stmt(con_hdl=0, len=0, stmth_p=0x6000000001077608)
    4 ETW000                                                                             294  0.150697
    4 ETW000  [dev trc     ,00000]         SELECT VALUE FROM V$NLS_PARAMETERS WHERE PARAMETER IN
    ('NLS_LANGUAGE', 'NLS_TERRITORY', 'NLS_CHARACTERSET') ORDER BY PARAM
    4 ETW000                                                                              66  0.150763
    4 ETW000  [dev trc     ,00000]         ETER                                                                               
    4 ETW000                                                                              34  0.150797
    4 ETW000  [dev trc     ,00000]  Database NLS settings: AMERICAN_AMERICA.UTF8         329  0.151126
    4 ETW000  [dev trc     ,00000]  -->oci_prepare_stmt(con_hdl=0, len=0, stmth_p=0x6000000001077608)
    4 ETW000                                                                             856  0.151982
    4 ETW000  [dev trc     ,00000]         SELECT UPPER(INSTANCE_NAME),HOST_NAME,VERSION,TO_CHAR
    (STARTUP_TIME,'MON DD, YYYY, HH24:MI:SS') FROM V$INSTANCE           
    4 ETW000                                                                              36  0.152018
    4 ETW000  [dev trc     ,00000]  DB instance PC1 is running on scmdb001 with ORACLE version
    10.2.0.4.0 since NOV 07, 2010, 03:23:10
    4 ETW000                                                                             349  0.152367
    4 ETW000  [dev trc     ,00000]  -->oci_prepare_stmt(con_hdl=0, len=0, stmth_p=0x6000000001077608)
    4 ETW000                                                                              38  0.152405
    4 ETW000  [dev trc     ,00000]         SELECT SUBSTR(NAME,1,3), TO_CHAR(CREATED,'YYYYMMDDHHMMSS')
    FROM V$DATABASE

  • Logging into a specific server in a terminal server farm

    We have several terminal server farms and in each farm we have the need for 1 user to always log into a specific server in the farm.   This is due to a little piece of sortware that is required for a device that only this one user has and
    the fact the it is licensed to only one server.   The user must use that server for it to work.  I want to include this server in the farm because it seems silly to have a server for only one user.    How can I point one PC/user
    to the same server in the farm all the time?  We are using the Connection Broker and NLB which seems to work just fine for all other users. 
    Thanks

    Hi Steve,
    What operating system version are you running on your servers?  Server 2008 R2?  Server 2012?
    When you configure a RDS farm to be load-balanced by the connection broker, all servers in the unique farm are intended to have the exact same applications installed.  The idea is the RDCB can redirect users to different servers as needed to balance
    the load, and that you may take any particular server (or servers, if you have enough) offline and your farm will still work.
    Now, there are always exceptions and I understand it would be nice if you could assign a user/app to a specific server to handle a case like yours.  For example, you would understand this particular user or app would not be load-balanced or highly
    available and if the one server was down it would not work, but other users/RemoteApps would be load-balanced as usual.  This is
    not a feature of the current versions of RDS.
    To do what you want the "best way" would require writing a custom plugin for RDCB.  In your custom plugin you would specifiy the load-balancing logic.  For example, when one of the "special" users logs on, your logic would direct them to the
    correct specific server, but when a regular user logs on you would allow the normal RDCB load-balancing logic to apply.  Please see here for more information:
    Terminal Services Session Broker Plug-in reference
    http://msdn.microsoft.com/en-us/library/windows/desktop/cc644962(v=vs.85).aspx
    Besides writing a custom plugin I suggest you consider the following workarounds:
    1. Instead of running the app under RDSH, run it in a Win7/Win8 VM pool if possible.  Either a pool of identical VMs or assign each user that needs to run the app to a dedicated VM.  Downside of this is added complexity, licensing for VDI,
    and an increase in hardware resources required to run the VMs.
    2. Have the user connect to the server using /admin.  You can change the permissions so that a specific group may connect using a /admin connection, without them being administrators.  Downside of this is that some features
    of RDSH are not present when connected as an administrative RDP session, and only two Active admin sessions are permitted.
    3. If running Server 2008 R2 you could set the server so that it does not participate in load balancing and have the users that need to run this special app connect directly to the server's ip address instead of to the farm name.  Downside of this
    is that you will get more uneven load distribution, however, it may not be that bad if you are balancing your initial connections using NLB and you have all of your regular users connecting to the farm name as usual.
    4. Have a separate server in each farm (not joined to the farm) just for this one app.  If possible they could be VMs with not much resources dedicated to each.  I know this is what you did not want to do, but I mention it because an
    extra base Windows Server license, one for each farm, is likely less additional cost than licensing the special software on
    all servers.  If you can run the app in VMs then the additional hardware cost of doing it this way is reduced.
    -TP

  • How to get my apple computer to let me log into it remotely

    how do I get my apple computer to let me log into it remotely from another computer?

    First, you should be asking this question is the Mac OS X forum associated with the version of Mac OS X you are running (Leopard, Snow Leopard, Lion, Mountain Lion, Mavericks, Yosemite).  If you tell use the version of Mac OS X you are using, we can ask the moderators to move this post to that forum.
    Back-to-My-Mac is what you would use if both Macs are yours using the same Apple iCloud account.
    <https://www.apple.com/support/icloud/back-to-my-mac/>
    <Set up and use Back to My Mac - Apple Support>
    If you are trying to connect to someone else's Mac (a family member, or friend), then you can use iChat (older versions of Mac OS X) or Messages to initiate Screen Sharing.
    <Messages (Mavericks): Share your screen>
    You could also use TeamViewer.com which is very good at connecting to a remote Mac (or Windows, as it is cross-platform) across the internet and navigating through home routers.
    <http://TeamViewer.com>
    The next level of complexity would involve opening ports in the destination home router.  This is non-trivial, and hopefully one of the above 3 methods will do the job.  PortForward.com has documents providing step-by-step guides on how to setup port forwarding for a huge list of routers
    <http://portforward.com/>
    Again, hopefully, you do not need this level of complexity.  But if you do please let us know.

  • ICal could not log into the caldav server

    Hi,
    I have a OS X Lion server that i am trying to set up for home. I have made an account for myself and have got mail running for it but when I go to turn on Calendars and Reminders, i get the error message iCal could not log into the caldav server "me.com". One I am not sure how this has anything to do with me but anyway, the mail compnent works. Also when i go to the folder webdav via browser servername/webdav/ i get permission denied. I also get and Unathorized message when I try to specifically access the calendar via adress https://servername:8443/calendars/users/username/ I mention the permission denied stuff because i am assuming they are all connected to the Calendar service (ie it runs on caldav which runs on webdav). can anyone help with this as I would like to get this working.

    One possiblity is that the user you created has not been granted access to the calendar service.  How did you create the user on the server, via Server.app?
    Are you able to browse to https://servername:8443/principals/users/username/    (of course substituting the appropriate server and user names)

  • Safari for Windows will not log into IIS sites with Windows Authentication

    Safari for Windows will not log into IIS sites with Windows Authentication enabled. The IIS log has thousands of login attempts from Safari that result in 401 errors.
    I disable Windows Authentication on IIS and it works fine. The problem with that is that my Windows clients stop working properly with seemless logins when I disable this.
    The expected behavior is that Safari will work with basic authentication when NTLM does not work. That would result in a password prompt followed by a successful login instead of Safari stopping at "Loading" while hammering the IIS logs.
    It does this on all machines that I have tried.
    Any ideas or is this a bug?

    I noticed that as well. I have to wonder if it's due to not making note of the the different end of line characters between Mac OS X and Windows in code.

  • Can't log into Adobe Story on windows 7 after installing flash player10. no problems w/win98 @work.

    Can't log into Adobe Story on windows 7 after installing flash player10. no problems w/win98 @work.

    I downloaded Adobe air and the desktop app for story and can get online from that. Thanks anyway. T

  • Lion Ichat client issues with logging into SL Ichat server

    We run the iChat server on our OD master running 10.6.8. We have about 250 users and it's working great for everyone on Leopard or SL (the majority of our users).
    We just started upgrading people to Lion, as well as getting some new lion machines.  The people who are on Lion Pre-Configured machines seem ok, but the people who we upgrade are having issues with logging into it.  Sometimes it will work just fine, and other times they just can't log in.  They get the ~ symbol by their status and can't connect to the server. 
    The only fix seems to be trashing their prefs AND rebooting, just trashing them or just rebooting don't seem to be enough to fix this. Anyone seen or have a better fix for this? It has happened more than once for the same user.

    Same problem here [https://discussions.apple.com/message/23114338#23114338].
    Were you ever able to troubleshoot or fix this? File a bug report?

  • How to configure the mac mini to allow the clients to access both partitions...the client will only see the one we are logged into at the server???

    if possible??? how do we configure the mac mini to allow the clients to access both partitions...the client will only see the one we are logged into at the server???

    You have to explicitly share directories on external/secondary volumes.
    Use the Server admin app to configure file sharing, and select which directory/directories on the second drive you want to share, then they'll be available to clients.

  • How To Redirect to a site after logging into the R3 server?

    I want to be able to do something like the following:
    www.sapr3servername.doimain.com?redirect=www.xyz.com
    So the users will be prompted to log into the SAPr3 server, than after the server has authenticated the user, i want the login page to redirect to a URL of my choosing.
    How can I do this?  What is the keyword for the parameter in the R3 server ?
    Flow
    - users will hit www.xyz.com
    - If user is not authenticated, xyz.com will direct them to the URL in an iframe: www.sapr3servername.doimain.com?redirect=www.xyz.com
    - The user will sign into www.sapr3servername.domain.com with their SAP crednetials
    - after the sign on is completed, the R3 server will redirect them back to xyz.com, where they will now be authenticated

    BUMP
    Is this not possible or what?

  • I just got a new iphone 4 for att and my friend installed the sim card in it for me. the imessage function isnt connecting with the my cell number. a while back i had logged into my apple account on someone elses cell phone and their number keeps showing.

    i just got a new iphone 4 for att and my friend installed the sim card in it for me. the imessage function isnt connecting with the my cell number. a while back i had logged into my apple account on someone elses cell phone and their number keeps showing. when i try to just select my number to send and recieve imessages from it will not show up. i can send and recieve regular text but not pictures or imessage. i have tried logging off and restarting and nothing has worked.help please!!

    Did you remove your account information from the other person's iPhone?

Maybe you are looking for

  • Can you use screen sharing outside of your local network?

    I've been poking around with the "screen sharing" in osx Lion. I have a few questions about it. Firstly, is the built-in screen sharing only accessible through the finder? Also, is it only available on local networks? I've gotten it to work on two co

  • ITunes 10.1.1 Windows 7 taskbar icon issue

    Since I updated to 10.1.1 (from 10.1) iTunes appears two times in the taskbar. I already tried deleting all shortcuts, opened iTunes and pinned the icon to the task bar. then a second icon appears - not active. if i close iTunes, the 2nd stays. if th

  • Windows 7 Install Issues with Mac Pro

    I have Mac Pro with Windows XP SP3 installed with Boot Camp on a separate, dedicated 250GB HD. I purchased an upgrade version of Windows 7 Home Premium. I hoped to install the 64-bit version. I upgraded, per Boot Camp I&S Guide, Boot Camp to version

  • DataSource in BPM Studio

    Hi, Help please, how to use the DataSource in PBL (or BPM Studio) when deploying the application, use the DataSource configured in the WebLogic to connect to the database. In BPM Studio, I have set up an external resource to connect to the database,

  • Black video thumbnails in iPhoto (Mavericks)

    Hello everyone. I have Mavericks on a late 2012 Macbook Pro running iPhoto 9.5.1. I recently noticed that rough a third of my videos were displaying thumbnails that are just black.  I freaked for a second, thinking the movie files were gone or someth