Connect to an isolated file server using windows XP

Hello guys,
I have a file server that requires inbound connections to use connection security rules for authenticating the connections by computer account.
It's working great on my windows 8 and 7 clients (with the help of firewall with advanced security) but I don't know how to use the connection security rule in windows XP to connect to the server.
Can anyone help me?
Thanks

What you are looking for requires that you configure IPsec on your Windows XP box.  IPsec is available as part of the OS with Vista and later.  It was an add-on for XP and 2003 and earlier.  Non-trivial task.  Start searching TechNet
and blog posts to see if you can find the instructions you need to configure XP.
. : | : . : | : . tim

Similar Messages

  • How to upload a file which may contain text as well as image to the server using windows phone 8 application ?

    How to upload a file which may contain text as well as image  to the server using windows phone 8 application ?

    You're going to need to give way more detail about the situation before we can help.

  • Unable to connect to the remote ftp server using dreamweaver.

    For the last one week I have been trying to connect to the remote ftp server using dreamweaver. I spoke to the technical support agency who manage our remote server but they are saying that there is no problem with the server adn they dont know anythign about dreamweaver so cant assist me.
    I was suggested to check with adobe team directly and i spoke to a technical support person on the live chat but they said since the version is CS4 - education version, they cant assist me at all!! This is just ridiculous...I am constantly being sent from one place to the other without anything getting resolved!!
    Please help somebody!!

    I am having a similar problem... maybe.  I was connected to my remote site all day yesterday, then out of the blue I tried to "put" an edited file... as I had been doing all day, and I received an FTP error:  Cannot make connection to host. Your login or password is incorrect.  That's odd, I've been connecting all day.  So I went into my sites > manage sites and clicked the Test button on my remote server information and it returned Adboe Dreamweaver CS connected to your webserver successfully.  I went back to my file and tried once more to "put" it on the remote server... again FTP Error: cannot make connect to host...  So I reboot my computer and start Dreamweaver CS3 again.  I reenter my remoter server information and click the Test button.  "... connect to your webserver successfully".  I try to put any file, FTP error again.  So I call my server administrator, he checks the servers logs and says there are no errors and you've connected successfully several times today.  I went through the trouble shooting steps listed here, though my FTP Logs are empty.  I cannot stay connected or even see the remote folders to try to drag and drop.  I tried to run ftp from a windows command prompt and it seems to connect me.
    I downloaded an installed an SFTP client and was able to successfully connect to my remote server and upload the files.  It's definately a Dreamweaver problem.  Any suggestions?

  • Slow applications start from win 2012 file server using win 7 workstations

    I hope someone can help me with why applications are slow to load i have replaced a 8 year old server running  win 2003 and replaced it with dell t620 running win 2012 r2 it is like 20 times faster but it is slower than the old server. the office has
    7 win 7 x64 machines all our applications are running from win 2012 file server. The server is set up as following the server runs with two hyper-v machines one machine runs ad, file server, dhcp, dns and printer server and the other is domino server and remote
    desktop. 
    the machine is more than capable but it is not so i started reading after i run out of ideas. i looked every where but the issue is with the server after trying everything else i did a simple test If i go to the application folder and click on it apps load
    instantly if i then type a unc path it takes from instant load to 3 and a bit seconds the same as the workstations. The same speed if I use ip address.
    network cards are intel
    i would really appreciate if somebody has suggestions that i could try
    thank you

    Hi,
    Do you mean that applications in the application folder start slowly when you access the application folder on the Windows 2012 R2 file server from Windows 7 workstations using UNC path or IP address. Do all the files in the application folder have the same
    issue? Please create a shared folder on the file server, then access the shared folder from Windows 7 workstations to check if the issue still exists.
    You could disable SMBv3 on server 2012 to check if the issue related to SMB protocol. 
    How to enable and disable SMBv1, SMBv2, and SMBv3 in Windows Vista, Windows Server 2008, Windows 7, Windows Server 2008 R2, Windows 8, and Windows Server 2012
    http://support.microsoft.com/kb/2696547/en-us
    Warning: We do not recommend that you disable SMBv2 or SMBv3. Disable SMBv2 or SMBv3 only as a temporary troubleshooting measure. Do not leave SMBv2 or SMBv3 disabled.
    Best Regards,
    Mandy 
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Get the connected users count from sql server using powershell

    Hi,
    I am working on SharePoint 2013,I am having SQL server 2012.
    I want to get the Connected Users count from  sql server using power shell.
    Can any one please let me know how to implement.
    Thanks in advance.
    Regards,
    Phani Kumar R

    Sorry Tom, I dont like to hear "There is no way" :-(
    There is always a way in computer to get what you need (at least it is good as Rule of thumb). I am not sure we will find it here (in a voluntary supporting forum).
    Now we (or better the architect of their system) should think of the way :-)
    Of course doing so in the forum, while we do know the system and only got a glimpse on what is needed, is not the best idea. I will point some issues which can be related to a solution. Those are not a solotions as it is but something we can use for a solution
    once something look in the right way.
    * A web connects counter is one of the easier thing to do. The basic idea is just to use the connect event and the disconnect event an adding 1 or removing 1 from the counter. This is best to do in the application using static variable as any way the second
    the application is down the counter can be go to hell as we know there is no one connect (there for a counter do not use database usually). Using a web dot-net (or asp 3) application this is done most of the time using the global.asa/global.asax file, which
    include the application and session events. for example using the method Session_Start
    protected void Session_Start(object sender, EventArgs e) {
    // Code that runs when a new session is started
    * IIS have a build-in loging system where we can log each and every request/response or only logins users. There is lot we can do with this log files including data mining. Using small bulk insert script we can use the SQL agent to insert those logs to the
    database and get the information we need.
    * any web developer i want to believe know about the Fiddler application which we use to monitor traffic. A proxy is not the only way to to monitor traffic (it is not good for our case as this is in the client side), there are several option in the server
    side.
    * SQL trigger on logon can be use to get information on who is loging on and can be logging only specific source (like our sharepoint IP or any sharepoint application). This information (what is the application which connect to the server can be retrive
    in several solution without using a trigger as well)
    *** (I'll be brief ... I'm getting bored... probably the reader feel the same)
    * using extended events and/or profiler we can monitor any connection and save the data or just remember it in shared (static) variable (this
    blog show how to do it by the way). Again we can monitor specific application or use any filter in order to get only the sharepoint users
    .... and i can continue for several days more :-) ...
    "If there is a willing, then there's a way"
    "If you can't do it, Then someone else probably can"
    "Never say never"
    I hope this help somehow :-)
    [Personal Site] [Blog] [Facebook]

  • I can't connect my ipad air to my computer. It comes up with the message  'connection has timed out'. I use windows vista. Please help, I want my music catalogue on my ipad. Thanks

    I can't connect my ipad air to my computer. It comes up with the message  'connection has timed out'. I use windows vista. Please help, I want my music catalogue on my ipad. Thanks

    Have you updated your iTunes? iOS7 requires at least iTunes 11.

  • Can't connect to Easy VPN Server using Windows 7 inbuilt VPN client

    Hi Everyone,
    I would like your help to resolve a vpn issue I am having with my Windows 7 inbuilt vpn client. I am trying to connect to an Easy vpn server on a Cisco 2951 ISR G2. Well, I can connect using Cisco vpn client v5.07 but I can't connect using Windows 7 inbuilt vpn client. Is there any configuration that I am missing so that I can connect using Windows 7 inbuilt vpn client to connect to the vpn server?
    Thank you.

    Hi MindaugasKa,
    Base on your description, your case must is the NPS client can’t pass the NPS policy.
    The NPS client can’t connect the network may have many reason, such as the Network Access Protection Agent service not started successful, the certificate not issued properly,
    please offer us information when your Windows 7 client denied, such as event id, original error information, screenshot.
    More information:
    Extensible Authentication Protocol (EAP) Settings for Network Access
    http://technet.microsoft.com/en-us/library/hh945104.aspx
    Network Access Protection in NPS
    http://msdn.microsoft.com/en-us/library/cc754378.aspx
    Appendix A: NAP Requirements
    http://technet.microsoft.com/en-us/library/dd125301(v=ws.10).aspx
    802.1X Authenticated Wireless Access Overview
    http://technet.microsoft.com/en-us/library/hh994700.aspx
    Connecting to Wireless Networks with Windows 7
    http://technet.microsoft.com/library/ff802404.aspx
    The related thread:
    NPS 2012 rejects windows 7 clients after upgrade from 2008 R2. Requested EAP methods not available
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/44af171f-6155-4f2e-b6c7-f89a2d755908/nps-2012-rejects-windows-7-clients-after-upgrade-from-2008-r2-requested-eap-methods-not-available?forum=winserverNAP
    I’m glad to be of help to you!
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • How can I search for files on an external file server (using Linux)?

    The configuration is that the mac min is connected (with other Windows XP computers) in an ethernet network. The file server is the only one running Linux. The mini mac has no problems to connect to the server and read the files, write files and create folders etc. But, because the file server is quite big, there are a lot of files and folders (size estimate in total some 350 GB). In a finder window I tried to seach a file name, but the mac does not give any result. The mouse cursor does not visibly change into occupied or so. Searching for a file on the mac is no problem as we know.
    Any help or hint what kind of program / setting needs to be used to do this would be appreciated.
    thanks
    Ueli

    Use the Find command (menu Edit) and in criteria at the right side is a plus sign to add another criteria and set it to your custom wishes.
    make a choice in results and you should be OK

  • Setting up an internet file server using Powermac

    With iDisc possibly being dumped with the switch to Cloud, I'm looking at the possibility of turning an PowerMac into some sort of internet file server/iDisc replacement. Now, whilst I'm not clueless I'm not a networtking expert, so if poss I need some help.
    What I'd like to do is have the machine at work, connected to my router by wire. The three main work machines (Mac Mini's and iMacs) can access it also by wire, as they're wired into the same router. Then I'd like to be able to access it's files on my iDevices when either connected to the work network wirelessly or out and about via the internet. Also, be able to connect my laptop and home machine to it via the internet.
    I don't want to be able to stream anything from the file server, just use it as a file store, for stuff that needs working on at home and work, and when out and about using my iPad or iPhone.
    The Powermac runs that last version of OS X that will run on the non intel machines, and the work machines on Snow Leopard. My iDevices are JB's and run 4.3.3 and my Macbook Pro runs Lion.
    I have a dynamic IP at work, and only use Macs so don't need to be able to connect Windows machines.
    Help, advice welcome.
    Ta.

    Hi Steve, with a Dynamic IP at work, you'll need to a service like DynDNS or no-IP.
    http://support.apple.com/kb/HT2366
    http://hintsforums.macworld.com/archive/index.php/t-33446.html
    http://homepage.mac.com/car1son/static_port_fwd_intro.html
    http://www.wikihow.com/Setup-VNC-on-Mac-OS-X

  • Oracle raise ORA-03113 when connect to a remote oracle server using toad

    Hi there,
    when i use the tool toad connect to a remote oracle server which located in a different city,
    when i submit a query in toad,
    if the query returns many rows of data, it will raise the error ORA-03113:end-of-file on communication channel,
    however if the query returns only a few rows, i won't raise such error,
    however, when i use sqlplus connect to that remote server, it won't raise such error,
    what's the reason is, can any one tell me how to tackle this problem if using the tool toad. thanks/

    hi my oracle vsersion is:
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE 11.2.0.1.0 Production
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    my oracle server is 2 nodes rac server,
    and i've tried two different kind version of toad v9.6 and v10.5, and both have the same problem
    once i query a table, if the result returned more than 30 rows, then it will raise that error, if query returns less than 30 rows, it's ok.
    i assume it is a problem concern with network, but i don't know why no such error raise when using sqlplus ?

  • Problem connecting (read only) to Sybase Server using Crystal XI

    Hi,
    I'm having a very similar problem to Renuha in the thread 'Problem connecting to Sybase Server using Crystal XI-Version-11.0.0.1994'
    The thread is marked as assumed answered but I suspect not!
    I am experiencing this issue in Crystal XI R1 11.0.0.2495, post SP4 install.
    Though the issue was exactly the same pre SP4 install, when it was a vanilla install @ version 11.0.0.1282.
    I am trying to connect to a Sybase database via Crystal > Start Page > Standard Report Wizard > Standard Report Creation Wizard > Sybase Server > Make New Connection
    I enter the details, of my read only user account, and select my desired database, from the (successfully) populated 'Database' drop down.
    After some time, in the 'Standard Report Creation Wizard' window I get the server listed under the Sybase Server branch, but, on expanding the server I only get '...no items found...'. However ,if I use the sa account, after selecting a particular database, I can see all the available database objects under the Sybase Server > [server] node.
    I am on Windows XP Pro SP3, with Sybase Open Client v12.5.2
    I assume my Sybase Open client is correctly installed as I am able to successfully connect using the sa account.
    I am trying to connect to a Solaris 10 (5.10) system running Sybase @@version= Adaptive Server Enterprise/15.0.3/EBF 16548 ESD#1/P/Sun_svr4/OS 5.8/ase1503/268
    Our database vendor/supplier has said:
    "...Crystal reports is not handling the granularity of the Sybase revoke permissions and assuming we've revoked all access to any table where we have revoked only write access.
    Is anyone able to assist?
    Thanks,
    Matt

    Don,
    Thanks again for the response and my apologies for the delay in reply - they keep giving me other work to do!!
    Anyway.
    CR XI R2 SP6 successfully installed.
    Same outcome on Sybase connect, with a full read/write sa account
    i.e. successfull connect and sight of all database objects within my chosen database.
    Same outcome on my restricted read only account
    i.e. I am able to successfully authenticate and choose which database I wish to select but subsequently, still, 'no items found' is displayed when I expand my database node.
    I believe it is a problem with the read only account as both accounts are able to connect, as shown by the availablilty of the dropdown, listing the available databases within the specified Sybase instance.
    The reasons for going down this path are as you suspect - I've been asked to provide access which is not full!
    As far as the testing via test tbl creation.
    I know very little of Sybase (?!) and all our Sybase DBA activities are carried out by our system/dB vendor/supplier.
    To do further testing I would have to go back to our dB vendor/supplier but, as mentioned, (I get the impression) they already beleive they have carried out all required of them by providing locked down read only access.
    I ought to mention that the database trying to be accessed is a restored copy of "the previous days" live data, on an MIS server. The read-only account comes over as with full privileges, and it is a script, subsequent to database restore, which knocks down the accounts privs, to read-only. Given this scenario what would I have to ask of them re further testing/troubleshooting?
    Thanks,
    Matt

  • Mac as a file server for windows -- mounting a mac disk at windows startup

    Is there any way to use the Mac as a file server for a windows XP home service pack 1 system?
    The best I can do is "mount disk at login". However, this fails to use the right username/password, and even then it fails to deal with programs that run outside of a user context, or with fast user switching (it seems every program gets a different set of drive letters to remote volume mappings).
    Mac Mini 1.42 1G   Mac OS X (10.4.3)  

    And this is my problem.
    In windows terms:
    I want to assign a drive letter to a network drive, and have that be a machine-wide assignment, that is activated during bootup, and is visible to all users and services.
    I can do that for an arbitrary partition that is physically attached to the machine.
    I cannot seem to do that for any partition that is mounted over the network.
    The problems are:
    1. It doesn't map for every user,
    2. It doesn't map for services that run when a user isn't logged in
    3. It generates annoying inconsistencies in what programs see what.
    Is there really no way for an XP box to use a file server? Even a microsoft file server? (if there is, how do I make my mac os with samba look like a real microsoft file server).
    Annoying tidbit: The "conncet at login" information is stored in the user profile; if you rely on that, then the user profile cannot be stored with the rest of the user's personal files. If it weren't for that, I could probably live with a work around.
    (2 to 1 someone will say "Xp Professional can do that trivially" and tell me to upgrade. I thought XP home was supposed to support home and small office networking, and I thought that included a single shared file server.)
    Mac Mini 1.42 1G   Mac OS X (10.4.3)  

  • Windows server 2012 R2 file server for windows XP machines?

    I know that we can't auto enroll users that use an XP machine, but can an XP machine use the windows server 2012 R2 as a file server? Users will still be authenticated on a windows server 2003 machine.

    Hi,
    I found this article on Symantec website:
    Enterprise Vault 10.0.3 Feature Briefings - FSA support for Windows Server 2012
    http://www.symantec.com/business/support/index?page=content&id=DOC6307
    So the newest version should support Deduplication (at least on Windows Server 2012) now. 
    And for best practice, do you have any specific requirement? It actually depends on necessary. 
    If you have any feedback on our support, please send to [email protected]

  • Claims Authentication Error connecting to BCS - but we're using Windows Authentication

    We currently have an External List with a SQL Server SProc as a source in a SharePoint 2010 site. It has been working great for months now. I need to make a change to the External Content Type - and I have made changes in the past - but now strange things
    are happening.
    I can't view the external content type (or any) in SPD.  I can create a new Secure Store Service Target Application in SPCentralAdmin and everything seems fine, but I can't consume the application in SPD.  I get an error that BCS has rejected the
    request.  This is new and curious; I'm a Farm Administrator.
    Looking at the logs, I find I get a Claims Authentication error that my ID can't be found (the error is below).  This is also new and is very, very curious as we're not using Claims authentication for any of our sites.  They all use Windows authentication. 
    I am also getting recent reports from users who are repeatedly challenged for credentials and wonder if this is related.
    In my research, I've found suggestions from starting the CWTS Service (I was dubious, I can start the service, and it doesn't resolve the problem) to setting Metadata Store Permissions in SPCentralAdmin (I was again dubious as I'm a farm administrator -
    and I get the same error when I try to make this assignment!)  So I'm at a loss.
    Here is the error (the X'd out information was correct in the trace):
    SPSecurityContext.WindowsIdentity: Could not retrieve a valid windows identity for NTName='XXXXX\XXXXXX', UPN='[email protected]'. UPN is required when Kerberos constrained delegation is used. Exception: System.ServiceModel.EndpointNotFoundException:
    There was no endpoint listening at net.pipe://localhost/s4u/022694f3-9fbd-422b-b4b2-312e25dae2a2 that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details. ---> System.IO.PipeException:
    The pipe endpoint 'net.pipe://localhost/s4u/022694f3-9fbd-422b-b4b2-312e25dae2a2' could not be found on your local machine.      --- End of inner exception stack trace ---    Server stack trace:     
    at System.ServiceModel.Channels.PipeConnectionInitiator.GetPipeNam...
    We're not using Kerberos at all. We're using good, old-fashioned Windows Authentication.  The only changes made to the platform recently have been updates.  The error could, of course, be erroneous and I may be charging down the wrong path. 
    But although I find many links when I Bing the error, all the links pertain to sites using Claims authentication - even the Error Category in my log is "Claims Authentication" - but we're not using Claims Authentication...
    Again, any help at all will be appreciated.  Thanks!

    Hi Kevin,
    From the error message, we might be missing user permissions to the BCS Metadata Store. Please perform the steps below and test the issue again:
    1. Open the SharePoint Central Administration website with either a Farm administrator account or an account that has been delegated permissions to administer the Business Data Connectivity Service Applications.
    2. On the Quick Launch, click Application Management.
    3. On the Application Management page, under Service Applications, click Manage service applications.
    4. In the list of services, select the row of the Business Data Connectivity Service Application that you created in Create the Business Data Connectivity service application and then click Manage and then Set Metadata Store Permissions.
    5. Enter the Farm Administrator account and any other delegate administrators if you have them and then click Add.
    6. For each account or group that you added that is an administrator of the Business Data Connectivity Service Application, select the Edit, Execute, Selectable In Clients, and Set Permissions checkboxes.
    7. Select the Propagate permissions to all BDC Models, External Systems and External Content Types in the BDC Metadata Store. Doing so will overwrite existing permissions checkbox.
    8. Click OK.
    Also, make sure your account is added as local administrator.
    Regards,
    Rebecca Tu
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • HT1751 After "Restoring iTunes Library Backup" it wont link to the files in the iTunes folder. I've followed the correct procedure, and iTunes lists all my music correctly (but with no artwork), but can't locate any of the files. Using Windows 7. Help ple

    After "Restoring iTunes Library backup" it wont link to the files in the iTunes folder. I've followed the procedure as described, and the iTunes folder is in the correct location. iTunes lists all my music correctly (albeit with no artwork), but can't locate any of the files.
    I've been restoring my iTunes folder from a backup hard drive to a new computer on which I've downloaded the latest iTunes (10.7). If this is a newer version than the one I backed up with could this be the problem? (I had the latest (to my knowledge) iTunes when I backed up the folder about 3 weeks ago, was this version 10.7?)
    Or is the version of iTunes (within recent updates) not an issue when restoring a library?
    Using Windows 7.
    Any help please?

    From the top of the page where the scripts live...
    The general method of use is to download the script to a folder of your choice, e.g. your Desktop, Downloads folder or create a folder at ...\iTunes\Scripts. Select a playlist or highlight some tracks in iTunes and then double-click on the script to execute it. If no specific tracks are selected the script will try to work with all tracks in the current playlist. Some scripts offer a choice of track by track confirmation of changes or fully automatic processing of the selection. Many of the scripts can optionally display a progress bar while running.
    You are strongly advised to backup your entire library, or at the very least the iTunes Library.itl file, before use. Test the behaviour of your chosen script on a small group of files first to make sure it does what you want before applying it to large numbers of files.
    Most builds of Windows will execute *.vbs scripts when you double-click them. If that doesn't happen then you might need to visit the Add/Remove Programs or Programs & Features control panel to enable the Windows Scripting Host. I can track down details if you have issues.
    Backing up and restoring data is an area that is often glossed over. Most people don't try to learn much about it until they've lost something important. (Me too )
    If your iTunes library was in the usual layout then normally copying the whole iTunes folder from the User's Music folder in the old computer to the User's Music folder in the new one will usually work fine. Ideally this is done before iTunes is installed so that there is no empty library to replace, and all settings are picked up from the old library. This post contains more details.
    tt2

Maybe you are looking for

  • Newly purchased Lightning cable doesn't work or rarely works??

         I purchased a new lightnign cable for my iphone 5s from Target, and it was pretty expensive for a cable. I plugged in, worked perfectly fine for a 2 days and it just "died", no matter how I tried it just won't charge or charges VERY VERY slowly.

  • Accounts orderring and duplication check

    iI find this puzzling and need help to write the code wherein I have to override the base class given below and implement the same after increasing the number of accounts to 10. Please help me write the code for the same Thanks package Account; impor

  • I am beginner to sun one studio and sun one application server

    How can i access a cmp from a jsp page. in sun one application server. thanx in advance

  • Java IO Help Please

    Hi, I am new to reading and writing varibles to a file from a GUI Application. What I am trying to do is make an object (that only contains some varibles) and have my main program take the object and write its varibles to a file (doesn't matter what

  • Can I use variables in Rules

    Hello OPA Expets: 1. I have calculation as below: the order line item depreciation total= ((the specified price per unit for the order line item + the order line item price after Transportation) - the order line item cash discount total) –((( the spe