OSX Server constantly drops Windows machines from domain

We have a 100 or so windows xp machines joined to the windows domain running on our Leopard server. Sometimes the xp machine cannot login to the domain. Says cannot connect to domain controller. This happens a LOT and happend in 10.4 and 10.5 server as well. Seems to be worse in 10.6.
The only way to fix the XP machine is to remove it from the domain, then readd it. This works until the next day when the server decides to forget about the machine again. All DNS and WINS entries are correct. The XP machine can connect to the domain controller and browse it by name and ip.
Does anyone now how to make the OSX server remember xp machines and quit doing this? It happens about 5 times a week so it's frustrating. If I join the XP machine to our real domain controller on a windows 2003 server it never loses it connection. Only when I join it to the PDC running on the mac server does it lose the domain abilities.
Lannie
PS Is there something under the hood I need to check, something misconfigured? Same symptoms on 10.4 through 10.6. Each version was a fresh build from scratch.

With Apple using domain technology from 10 years ago and not supporting Windows 7 I think I got my answer. Plus the fact you cannot buy a xserve now. Moving on to Windows boxes.

Similar Messages

  • Unable to change screen quality when accessing Window machine FROM my Mac

    Hi there,
    I've been playing around with a copy of Apple Remote Desktop 3.1 and I'm very happy with the results when connecting to a Mac Server from my MacBook. We have quite a slow line so I use the sceen adjuster on the top-right corner of the screen to make the remote screen black & white to speed up the connection. I have another server here which is Windows server running RealVNC. When I connect to that machine and try changing the screen quality to black & white, it does nothing Can anyone change the screen quality when connect to a Windows machine from a Mac running Remote Desktop? If so, could you tell me your setup please?
    Martin BG
    Life as an Apple Switcher - http://aurora7795.blogspot.com

    Go to System Preferences-->Display. Choose the biggest dimension there. The screen will turn blue and your display will change.

  • Unable to connect to Oracle database running on Windows machine from linux.

    Hi,
    I'm not able to connect to oracle database running on Windows machine from Linux machine. I'm geting the below mentioned error. I have given below the code I used to connect to database and database propertes.Do I need to use any specific driver?
    Please help me.
    Thanks,
    Sunjyoti
    Code :
    import oracle.jdbc.pool.OracleDataSource;
    import java.sql.Connection;
    import java.util.*;
    import java.sql.*;
    import java.io.*;
    class try2{
    public static void main(String args[]) {
    try {
              System.out.println("hi");
    // Load the properties file to get the connection information
    Properties prop = new Properties();
    prop.load(new FileInputStream("/home/sreejith/EDIReader/Connection.properties"));
    // Create a OracleDataSource instance
    OracleDataSource ods = new OracleDataSource();
    System.out.println("prop is "+prop);
    configureDataSource(ods, prop);
    Connection conn=null;
    // Create a connection object
    conn = ods.getConnection();
         System.out.println("Connection is"+conn);
    // Sets the auto-commit property for the connection to be false.
    conn.setAutoCommit(false);
    } catch (SQLException sqlEx){ // Handle SQL Errors
    System.out.println("In exception "+sqlEx);
    } catch(Exception excep) { // Handle other errors
    System.out.println(" Exception "+ excep.toString());
    private static void configureDataSource(OracleDataSource ods, Properties prop) {
    // Database Host Name
    ods.setServerName(prop.getProperty("HostName"));
    // Set the database SID
    ods.setDatabaseName(prop.getProperty("SID"));
    // Set database port
    ods.setPortNumber( new Integer( prop.getProperty("Port") ).intValue());
    // Set the driver type
    ods.setDriverType ("thin");
    // Sets the user name
    ods.setUser(prop.getProperty("UserName"));
    // Sets the password
    ods.setPassword(prop.getProperty("Password"));
    Connection properties :
    # Your Database Connection details
    HostName = 10.20.3.19
    SID = EDIREAD
    Port = 1521
    UserName = dbuser
    Password = dbuser
    Error I'm getting is
    error while trying to connect with odbc datasource
    [root@iflexpau2217 EDIReader]# java try2
    hi
    prop is {HostName=10.20.3.19, Password=dbuser, UserName=dbuser, SID=EDIREAD, Port=1521}
    In exception java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Also I tried to connect with weblogic JDBC driver
    Code is here:
    import java.io.BufferedReader;
    import java.io.ByteArrayInputStream;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.io.IOException;
    import java.sql.Blob;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    //import com.entrust.toolkit.util.ByteArray;
    public class trial{
         public static void main(String args[]) throws IOException{
              System.out.println("hi");
              Connection p_conn = null;
              PreparedStatement xml_insert = null;
              try {
         // Load the JDBC driver
                   System.out.println("hi2");
         // String driverName = "oracle.jdbc.driver.OracleDriver";
    String driverName = "weblogic.jdbc.oracle.OracleDriver";
         System.out.println("hi2");
         Class.forName(driverName);
         // Create a connection to the database
         String serverName = "10.20.3.19";
         String portNumber = "1521";
         String sid = "EDIREAD";
         //String url = "jdbc:oracle:thin:@" + serverName + ":" + portNumber + ":" + sid;
    String url = "jdbc:bea:oracle://10.20.3.19:1521";
         String username = "dbuser";
         String password = "dbuser";
    System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
         p_conn = DriverManager.getConnection(url, username, password);
         System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
              xml_insert=p_conn.prepareStatement("insert into PRTB_SUBUNIT (SUBUNT_ID,SUBUNT_SUB_UNIT,SUBUNT_PHYUNT_ID) values (?,?,?)");
              //InputStream in=null;
              File l_file=new File("/home/sreejith/EDIReader/propertyfiles/inputfile/BUG_10802_ES_CSB19_68.txt");
              BufferedReader input =null;
              input=new BufferedReader(new FileReader(l_file));
              String line = null;
              StringBuffer trial=new StringBuffer();
              while (( line = input.readLine()) != null){
                   trial.append(line);
                   trial.append(System.getProperty("line.separator"));
              //InputStream is = new BufferedInputStream(new FileInputStream(l_file));
              System.out.println(trial.toString());
              //Blob b ;
              //byte[] bytes=trial.toString().getBytes();
              //System.out.println("Size-->"+bytes.length);
              xml_insert.setString(1,new String("SpecailChar"));
              //xml_insert.setBinaryStream(2,new ByteArrayInputStream(bytes),15920);
              xml_insert.setString(3,"SpecailChar");
              xml_insert.executeUpdate();
              p_conn.commit();
              } catch (ClassNotFoundException e) {
                   System.out.println("ClassNotFoundException:"+e.getMessage());
              // Could not find the database driver
              } catch (SQLException e) {
                   System.out.println("SQEXCEPTIN:"+e.getMessage());
              // Could not connect to the database
              }catch (FileNotFoundException e) {
                   System.out.println("filenot found:"+e.getMessage());
              // Could not connect to the database
    Error I'm getting is
    error while trying with jdbc:
    SQEXCEPTIN:[BEA][Oracle JDBC Driver]Error establishing socket to host and port: 10.20.3.19:1521. Reason: Connection refused

    Is the Windows firewall active? Have you enabled the port on the firewall, if it is?

  • Java code to connect to remote windows machine from local machine

    Hi,
    I have developed a code to connecting remote windows M/C from local M/C by using SSH2 (ganymed-ssh2-build209.jar) API. when I run the code its giving below error. Can any one please help me how to resolve it. And also please let me know, is there any other way to connect remote windows system using java code.
    Exception.
    java.io.IOException: There was a problem while talking to <host name>:22
      at ch.ethz.ssh2.Connection.connect(Connection.java:642)
      at ch.ethz.ssh2.Connection.connect(Connection.java:460)
      at Connect.RemoteServer.ConnectWindowsServer.runCommand(ConnectWindowsServer.java:55)
      at Connect.RemoteServer.ConnectWindowsServer.main(ConnectWindowsServer.java:27)
    Caused by: java.net.ConnectException: Connection refused: connect
      at java.net.PlainSocketImpl.socketConnect(Native Method)
      at java.net.PlainSocketImpl.doConnect(Unknown Source)
      at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
      at java.net.PlainSocketImpl.connect(Unknown Source)
      at java.net.SocksSocketImpl.connect(Unknown Source)
      at java.net.Socket.connect(Unknown Source)
      at ch.ethz.ssh2.transport.TransportManager.initialize(TransportManager.java:299)
      at ch.ethz.ssh2.Connection.connect(Connection.java:591)
      ... 3 more
    JAVA Code
    import ch.ethz.ssh2.Connection;
    import ch.ethz.ssh2.Session;
    public void setAuthenticationInfo(String hostname, String username,String password) {
           this.host = hostname;
           this.userid = username;
           this.password = password;      
           this.recentCommand = "";     
           System.out.println("setting authentication info completed for host=" + host );
      public void runCommand() throws Exception {
    try{
            // Setup ssh session with endpoint
           System.out.println("starting connection with " + host);
           Connection connection = new Connection(host);
           System.out.println("connection object created..");
           connection.connect();
           System.out.println("Connect to connection");
           connection.authenticateWithPassword(userid,password);
           System.out.println(connection.isAuthenticationComplete());
           Session session = connection.openSession();
          System.out.println("connected");
      }catch (Exception e) {
      e.printStackTrace();
    Regards,
    Praveen

    Hi baftos,
    I tried to telnet remote windows machine from my local machine on port 23, its not connected and given error message like "Connect failed".
    As your response, if we can telnet to remote windows machine from local machine then we can connect from Java. Is it correct ?.
    Can you please help me to resolve this issue. And also please confirm the port (23) is correct, which I was used to connect remote machine from telnet.
    Regards,
    Praveen

  • Problem in reading the excel file path in WINDOWs machine from UNIX environ

    Hello friends,
    My requirement is to read each row of the excel sheet and sent that row to the database. I have implemented it by using jxl and apache poi framework. locally in my WINDOWS machine it is working fine..
    But when i deploy the code in UNIX machine. My application runs on a Unix server , trying to read the excel file in WINDOWS environment. I am not able to retrieve the file path. for ex : C:\Documents and Settings\sabbanik\My Documents\KARUNAKAR\excel.xls
    I am getting error in this line
    workbook = Workbook.getWorkbook(filepath)
    Error message : input file not found.
    Thanks in advance..

    You said: I am getting error in this line workbook = Workbook.getWorkbook(filepath) >
    Based on this, I will assume you are trying to use OLE to access information about the Excel file. As mentioned by Andreas, your code will be executing on the server (Unix) and since Excel isn't on the server (and cannot be) an error will result. OLE can only be used in Windows environments (client or server). To access client side OLE calls and content, you need a java bean and Excel installed on the client machine. Oracle provides WebUtil as an option to writing your own Java Bean. To use this, you will need to be running Forms 10.1.2 or newer. Details can be found here along with a demo:
    http://www.oracle.com/technetwork/developer-tools/forms/webutil-090641.htm

  • CUPS Printing Server Discoverable by Windows Machines

    I have a server running archlinux on it with a CUPS server. It's used to host a USB printer as a network printer. It can be easily printed to via Linux, Mac, and Windows machines if it is hand configured on each client using the available IP address. I would like to make the printer discoverable on windows machines, i.e: the client:
      1. opens control panel
      2. goes to "add a printer"
      3. selects "network printer"
      4. the printer on the archlinux printer server (via CUPS) displays to be setup on the client
    I've done a bit of research and I've found that Samba holds a solution but I know nothing about Samba and according to the Archwiki the default smb.conf file holds the proper configuration for printer sharing (although I'm still unsure if this method is required. Also to note the default smb.conf file does not solve my issue).

    ratcheer wrote:
    I think Avahi is what provides that on Arch.
    https://wiki.archlinux.org/index.php/Avahi
    Tim
    This looks promising thanks! Do you know how avahi need to be configured to make it work with CUPS? Also, is Samba required for the printer to broadcast with avahi?
    I've also found cups-browsed however it doesn't seem to work. Below is my /etc/cups/cups-browsed.conf if it will help any.
    BrowseRemoteProtocols DNSSD,CUPS
    BrowseLocalProtocols CUPS,DNSSD
    BrowseProtocols CUPS,DNSSD
    AutoShutdown avahi
    dejawu wrote:
    You can try the following. I'm not on a network with a server running CUPS so I'm not sure these steps are verbatim, but hopefully this puts you in the right direction:
    1. Go to your CUPS web interface. It should be on port 631. If this is not open or accessible, modify your CUPS config so that it is: http://hplipopensource.com/node/231
    2. Go to Printers
    3. Go to the page for the printer you want to remote-print to, and grab the URL of that printer's page.
    4. On your Windows machine, when it begins to scan for printers, choose "My printer was not displayed in this list."
    5. Choose the option to input a URL, and paste the URL of your printer.
    6. Select your driver. Run Windows update if needed.
    7. You should now be able to print to that printer over the network.
    This is what my current fix is (and it works quite well), thanks for the suggestion though! The server is hosted in a public-ish place and there are various end users who aren't computer savy. The issue is one of convenience as most end users don't know how to follow directions correctly and "IT support" (which is just myself) is very limited.
    I'm not concerned about security currently (I'll worry about that later).
    Thanks for the responses!

  • I can't connect to my Windows machine from my G4 Others Can

    Hi,
    I'm new here, I'm sure this has come up before, but I couldn't find a solution in the forum.
    I'm trying to connect a G4 running 10.3.8 to a Windows 7 PC unsuccessfully. However I can connect to it and share with both an Intell based PowerMac and a newer Power PC G5.
    The G4 sees the other computer on the network, but when I enter its username and password I get the message,
    "The alias named xxxxxxxxxxx could not be opened because the original item can not be found."
    Also, the error message on the console reads,
    "mount smbfs: unable to list resources: syserr=function not implimented
    I can however successfully ping it through the terminal.
    I've pretty much run out of ideas, so if anyone would be able to help I'd really appriciate it.
    Thank you,
    Eric

    Hmmm, link works here...
    Archived -  Mac OS X 10.4: Error -36 alert displays when connecting to a Windows server
    This article has been archived and is no longer updated by Apple.
    Symptoms
    Mac OS X 10.4: Error -36 alert displays when connecting to a Samba or Windows server
    After upgrading from Mac OS X 10.3.x to Mac OS X 10.4, you may get an error message when you try to connect to a Samba or Windows (SMB/CIFS) server. A Samba or Windows (SMB/CIFS) server includes servers operating on Microsoft Windows and other operating systems that use Samba for SMB/CIFS services.
    If the connection is unsuccessful, the following error message may appear:
    The Finder cannot complete the operation because some of the data in smb://........ could not be read or written. (Error code -36).
    If you check the Console (/Applications/Utilities/), you will also see this error message:
    mount_smbfs: session setup phase failed
    Resolution
    This error can occur if your Mac OS X 10.4 client is trying to connect to a Samba or Windows (SMB/CIFS) server that only supports plain text passwords. If you do not see the above message in the Console, you are not experiencing this issue and should try normal troubleshooting
    Unlike Mac OS X 10.3, the Mac OS X 10.4 SMB/CIFS client by default only supports encrypted passwords. Most modern Samba or Windows (SMB/CIFS) servers use encrypted passwords by default, while some Samba servers might have to be reconfigured.
    You should consider contacting the owner or system administrator of the Samba or Windows (SMB/CIFS) server to which you are trying to connect and encourage them to disable plain text passwords and start using encrypted ones. If the server cannot be reconfigured to support encrypted passwords, you can configure Mac OS X 10.4 SMB/CIFS client to send plain text passwords.
    Warning: If you configure your computer to allow connections to Samba or Windows (SMB/CIFS) servers using plain text passwords, when you attempt to make any connection to such a Samba or Windows (SMB/CIFS) server, your password will be sent "in the clear". This means that it is possible for someone who is monitoring your connection to see your password. This could lead to someone compromising the Samba or Windows (SMB/CIFS) server. We strongly recommend that you configure your Samba or Windows (SMB/CIFS) servers to exclusively use encrypted passwords.
    Follow the steps below to configure your computer to use plain text passwords to make SMB/CIFS connections when the specified Samba or Windows (SMB/CIFS) server does not support encrypted passwords. (You must be an administrator to do these steps.)
    Make sure that you are not currently connected to any Samba or Windows (SMB/CIFS) servers and that you do not have any Samba or Windows-related error messages open.
    Open the Terminal (/Applications/Utilities/).
    At the prompt, type: sudo pico /etc/nsmb.conf
    Press Return.
    Enter your password when prompted, then press Return again.
    You should see an empty file and a "New File" notice at the bottom of the pico window. If you do not see the "New File" notice, this file already exists.
    Enter the following into the file so that it appears as follows:
    [default]
    minauth=none
    Save the file (press Control-O), press Return, then exit pico (Control-X).
    Type: sudo chmod a+r /etc/nsmb.conf
    Press Return.
    Restart your computer.
    Important: Information about products not manufactured by Apple is provided for information purposes only and does not constitute Apple’s recommendation or endorsement. Please contact the vendor for additional information.
    Also, does the PC connect to that Mac if you enable Windoes Sharing on the Mac?

  • Can't open files Windows machine from on OS X 6.8

    I mapped a Windows 7 volume to my Mac.  I can see the files and folders.  However, when I try to open any file, like a plain text file, Mac reports that the file cannot be opened.  I use the same workgroup, username, and password on both machines.  I'm an Admin on the Windows box and have full control of the files.  Thanks for some help! 

    See if these are any help:
    http://support.apple.com/kb/PH10779
    OS X Mountain Lion: Set up a Windows computer to share files with Mac users
    http://support.apple.com/kb/PH10777
    OS X Mountain Lion: Set up a Mac to share files with Windows users
    Don't be concerned these articles refer to 10.8 -- the procedures have been the same for quite a while.

  • Installing OSX Server on a windows server.

    How can I install the OS X Server 10.5.4 on a HP Porliant DL380 G4 server?

    You can't. It isn't supported, nor allowed by the license agreement which explicitly limits installation to Apple-branded hardware only.

  • Accessing windows machine from mac on home network

    Having serious file sharing issues...any help would be welcomed...
    I have a hybrid wired / wireless home network with one powermac, one pc and several laptops.
    The laptops are all networked wirelessly through a time capsule (and no problem at all).
    The powermac is in the living room connected via a router to the wall socket which in turn is connected to a cisco router in the basement which in turn is connected to the att uverse network router.
    The pc is connected to an output of the time capsule.
    Both the powermac and pc both have perfect internet performance...
    But neither machine can see the other...
    I presume it's because they're both on different routers, but surely there must be a way to set up all the routers etc that they realize that they're on the same network and force them to be nice? I'm sure larger networks have this configuration all the time...
    If you can point me to some detailed guides how to do this or maybe an old posting...(I've already search a couple hours) I'd be grateful...

    You need to create a bridge between the two networks and then point the IP and DNS addresses created by the bridge to each of the client machines. In your case it is the PC and Mac. Once they have the same router address and their IP's are on the same network scanning "list", they will see each other. In order to make this work you need:
    A bridge hardware device (http://z.about.com/d/compnetworking/1/0/H/3/linksys_wet54gv2-400.jpg)
    A good amount of time to configure it properly
    Best of luck and you may want to place the bridge in your home in the more central location where the laptops will be.

  • How do we setup OSX Server 10.4.9 to allow Windows XP SP2 to print?

    Background information:
    We have 3 printers setup on OSX Server 10.4.9.
    All 3 are shared in the Print Server as IPP & SMB.
    Windows Services are up and running as a PDC allowing users to login and use anything in their respective home folders from the Windows computers.
    All computers are on the same network/subnet.
    We have made no major changes to OSX Server at this point.
    Problem:
    Someone logs into one of the Windows computers using the Domain ran by OSX Server.
    In Windows explorer they goto \\SERVER. Once there they see all 3 printers and a "Printers and Faxes" folder containing the same 3 printers.
    The 3 printers inside "Printers and Faxes" allow their queues to be looked at in Windows but will not allow themselves to be connected to the Windows computer. They give the same message that the 3 printers outside of the "Printers and Faxes" folder give:
    "A policy is in effect on your computer which prevents you from connecting to this print queue. Please contact your system administrator."
    Question:
    What must we do in order to get the printers working for use with Windows?
    PowerBook G4 12 867MHz   Mac OS X (10.4.9)   iMac G5 20 2GHz, iPOD Nano 1GB, iPOD 60GB

    print:currentQueues = 3
    print:setStateVersion = 1
    print:currentJobs = 0
    print:logPaths:logPathsArray:arrayindex:0:name = "Print Service Admin log"
    print:logPaths:logPathsArray:arrayindex:0:path = "/Library/Logs/PrintService/PrintService_admin.log"
    print:logPaths:logPathsArray:arrayindex:1:name = "CUPS: error_log"
    print:logPaths:logPathsArray:arrayindex:1:path = "/var/log/cups/error_log"
    print:logPaths:logPathsArray:arrayindex:2:name = "CUPS: access_log"
    print:logPaths:logPathsArray:arrayindex:2:path = "/var/log/cups/access_log"
    print:logPaths:logPathsArray:arrayindex:3:name = "CUPS: page_log"
    print:logPaths:logPathsArray:arrayindex:3:path = "/var/log/cups/page_log"
    print:logPaths:logPathsArray:arrayindex:4:name = "AppleTalk: HPLJ4250"
    print:logPaths:logPathsArray:arrayindex:4:path = "/Library/Logs/atprintd/atprintd.100_151.log"
    print:logPaths:logPathsArray:arrayindex:5:name = "AppleTalk: HPJ4250CSR"
    print:logPaths:logPathsArray:arrayindex:5:path = "/Library/Logs/atprintd/atprintd.100_152.log"
    print:logPaths:logPathsArray:arrayindex:6:name = "AppleTalk: HPLJ2200"
    print:logPaths:logPathsArray:arrayindex:6:path = "/Library/Logs/atprintd/atprintd.100_153.log"
    print:state = "RUNNING"
    print:readWriteSettingsVersion = 1
    print:pluginVers = "10.4.140"
    print:startedTime = "2007-05-24 16:55:05 -0400"
    ================================
    All 3 queues are setup for SMB.
    ================================
    Access has:
    "Use same access for all services" checked.
    "Print" does not show up on the grayed out list underneath it.
    However, AFP, FTP, iChat, Login Window, Mail, SSH, VPN, Web, Weblog, Windows and Xgrid all do.
    "Allow all users and groups" is chosen as well.
    ================================
    PowerBook G4 12 867MHz   Mac OS X (10.4.9)   iMac G5 20 2GHz, iPOD Nano 1GB & 60GB, AppleTV 40GB

  • Osx server domain

    Hi all, i have recently shifted from windows server 2008 to mac mini osx server 3.0.
    I have a setup of 8 pc runing windows 7 and connected to server 2008 with domain and it works fine.
    i just got new mac mini and though to replace window server 2008. i configured my osx server and static ip address and domain name.
    but when i change the domain name in windows 7 pc it shows me that no domain name found, i changed the dns ip address in my window 7 pc to my macmini ip address that worked fine but the pc do not except the domain name of osx server but it excepts the windows server domain name.
    is there any way where my windows pc excepts the osx server domain name, i have created the user in osx server and set the premission and shared the folders but i want that window pc should login with that user just as it does with window server 2008. please guys help me out with this.

    Hi
    Prior to 10.7 (Lion) Apple did provide support for binding PCs to a 'Mac Domain' because in those earlier versions OS X Server acted as an NT 4.0 Domain Controller. With Windows7 Microsoft removed all support for NT 4.0 Domains as explained here:
    http://support.apple.com/kb/HT4945
    In a nutshell you can't do what you're planning to do. You can however access shares created on OS X Server from a PC. Maybe you should rethink your plan?
    HTH?
    Tony

  • Connecting to SQL Server on Windows 8 from WindowsCE

    Hello,
    I need to make a connection to SQLServer 2008 which is on my developer machine, later it will be SQL Server on some production machine from .Net Compact Framework developed app on WindowsCE.
    When I using local sdf file I use SqlCeConnection for DB connection but how to connect from same app local SQL Compact databse and SQL Server on some server.
    Thanks in advance...

    Related blog: How to connect to SQL Server from a Windows Mobile Emulator
    Forum thread:
    Windows mobile connect with sql server 2008 r2
    Kalman Toth Database & OLAP Architect
    Free T-SQL Scripts
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • Time Machine OSX Server Help

    i recently had a imac in the office crash which backs up to the OSX server using the Time Machine Service.
    When i try to restore the backup i get the following message.
    "backup cannot be opened if this is a password protected backup you may have entered an incorrect password or the backup may be damaged."
    We have employees come and go at the office so user accounts are created and deleted frequently both on the server level and the local level
    Thanks in Advance

    Look folks I am seriously desperate. I've progressed from hanging up to Time machine remebering that a backup was created on March 10th but not remebering that it has backed up afterewards.  This is the first time since I purchased my First Mac a SE/30 I am Rady to throw my Computer as far as I can throw it. And Jump on it.
    One time it will get through and remember the last update. and next time. But then the next time it may update normally or may forget and go back to square one again.  I can't find anymore USB2 Drives and the last USP 3 Drive I had burnt the cable or the drive out. I need a FireWire or thunderbolt Drive. I feel the problem with the GoFlex Drive is because it depends up wifi.   Frankly My Comcast Cable connection is not dependable.
    I thought this Forum people knew how time machine works.
    Is there anywhere I can Go

  • Installing new server - moving windows machines

    I have purchased a new Intel Xserve which is going to replace our current production G5 system.
    Our current machine is running DNS, OD and is a PDC.
    I will be building the new machine from new and will transfer all the data from the current to the new machine
    I have a good number of Windows users who are connected to the current system and who are using local profiles on their systems.
    I have been running some testing prior to the move and have the following questions?
    When I move a windows machine from one server to another. The windows machine has to be removed from the PDC of one server and added to the PDC of the new.
    The windows machine effectively gets a new system ID from the new server.
    This in turn causes me to copy the users windows "profile" and copy it back once the windows system has been joined to the new PDC.
    How can I avoid doing this?
    How can I make the windows machine continue without any changes and make it think it is still connected to the original server??

    Hi
    You should be able to do this by editing the records directly in Workgroup Manager. Enable the 'show all tabs and Inspector' option under the WGM Menu. You should now notice a new icon appear by the side of the Computer List, it will look a bit like a bullseye. Select this and select from the list of Records below. You should be able to edit the SID for Users or for the Group that the Users belong to.
    Hope this helps, Tony

Maybe you are looking for

  • IPod Touch Gen 1 Stopped Working

    I have an iPod touch generation 1 and it just stopped working. It was working and I plugged it in to finish charging and when I woke up a few hours later it wouldn't turn on. It still won't turn on and doesn't appear in my iTunes. What do I do?

  • How to restore Vista on old Satellite P300?

    Sorry this is a long one. I bought a new P70 to replace my older P300 which came with Vista and now want to restore it to a clean install for the children to use. The problem is that I had partitioned the drive and had been testing the betta and RC1

  • Re Submit in Function Module

    Hi, I am using Function Module for BDC Session and i am calling this Function Module using ABAP Proxy Method, When i am trying to sumbit this Function Module in BAckgorund using SUBMIT rsbdcsub with respective parameters and return. code but the prog

  • Billing date as Current date.

    Hi All. when user prepare billing documents on Sunday, the system by default pick billing date of Monday for orders prepared or changed on Sunday.This leaded to mismatch of actual dispatch qty and dispatches Is it possible to keep billing date - curr

  • Rotating on the.. erm.. Z...? X....? Y...?

    I would like to be able to do this: http://www1.ap.dell.com/content/products/productdetails.aspx/xpsdt_710?c=au&cs=audhs1&l=en &s=dhs Do I need any special plugin? I realise one of the steps is taking photos, but how do I stitch them together in Flas