QUOTE(node21 @ Apr 4 2011, 04:14 PM)

So, it seems like the server is running.
Have you editted the xm360.cfg on the 360 to tell it about the server? If you've done that, you should be able to select "remote connection" on the first page of xm360, and from there, connect to the server.
Let's tackle that part first...then we can worry about getting the server to update the 2 csv files...
(yes, it will work fine through a router)
-node21
Thanks for the quick reply.
Been looking over the server part first from beginning (as you suggested, CVS later

) and for the life of me I could not see a part for telling where the server is then I saw it under:
## Configuration of other 360s to find looks like this. (Stupid me thought that was just for other consoles and not the PC server software)
So I added the PC details to the top section of that.
Ran xm360server.exe (without any /? yet) then loaded the console xm360 and choose Remote Connection and horray is shows the PC server, connects now it shows Get / Put / Both.
After that fun I decided to try the next part (keeping the CVS upto date).
Edited xm360.cfg to enable: (hopefully right)
EXTRA_XBLA_SEARCH_PATH = hdd1:\xbla
CONTENT_BIN_PATH = hdd1:\Apps\xm360
Then edited the xm360server.exe to define the xbox HDD1.
With the server window still open I opened another one this time with the /X command but some reason it wont find the hdd1 (I did test DEFINE_HDD1 = c:\1 which worked, but DEFINE_HDD1 = hdd1:\ or hdd1:\Apps\xm360 did not).
Copy of my current 2 cfg files.
CODE
# The following drives can be defined Hdd1, Usb0, Usb1, Usb2, MemUnit0, MemUnit1, OnBoardMU, UsbMU0, UsbMU0Cache, UsbMU1, UsbMU1Cache
# At least one drive must be defined otherwise nothing is going to work. I suggest defining Hdd1 at least.
# Absolute paths like c:\foo and UNC paths like \\server\share\path are both supported.
# You shouldn't nest them, or you will end up with duplicates. In other words, don't define Usb0 to be a branch of Hdd1
#DEFINE_HDD1 =
DEFINE_HDD1 = hdd1:\Apps\xm360
#DEFINE_USB0 = e:\temp\USB
#CONTENT_BIN_PATH must be defined as an xbox 360 path, it defaults to Hdd1:\
#CONTENT_BIN_PATH = hdd1:\content
#
# The FTP user, password and port can be defined, but they will default to xbox, xbox, 21 otherwise
#
#FTP_USER = xbox
#FTP_PASSWORD = xbox
#FTP_PORT = 212
CODE
# config file for xm360 ("xm360.cfg")
# XM360 looks for this file first in Hdd1:\config\xm360 (Hdd1:\config\xm360\xm360.cfg)
# if it can't find it there, it falls back to game:\xm360.cfg
## DLC_IGNORE_PATH is the path where the file "dlc_excludes.csv" will be read/written
## DLC_REPORT_PATH is the path where the file "dlc_report.txt" will be written
## DLC_TITLES_PATH is the path where the file "dlc_titles.csv" will be read (used to override the built in version)
## XBLA_IGNORE_PATH is the path where the file "xbla_excludes.csv" will be read/written
## XBLA_REPORT_PATH is the path where the file "xbla_report.txt" will be written
## XBLA_TITLES_PATH is the path where the file "xbla_titles.csv" will be read (used to override the built in version)
## The available prefixes are Hdd1:, usb: (first found mounted usb device), usb0:, usb1:, usb2:, usbmu0:, usbmu1:)
## in all cases, the default value is usb:\
## only the TITLES_PATH values will fall back to the built in version if nothing is found
## New in version 1.5 is REPORT_PATH which supercedes XBLA_REPORT_PATH and DLC_REPORT_PATH
## It allows a single definition for all report paths, including Game Saves.
## XBLA and DLC_REPORT_PATH are still understood, and will override REPORT_PATH which defaults to usb:
REPORT_PATH = usb:
DLC_IGNORE_PATH = usb:
#DLC_IGNORE_PATH = hdd1:\config\xm360
#DLC_REPORT_PATH = usb:
XBLA_IGNORE_PATH = usb:
#XBLA_IGNORE_PATH = hdd1:\config\xm360
#XBLA_REPORT_PATH = usb:
## User and Password for the ftpd. If config isn't found, xbox/xbox will be used/
FTP_USER = xbox
FTP_PASS = xbox
## TIME_SERVER_IP is the IP to connect to to find out the current time.
## TIME_SERVER_IP default if this entry isn't found is 131.107.13.100
## Make it empty to skip setting the time
TIME_SERVER_IP = 131.107.13.100
#TIME_SERVER_IP =
## EXTRA_XBLA_SEARCH_PATH will be search for XBLA in addition to the built in places
## trailing slash will be trimmed if it is there
## the default value is empty
#EXTRA_XBLA_SEARCH_PATH =
## Configuration of other 360s to find looks like this.
## The label is optional (but displayed in the UI if provided)
## The login and password is optional (both default to 'xbox')
## The port is optional (and will default to 21)
## Whatever is after the last underscore ('_') has to be unique for each connection
## It is fine to configure ALL of your boxes (including the local one) since XM360 will filter out the local one.
## That makes it easy to share your xm360.cfg on all of your boxes.
OTHER_XBOX_FTP_LABEL_1 = jtag
OTHER_XBOX_FTP_IP_1 = 192.168.1.82
OTHER_XBOX_FTP_LOGIN_1 = xbox
OTHER_XBOX_FTP_PASS_1 = xbox
OTHER_XBOX_FTP_PORT_1 = 21
#OTHER_XBOX_FTP_LABEL_2 = Family Room
#OTHER_XBOX_FTP_IP_2 = 192.168.0.104
#OTHER_XBOX_FTP_LOGIN_2 = xbox
#OTHER_XBOX_FTP_PASS_2 = xbox
#OTHER_XBOX_FTP_LABEL_3 = Office
#OTHER_XBOX_FTP_IP_3 = 192.168.0.106
#OTHER_XBOX_FTP_LOGIN_3 = xbox
#OTHER_XBOX_FTP_PASS_3 = xbox
## Horizontal and Verticle overscan can be specified. If they aren't found, they default to 0
#H_OVERSCAN = 10
#V_OVERSCAN = 0
## CONTENT_BIN_PATH specifies where the content.bin file is stored. It defaults to "game:"
#CONTENT_BIN_PATH = hdd1:\config\xm360
## WRITE_REPORTS_ON_STARTUP will cause xm360 to write out all of the reports that it knows about upon startup...
## It *will* cause xm360 to take slightly longer to startup
## It has no "= ture" , or "= false" at the end...if it is uncommented, it will take effect
#WRITE_REPORTS_ON_STARTUP
Thank you for all help so far, much appreciated