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.

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.

  • Can't see Windows 7 PC's from Mac on home network

    Same exact problem as this person...
    http://discussions.apple.com/thread.jspa?messageID=11492672
    Any help appreciated. Thanks -Frank

    frankencat wrote:
    Same exact problem as this person...
    http://discussions.apple.com/thread.jspa?messageID=11492672
    Any help appreciated. Thanks -Frank
    I think the other person can't see his Mac, you appear to not be able to see your Windows PCs. Did you set up sharing on the Windows PCs? How is your LAN set up? Describe your connections and equipment.

  • HT3819 Is it possible to share a printer (attached to a Windows-7 PC) on my home network, with an iPad, iPhone or a Mac?

    Is it possible to share a printer (attached to a Windows-7 PC) on my home network, with an iPad, iPhone or a Mac?

    Possibly. You'd need to see if your printer has any programs you can put on that attached computer to allow it to be a print server.
    I'd start with your printer manufacturer first. See if they offer anything. for your model. If not, then you can look for any printer apps or programs.

  • 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?

  • I installed Windows 7 in my Macbook pro, I can access Windows data in Mac, but I can't copy and delete it. and the same case while i am working in Windows. Could you please guide me if there is any solution, where I could copy/paste/delete my data.

    I installed Windows 7 in my Macbook pro, I can access Windows data in Mac, but I can't copy and delete it. and the same case while i am working in Windows. Could you please guide me if there is any solution, where I could copy/paste/delete my data.

    OS X can natively read NTFS of Windows, but not write to it.
    Windows can't read or write to HFS+ of OSX, and that's a good thing from a security standpoint.
    Ideally if you share files between operating systems you should have a FAT/MSDOS formated USB key or hard drive. (exFAT external drive if any of your files are over 4GB in size) both these formats are universal for OS X or Windows.
    If you install software into Windows and OS X to read each others formats, then you have to pay to update/upgrade it deal with headaches.
    If you swtich between Windows and OS X a lot, don't need full hardware performance for Windows, you may consider installing virtual machine software like VMFusion or Parallels which can take a copy of your Windows in Bootcamp and place it into OS X as a file then run that copy of Windows in a window in OS X like so.
    Advantage here is you run most of your light weight Windows programs like this at the same time as OS X.
    Benefit is you can run just about any Windows or Linux version and OSX server editions (not client versions)
    Bootcamp only allows Windows 7, that's it now.
    You'll also be interested in two fre pieces of software, Carbon Copy Cloner and Winclone on macupdate.com.
    CCC clones OS X partition and Winclone clones the Bootcamp partition. Valuable for you.
    Good Luck

  • Is it possible to access my TimeCapsule from outside my local network via internet? If so what is the best app  that  can help me?

    is it possible to access my TimeCapsule from outside my local network via internet? If so what is the best app  that  can help me?

    iCloud can do it..
    http://www.apple.com/au/support/icloud/back-to-my-mac/
    You need Lion and latest firmware on the TC..
    Were you hoping to use the ipad/iphone??  That maybe possible but I am not sure how.
    You cannot use windows without opening SMB to some strange port and this is going to mess with security.. you also need a static ip address from your ISP.. most private net users do not have this.
    You can do it via vpn.. you will need to buy a vpn router and bridge the TC to it.
    Just google remote access time capsule.. there are a zillion posts about it.

  • Connecting to Windows computer from Mac

    So here is my issue:
    I can connect to my Mac from my PC, but not the other way around.
    Both of my machines have internet, and my mac is on a wireless connection.
    I want to know how I can access the files from my Windows machine from my Mac.
    This is what ive tried so far, and every time I enter in the address it tells me I have entered in a wrong user name or password when I have not had the change to enter anything in!
    http://docs.info.apple.com/article.html?path=Mac/10.4/en/mh1164.html
    Am I dealing with an OS X problem here or am I dealing with an XP problem? Wherever the issue is coming from, is it fixable?

    Might be both... OSX will/can send past passwords & such before asking, but this site should fix you up. Also might need to ensure they are both the same Workgroup.
    Is that smb://+ the IP you're entering?
    iFelix...
    http://www.ifelix.co.uk/tech/3020.html

  • 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

  • Copying files from Mac to PC network shared drives.

    Copying files from Mac to PC network shared drives.
    We have shared mounted drives in AIX Fusion that we can pull files from and copy to the mac, however we can not copy files from the mac to the drives.
    “Error in user parameter list (-50)” With MS DOS-Formatted Volume.”
    The drives are mapped on the mac using SMB. We can go to the files on the mac and use “save as” and this works and saves them on the shared drives.
    We can not drag and copy them to the shared drives. Every time it fails and we get the above error. We can create folders but not move any files.
    When we look up the error, it is referring to certain characters that can but used in a Max OS X filename and are not allowed in MS-DOS filenames. We are not using any of the characters not allowed.
    The drives have all the basic set up in AIX, RWC. All the PC's we have can drag files to and from all our shared drives.

    Either install software which enables the Mac to write to NTFS drives, or MacDrive on the PC, or reformat any drives you'll be using to share files between the computers as either FAT32 or exFAT.
    (88270)

  • How to access TC from a Windows 7 PC off my home network?

    Can someone please tell me how to gain access to my personal home networked TC from my work provided Win 7 PC? I do not take my Mac into the office so can I get to crucial data stored on my TC from work? FTP client perhaps? Map a drive via IP address? IP address in IE?
    Any help would be appreciated!
    Thanks!
    JM

    Possibly. You'd need to see if your printer has any programs you can put on that attached computer to allow it to be a print server.
    I'd start with your printer manufacturer first. See if they offer anything. for your model. If not, then you can look for any printer apps or programs.

  • Can't copy some files from Windows 7 to Mac OSX over network

    Hi,
    I'm running the latest version of Max OSX v10.8.4 on a brand new Macbook Pro.
    I have followed the setup instructions at http://www.7tutorials.com/how-change-workgroup-mac-os-x-easy-networking to access my Macbook from Windows, and http://www.howtogeek.com/howto/24950/how-to-share-a-folder-in-os-x-with-windows/ to share some folders from my Macbook to Windows.
    I am now trying to copy some files from my Windows 7 Pro (SP1) computer to my Mac, and have hit the following problems:
    I can view my Macbook in my list of local networked computers on WIndows, but I cannot access it. Clicking on it causes Windows 7 to try and access it, but then I get a message after a minute saying the network path could not be found. However, if I manually enter the IP address of my Macbook in the Windows address bar (\\192.168.0.191), I can view and access all the shared folders. I can never access the Macbook via it's computer name (\\MACBOOK-ROB).
    I cannot copy some files from Windows to my Macbook shared folders via Windows. There is nothing to distinguish these files from the hundereds of other files that I have successfully copied to my Macbook. They are pictures and music with no special characters in the filenames, not overly long filenames or folder paths, no access restrictions, or any other security restriction that I can see. However, every single attempt to copy these files to my Macbook results in WIndows reporting that access to the destination was denied.
    I have tried both these above scenarios on WiFi and Ethernet, and the results are the same.
    So:
    Why am I unable to access my Macbook by it's computer name on the network? How can Windows see it, but not access it?
    What are the limitations on transferring files over SMB that is (presumably) causing these specific files to fail?
    Thanks for any help you can offer.

    I have a fix for inability to copy files. I had the same problem moving a lot of old files across my LAN from a Windows XP machine to a Mac Mini running Mountain Lion. After confirming copy of some special file, I would get an error that terminated the copy operation, and info on the Mac side would show a locked folder.
    I finally decided to eliminate all special files on the Windows side, before copying, by running
         attrib -s -h -r /s /d [drive or folder]\*.*
    in a command window. Running attrib /?  tells what the arguments mean, but it doesn't explain that you need the *.* to make the command go through the hierarchy clearing the special attributes on all the files.
    After I did that, and then used drag and drop between two Windows Explorer windows (one on the Windows drive, on on the target drive on the Mac), the whole move operation ran to completion without stopping either for error or to ask for confirmation.
    I do not have a fix for the inability to access some computers by name rather than by IP address. I'm looking into the possibility of activating bind on the Mac but I haven't done anything yet.

  • Can see Windows PCs from Mac, but can't see (and access) Mac from PCs

    Yesterday, I ran into a strange problem which I'm not able to figure out.
    I share an office with some engineers, who have their computer environment (server, network), all running Windows (XP and Vista on the PCs, Windows 2003 for the server).
    Within that environment, I have 2 PCs (both XP) and an iBook G4 (Leopard 10.5.4.). I have also a printer (Epson Laser), which is connected to the office network, and an Airport Extreme Base Station.
    Until last week, I could connect from my PCs to my iBook (wirelessly), and from the iBook I could connect to my PCs, the server, and via the server print on my printer (again, all wirelessly).
    Over the weekend, I took out the Airport Extreme Base Station (to help with an issue at home - see my thread over at Printing), and yesterday I brought it back to the office and installed it again.
    And since I re-installed the Base Station, this is the problem:
    1. from PCs, I can't see the iBook (can't attach a PC drive letter - eg. I:\), and therefore can't access it
    2. from the iBook, I can't print to my printer - furthermore, when I select the Printing preference and click "Add Printer", no printers whatsoever show up (the list stays blank), whereas before the engineers' printer (some Minolta Bizhub with Bonjour) would show up as well
    3. I can, however, access the Windows server from my iBook
    Any ideas what's going on? I tried to solve this, but gave up quickly (no way I can possibly figure this out), plus I have this issue at home (can't print wirelessly to a printer attached via USB to a Time Capsule - I can, however, print to the same printer if I attach it to the previously used Airport Express!) - 2 problems and mounting headaches!
    I am thinking about re-installing the whole system (take off all data, do a complete wipe and start afresh…), but don't like to spend a whole day doing this…
    Again, thanks for any advice!
    Jan

    You only need one computer to configure the Base Station - and since you can easily do this from your PC, you really don't need to be able to do it from your Mac as well. I suggest you stop worrying about this, leave your Base Station running with the current firmware version, and use your PC if you ever need to make a configuration change.
    Note that NO Base Station software needs to be installed on the Mac, for the Mac to be able to connect wirelessly to the Base Station. If your Mac is currently unable to establish a wireless connection to the Base Station, you have a different problem - and one that won't be solved by installing the Airport Admin Utility or downgrading firmware on the Base Station. Incidentally - what type of wireless security are you using on the Base Station - WEP or WPA? A base station configured to use WPA security will only be accessible by a Mac running at least MacOS 10.3.

  • PC can't log onto Mac on home network

    I have a LinkSys Wireless-G Broadband Router WRT54G Firmware Version: v1.02.0 on my home network. Ever since I upgraded to 10.5 I am having this problem: From my IBM Think Center running XP I try to connect to my Mac shares using Add new network place It can see the share I am trying to access (\\IP#\\sharename) and brings up the log on box, which says "connect to 'servername' so I know it's seeing the share. When I type in the mac user's name and password, instead of opening the share, the dialog login box refreshes and replaces the user name I just typed in with "NameOfPcComputer/macUsername" (not helpful!)and I can't connect to the Shared folder on the mac! I never had this problem before 10.5. The share is set with permissions for 2 Samba users with "Read and Write", and "everyone" with no access. Neither user can log in from the PC to the Mac. Both users have accounts on the mac. (not share users only).The shares are in a public folder. I used to use "Share Points" software that worked wonderfully under 10.4 and allowed me to share and set permissions for any folder. Now that does not work with 10.5.

    Hi sdu.cds,
    If you are having issues connecting to your Macs from your Windows machines for local file sharing, you may find the information and steps outlined in the following articles helpful (apologies if you have already seen them):
    OS X Yosemite: Set up a Mac to share files with Windows users
    OS X Yosemite: Connect to a Mac from a Windows computer
    Note: Make sure you are using the user name and password of a user account that is on the Mac when connecting from the Windows machine. 
    Regards,
    - Brenden

  • Windows 7 and Mac 10.5 network file sharing

    I am having extreme difficulties sharing files over my home network! I have 3 PCs and one Mac. I have tried the Mac forums and the Windows forums, to no avail.
    On the Mac side:
    File Sharing is ON, with smb
    Users are set to Everyone with read/write privileges
    WINS has the correct Workgroup name
    Network Name has no spaces in it
    Shared my Desktop, Public Folder, Documents, and Shared folders (just to cover root folders and specific ones too)
    Mac gives an smb://xxx.xxx.x.x address and a local network accession "mycomputername.local," but I don't know what to do with either of these things. When I put the addresses into the Windows Run dialogue box or in Internet Explorer, they don't seem to recognize the path.
    Firewall is set to Allow All Incoming Connections
    Under the Shared location in Finder, I can see my router name, and if I click on it, I can connect. No password is required. I am connected as my account name. However, I can't see the PC or anything at all, in fact.
    Under the Shared location in Finder, I can see my shared name for my Mac. But I cannot connect to it, probably because I'm connecting from my Mac.
    It would be nice to use the smb://DNSname/sharename or the smb://IPaddress/sharename function in the Go to Server window, but I have no idea where to find this information on my PC. Or on the network. Or whatever this is referring to.
    On the PC:
    Sharing is NOT password protected under Advanced Sharing Options
    I am sharing my Desktop and My Documents with Everyone and Guest, and Windows 7 has provided a file://computername/Users/foldername path. However, when I put this into the Connect to Server or Connect to File window, there is an error.
    I can click on my Mac computer name in the Network window, but I get the error message that it cannot connect (network path cannot be found, using \\MYMACNAME as the path). This is when my Mac says it is "connected" when I click on the router in Finder's Shared places.
    Of course both the Mac and the PC have full connectivity to the same network.
    Also, I have disabled the internal firewall in the Belkin router.
    Also, my accounts have identical names with no spaces.
    My Mac (10.5) DID successfully connect to Windows XP before I upgraded.
    Any advice? Thanks guys!!
    P.S. -- I have also posted to the Windows people here: http://social.answers.microsoft.com/Forums/en-US/w7network/thread/b5144e55-d024- 401c-85ae-1cf94226b786
    In the hopes that I will double my chances of getting an answer.

    And my response:
    Okay, so here's what I've done:
    OS X: did the sharing thing, smb thing, and directories thing.
    Win 7: Network sharing settings are correct for Home or Work (current profile). I left my Public alone, but verified that my network is recognized as a Home location.
    User accounts exist in both the Mac and PC. Names are the same. Heck, passwords match and I'm logged into the same account on each computer, just in case.
    Firewalls are scary to me, so I did the best I could. I went to my browser, typed in my router IP address, and went to the DHCP Client List. Both of the computers were listed with their assigned IP addresses. I "reserved" those IP addresses so they the router would always assign that IP address to that MAC address (so I could count on it in the future). It turns out that they are sequentially assigned, so I figured that if I added any more devices (my other PC, the PS3, etc.) those IP addresses would just be +1 to the last digit cluster in the IP address.
    Then I went to Windows Firewall, because I don't have a third-party firewall. I confirmed that I was connected to the Home network, and then clicked Advanced Settings. Wow, there's a lot of rules! There were multiple File and Printer Sharing rules (both inbound and outbound), so I didn't mess with them. Instead, I created a Custom Rule (bot inbound and outbound) for all programs, any protocols and all ports, and added the IP address range (192.168.2.1 - 192.168.2.9, giving myself plenty of extra for future devices) I found from above to the local and remote IP Address boxes. I specified to Allow the Connection for Domain, Public and Private, and gave it a name that started with A so I could find it easily in the future. Finally, I set the Interface Type to be LAN and Wireless (my PC is wirelessly connected).
    In OS X, in the Firewall tab of the Security preference, I set it to Allow all incoming connections. File Sharing (SMB) is the first name on the list, but I cannot click on it or modify it in any way. I don't know what else to do. Am I missing something?
    I've shared My Music and Desktop on the Win 7 for Everyone (not just the Homegroup!), and shared My Documents and Desktop for Everyone to read/write on the Mac.
    Okay, now I need to reboot on both computers. brb...
    Wow, definitely don't reserve any IP addresses on your router! I took that setting off, restarted everything, reset the modem and router, and I can now connect both computers to the internet.
    I can still connect to the Windows via the Connect to Server dialogue and smb://AJPC.
    In Windows Network, I can now see my Mac user account name, but when double-clicking on it I get the error message "Windows cannot access \\ComputerName. Check the spelling of the name. Otherwise, there might be a problem with your network. To try to identify and resolve network problems, click Diagnose." Under "Details," it says Error code: 0x80070035 The network path was not found." When I diagnose, Troubleshooting can't identify the problem.
    Any advice? Thanks for your help guys!
    A side note: I just checked my router's DHCP client list, and my PC is now connecting at 192.168.2.8, which is definitely not sequential. Good thing I specified the IP Address range all the way to 192.168.2.9 just in case; apparently the router can't count.

Maybe you are looking for

  • How to update the field of a Parent enity (field is not visibe on the Form) from a Child Entity in MSCRM 2013

    Hi All,           I m new to CRM customization. I have requirement like this.. I have 3 entities.. Entity1 , Entity 2 and Entity3. Entity1 is the parent of Entity2 and Entity3. Entity2 is the parent of Entity3 and child of Entity1 .. In Entity1 I hav

  • AirPort Extreme Not Connected to Internet

    I have been trying all day to connect a new AirPort Extreme base station. The base station appears to be configured correctly, in that the green indicator light burns solid. But I can't connect to the Comcast Internet: I get an error message that the

  • HT5899 Keywords missing in iMovie X. BRING THEM BACK!

    This is either a terrible bug or a BAD decision by Apple. All you can do is view tags applied to videos in the previous version. http://support.apple.com/kb/HT5899?viewlocale=en_US&locale=en_US Please hit Apple's feedback page and let them know we ne

  • Uploading data in Measurement Point(PM)

    hii all i have a requirement to upload data in Measurement point (PM) We can achieve this through IBIP please let me knw the procedure Thanx and regards Hitesh

  • MII implementation of WECo rule. Zone A

    Dear Forum, I would like to configure the SPC chart in MII to have an alarm when a data point falls beyond 3 standard deviations from the center line. The zone A alarm is activated when the data point falls in zone A or beyond (this is between 2 and