Windows 7 isa firewall client problem

Hi,
I have a problem with isa 2006 firewall client on windows 7 joined to domain , I can browse websites with webproxy but I cannot connect to any pop3 and smtp mailservers when using pop3 dns name on outlook, so if I add the full name of mail.something.com,
it does not work with (name cannot be resolved), it works when adding ip address, also if I try to access ftp servers on internet it does not work.
This only happens with windows 7 computers windows xp works correctly with firewall client.
If secure nat client is used on windows 7 they work (but I need to authenticate users by name).
I have searched many forums but cannot find a solution.
I have rule in isa server that allows http,https,ftp,ping,smtp,pop, even the rule that applies to me which have all outbound ports open had the same problem.
Thanks in advance.

Hello everyone,
I'm having the exact same issue at my workplace. i have a 2008R2 server running TMG 2010 and i have a pool of mixed client PCs (windows 7 and XP).
I use forefront firewall client for authentication and access.
I'm having the same trouble with name resolution in Outlook and another application but everything else works fine.
There is no issue when using SecureNat (setting up gateway) though, everything is resolved and works well ... it's so strange and it's driving me crazy. 
It would be much appreciated to have a more reasonable solution other than shortcuts like setting a fake gateway.
Thank you in advance. 
Best Regards,
N

Similar Messages

  • Replacing MS ISA proxy with IronPort WSA proxy - ISA firewall client?

    Replacing MS ISA proxy with IronPort WSA proxy - what about the ISA firewall client?
    Does Cisco have an equivalent of the Microsoft ISA Firewall Client?
    How does WSA handle complex protocols (such as ftp) through the proxy server?

    We are replacing MS ISA proxy servers with IronPort WSA S370 proxy servers.
    We have several apps that make use the MS firewall client.
    The MS firewall client enables HTTP-tunneling of TCP & UDP through the ISA proxy servers instead of going through firewalls.
    These apps use various ports - and there are rules setup on the ISAs specifially for these apps and their ports.
    Also we have serveral uses of RPD, telnet, and SSH using the firewall client to HTTP-tunnel through the proxy servers -- and these have  specific ISA rules setup for them too.
    I can find HTTP-tunneling software - commercial and freeware - but can't find any that I think will work through the IronPort WSA S370 proxy servers.
    Would like to find someone who has implemented HTTP-tunneling using IronPort WSA 370 proxy servers.
    Thanks again for your input.

  • Cisco VPN client & Microsoft ISA firewall client.

    Hi all,
    could someone give me advice how to set
    up Cisco VPN client to route traffic
    to our proxy ISA 2004. We have installed
    Microsoft firewall client on PCs but we dont know how to set up routing of IPSEC
    to Proxy.
    I know that this is maybe problem of Microsoft but maybe it is possible to do this directly in Cisco VPN client.
    Any suggestions?
    BR
    jl

    Be sure that the Department or organizational unit (OU) corresponds to the Cisco VPN Client group name, as configured in the PIX vpngroup name. Select the correct Certificate Service Provider (CSP) appropriate for your setup
    http://cisco.com/en/US/tech/tk583/tk372/technologies_configuration_example09186a0080094e69.shtml

  • Connecting through ISA firewall

    I am tring to connect Contribute 3.11 through our company ISA
    authentication (firewall). The network provider tells me that ports
    20 and 21 are open for FTP but about halfway through the connection
    process, I get prompted for authentication username and password. 3
    tries and I'm out
    . I have also tried full domainname\username with
    password and that bombs too. Has anybody else seen this or know how
    to get around it?
    I can connect just fine on my home PC so I know my
    destination settings and permissions are OK. Any help is greatly
    appreciated.

    1. You can specify proxy settings in Contribute by going to
    Edit > Preferences > FTP Proxy.
    2. try disabling any antivirus software or firewall running
    on your system.
    3. make sure you install the ISA Firewall Client in your
    System:
    http://www.isaserver.org/tutorials/Manually_installing_the_ISA_firewall_client.html
    4. to verify if FTP is indeed enabled, try to type this in
    IE: ftp://ftp.irs.gov
    see if you can access the folders; if not, your system admin
    is lying; ftp is not enabled
    5. go to control panel > internet options > advanced;
    make sure that user http 1.1 through proxy connections is checked

  • Windows 7 firewall problem

    Hi,
    I'm trying to develop a test application for P2P communication via Cirrus and came up to following problem with my Windows 7 firewall:
    How is my app designed to work: The application generates key (initConnection) on one side, then I manually copy the key to the other machine and connect again. Init send stream and receive stream on both of them should make the communication available. Whole code is attached below, it's just some sample code I downloaded somewhere for testing purposes.
    #edit: you can check working copy of the application here: http://peskovi.cz/p2ptest/P2Pplugin.html
    My setup: I've got two computers in my local network (connected through cable to same switch), Windows and Linux. However it seems I'm having the same trouble connecting to distant computers as swell.
    My problem: It seems that Windows 7 is partially blocking my connection. The thing is, when I init the connection on Windows and then copy the generated code to Linux and connects there, connection's not working at all. However, when I do it the other way (init on Linux and copy generated code to Windows), everything works just fine. Also, when I turn off firewall on my Windows it works fine both ways too. I have several reasons to believe there might be something wrong with my app:
    1) The sample app on Adobe Labs (http://labs.adobe.com/technologies/cirrus/samples/) works just fine both ways.
    2) RTMFP should be bidirectional protocol right? Doesn't make a lot of sense to me, why would I be able to connect to existing connection, but I wouldn't be able to start a new connection? That should pretty much use the same resources (ports), shouldn't it?
    3) If this is just a common thing with Windows 7, it would mean Cirrus is pretty much unusable for me, but I haven't seen any posts about this anywhere, which is suspicious.
    I'm new to AS/Cirrus/flash so there might be something really noobie I'm missing, so I'd be very glad if there would be someone wiling to help me with any hints why is it not working, what should I do, or just explain to me that I have to deal with the fact that it simply cannot be done and (mainly) why.
    Thank you very much,
    Jan
    My application code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
        <mx:Script>
            <![CDATA[
                private const SERVER_ADDRESS:String = "rtmfp://p2p.rtmfp.net/";
                private const DEVELOPER_KEY:String = "key";
                private var nc:NetConnection;
                private var myPeerID:String;
                private var farPeerID:String;
                // streams
                private var sendStream:NetStream;
                private var recvStream:NetStream;
                private function initConnection():void{
                    if(txtFingerprint.text){
                        farPeerID = txtFingerprint.text;
                    nc = new NetConnection();
                    nc.addEventListener(NetStatusEvent.NET_STATUS,ncStatus);
                    nc.connect(SERVER_ADDRESS+DEVELOPER_KEY);
                private function ncStatus(event:NetStatusEvent):void{
                    trace(event.info.code);
                    myPeerID = nc.nearID;
                    txtFingerprint.text = myPeerID;
                private function initSendStream():void{
                    trace("initSendStream");
                    sendStream = new NetStream(nc,NetStream.DIRECT_CONNECTIONS);
                    sendStream.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                    sendStream.publish("media");
                    var sendStreamClient:Object = new Object();
                    sendStreamClient.onPeerConnect = function(callerns:NetStream):Boolean{
                        farPeerID = callerns.farID;
                        trace("onPeerConnect "+farPeerID);
                        return true;
                    sendStream.client = sendStreamClient;
                private function initRecvStream():void{
                    recvStream = new NetStream(nc,farPeerID);
                    recvStream.addEventListener(NetStatusEvent.NET_STATUS,netStatusHandler);
                    recvStream.play("media");
                    recvStream.client = this;
                public function receiveSomeData(str:String):void{
                    txtReceiveData.text = str;
                private function sendSomeData():void{
                    sendStream.send("receiveSomeData",txtSendData.text);
                private function netStatusHandler(event:NetStatusEvent):void{
                    trace(event.info.code);
            ]]>
        </mx:Script>
        <mx:TextInput x="10" y="10" width="391" id="txtFingerprint"/>
        <mx:Button x="409" y="10" label="Connect" click="initConnection()"/>
        <mx:TextInput x="10" y="40" id="txtSendData"/>
        <mx:TextInput x="10" y="70" id="txtReceiveData" width="251"/>
        <mx:Button x="178" y="40" label="Send data" click="sendSomeData()"/>
        <mx:Button x="10" y="100" label="initSendStream" click="initSendStream()"/>
        <mx:Button x="132" y="100" label="initReceiveStream" click="initRecvStream();"/>
        <mx:Text x="10" y="130" text="Hint: First running Flash app - click Connect to get Fingerprint PeerID. Copy and paste this PeerID to second running Flash app to the same field and click Connect. Then initSendStream and initReceiveStream on both of them and finally you can write some text and click Send data." width="391" height="122"/>
    </mx:Application>

    Hmm, not sure I completely understand now. What exactly simultaneously should mean in this context? The thing is that it seems there's no chance in getting the connection to work when I first turn on the client on my Windows computer. The other way (starting on my Linux computer) it works just fine, and I am able to connect from my Windows to my Linux anytime.
    Also I'm not sure that this is the problem, cause it seems that same problem apply to connection to other computers as well (however this impression is based on a testing with just a very few tries, so I'll try to test it more soon).
    Thanks for the explaining anyway!

  • Windows Server 2012 - Direct Access clients and the Windows 8 firewall

    Hi,
    We're running a simple proof-of-concept for Server 2012 Direct Access, we have a single DA server behind a firewall using NAT. We have a number of client devices setup for DA and running Windows 8.
    Our issue is that we can only get the Windows 8 direct access clients to connect (when outside the corporate network) and work with the windows firewall disabled (public network profile). 
    With the windows firewall disabled everything works exactly as expected. When outside the corporate network the client detects the network state (public network profile), connects via DA and all internal resources can be accessed successfully...fantastic.
    Is there some specific guidance on manually configuring the windows 8 firewall for Direct Access ? We've tried the obvious TCP:443 with edge traversal enabled but without success.
    Much of the information we have found relates to UAG rather than Windows 2012 DA.
    Any assistance is appreciated.

    Hi,
    There isn’t any specific configuration on the firewall.
    Just confirm that port 443 can be forwarded to DirectAccess server.
    Of course, make sure you are using IPsec first.
    Check the links:
    STEP 6: Test DirectAccess Client Connectivity from Behind a NAT Device
    http://technet.microsoft.com/en-us/library/hh831524.aspx#TeredoCLIENT1
    DirectAccess for Windows Server 2012 Installation & Configuration Guide
    http://syscomlab.blog.com/2012/09/directaccess-for-windows-server-2012-guide/
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    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.

  • Oracle12c SQL*NET blocked by Windows 2008 firewall - what is the correct solution?

    Hello,
    I have a question with regards to the SQL*NET traffic being blocked by the Windows 2008 firewall. This document shows that disabling the firewall can resolve the problem:
    https://support.oracle.com/epmos/faces/DocumentDisplay?_afrLoop=166773506396122&id=1472931.1&displayIndex=13&_afrWindowMode=0&_adf.ctrl-state=o4dq0hlih_112
    Is this really the solution?
    From what I understand from other documents is that just enabling port 1521 will not resolve any issues, as SQL*NET can use redirection to other random ports. That is probably the reason why the Oracle installation does not alter any firewall settings.
    What other methods do people use to connect a client to a DB server?
    This document shows what other methods to use, but who uses them?
    https://support.oracle.com/epmos/faces/DocumentDisplay?_afrLoop=166043735580557&id=68652.1&_afrWindowMode=0&_adf.ctrl-state=o4dq0hlih_78
    Does anyone use the Oracle Connection Manager for example?
    Thanks
    Richard

    I configure firewall to allow DB Server to start new network connections

  • RV042G VPN - How to connect with Windows 7 IPsec client?

    Hello,
    I'm trying to use the Windows 7 VPN client, to connect to my RV042G. Here are some Screenshots of my router's and Windows' configuration:
    I tried different other configurations, too, but each time, I get a lot of errors on the router. The upper configuration results in the following:
    Feb 13 14:58:05 2014     VPN Log     packet from 192.168.1.24:500: ignoring Vendor ID payload [MS NT5 ISAKMPOAKLEY 00000008]
    Feb 13 14:58:05 2014     VPN Log     packet from 192.168.1.24:500: ignoring Vendor ID payload [MS NT5 ISAKMPOAKLEY 00000008]
    Feb 13 14:58:05 2014     VPN Log     packet from 192.168.1.24:500: received Vendor ID payload [RFC 3947]
    Feb 13 14:58:05 2014     VPN Log     packet from 192.168.1.24:500: received Vendor ID payload [RFC 3947]
    Feb 13 14:58:05 2014     VPN Log     packet from 192.168.1.24:500: ignoring Vendor ID payload [draft-ietf-ipsec-nat-t-ike-02_n]
    Feb 13 14:58:05 2014     VPN Log     packet from 192.168.1.24:500: ignoring Vendor ID payload [draft-ietf-ipsec-nat-t-ike-02_n]
    Feb 13 14:58:05 2014     VPN Log     packet from 192.168.1.24:500: ignoring Vendor ID payload [FRAGMENTATION]
    Feb 13 14:58:05 2014     VPN Log     packet from 192.168.1.24:500: ignoring Vendor ID payload [FRAGMENTATION]
    Feb 13 14:58:05 2014     VPN Log     packet from 192.168.1.24:500: ignoring Vendor ID payload [fb1de3cdf341b7ea16b7e5be0855f120]
    Feb 13 14:58:05 2014     VPN Log     packet from 192.168.1.24:500: ignoring Vendor ID payload [fb1de3cdf341b7ea16b7e5be0855f120]
    Feb 13 14:58:05 2014     VPN Log     packet from 192.168.1.24:500: ignoring Vendor ID payload [Vid-Initial-Contact]
    Feb 13 14:58:05 2014     VPN Log     packet from 192.168.1.24:500: ignoring Vendor ID payload [Vid-Initial-Contact]
    Feb 13 14:58:05 2014     VPN Log     packet from 192.168.1.24:500: ignoring Vendor ID payload [e3a5966a76379fe707228231e5ce8652]
    Feb 13 14:58:05 2014     VPN Log     packet from 192.168.1.24:500: ignoring Vendor ID payload [e3a5966a76379fe707228231e5ce8652]
    Feb 13 14:58:05 2014     VPN Log     packet from 192.168.1.24:500: [Tunnel Negotiation Info] <<< Responder Received Main Mode 1st packet
    Feb 13 14:58:05 2014     VPN Log     packet from 192.168.1.24:500: [Tunnel Negotiation Info] <<< Responder Received Main Mode 1st packet
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: responding to Main Mode from unknown peer 192.168.1.24
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: OAKLEY_AES_CBC is not enabled for this connection. Attribute OAKLEY_ENCRYPTION_ALGORITHM
    Feb 13 14:58:05 2014    Kernel     last message repeated 5 times
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: OAKLEY_GROUP_MODP2048 is not enabled for this connection. Attribute OAKLEY_GROUP_DESCRIPTION
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: OAKLEY_GROUP_MODP2048 is not enabled for this connection. Attribute OAKLEY_GROUP_DESCRIPTION
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: [Tunnel Negotiation Info] >>> Responder Send Main Mode 2nd packet
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: [Tunnel Negotiation Info] >>> Responder Send Main Mode 2nd packet
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: [Tunnel Negotiation Info] <<< Responder Received Main Mode 3rd packet
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: [Tunnel Negotiation Info] <<< Responder Received Main Mode 3rd packet
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: [Tunnel Negotiation Info] >>> Responder send Main Mode 4th packet
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: [Tunnel Negotiation Info] >>> Responder send Main Mode 4th packet
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: [Tunnel Negotiation Info] <<< Responder Received Main Mode 5th packet
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: [Tunnel Negotiation Info] <<< Responder Received Main Mode 5th packet
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: Peer ID is ID_IPV4_ADDR: '192.168.1.24'
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: [Tunnel Negotiation Info] >>> Responder Send Main Mode 6th packet
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: [Tunnel Negotiation Info] >>> Responder Send Main Mode 6th packet
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: [Tunnel Negotiation Info] Main Mode Phase 1 SA Established
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: [Tunnel Negotiation Info] Main Mode Phase 1 SA Established
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: sent MR3, ISAKMP SA established
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: [Tunnel Negotiation Info] <<< Responder Received Quick Mode 1st packet
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: [Tunnel Negotiation Info] <<< Responder Received Quick Mode 1st packet
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: cannot respond to IPsec SA request because no connection is known for 78.52.27.132:17/1701...192.168.1.24[[email protected]]:17/1701
    Feb 13 14:58:05 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: sending encrypted notification INVALID_ID_INFORMATION to 192.168.1.24:500
    Feb 13 14:58:07 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: Quick Mode I1 message is unacceptable because it uses a previously used Message ID 0x00000001 (perhaps this is a duplicated packet)
    Feb 13 14:58:07 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: Quick Mode I1 message is unacceptable because it uses a previously used Message ID 0x00000001 (perhaps this is a duplicated packet)
    Feb 13 14:58:07 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: sending encrypted notification INVALID_MESSAGE_ID to 192.168.1.24:500
    Feb 13 14:58:10 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: Quick Mode I1 message is unacceptable because it uses a previously used Message ID 0x00000001 (perhaps this is a duplicated packet)
    Feb 13 14:58:10 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: Quick Mode I1 message is unacceptable because it uses a previously used Message ID 0x00000001 (perhaps this is a duplicated packet)
    Feb 13 14:58:10 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: sending encrypted notification INVALID_MESSAGE_ID to 192.168.1.24:500
    Feb 13 14:58:14 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: Quick Mode I1 message is unacceptable because it uses a previously used Message ID 0x00000001 (perhaps this is a duplicated packet)
    Feb 13 14:58:14 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: Quick Mode I1 message is unacceptable because it uses a previously used Message ID 0x00000001 (perhaps this is a duplicated packet)
    Feb 13 14:58:14 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: sending encrypted notification INVALID_MESSAGE_ID to 192.168.1.24:500
    Feb 13 14:58:22 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: Quick Mode I1 message is unacceptable because it uses a previously used Message ID 0x00000001 (perhaps this is a duplicated packet)
    Feb 13 14:58:22 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: Quick Mode I1 message is unacceptable because it uses a previously used Message ID 0x00000001 (perhaps this is a duplicated packet)
    Feb 13 14:58:22 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: sending encrypted notification INVALID_MESSAGE_ID to 192.168.1.24:500
    Feb 13 14:58:38 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: Quick Mode I1 message is unacceptable because it uses a previously used Message ID 0x00000001 (perhaps this is a duplicated packet)
    Feb 13 14:58:38 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: Quick Mode I1 message is unacceptable because it uses a previously used Message ID 0x00000001 (perhaps this is a duplicated packet)
    Feb 13 14:58:38 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: sending encrypted notification INVALID_MESSAGE_ID to 192.168.1.24:500
    Feb 13 14:58:52 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: received Delete SA payload: deleting ISAKMP State #89
    Feb 13 14:58:52 2014     VPN Log     (c2gips0)[2] 192.168.1.24 #89: received Delete SA payload: deleting ISAKMP State #89
    Feb 13 14:58:52 2014     VPN Log     (c2gips0)[2] 192.168.1.24: deleting connection (c2gips0) instance with peer 192.168.1.24 {isakmp=#0/ipsec=#0}
    Does anyone know, how to configure the router and Windows 7, to get a working VPN tunnel?
    Thanks.

    Ok, I could find the time, to try this out. I followed this instruction: https://www.shrew.net/support/Howto_Linksys and it works.
    There is at last one Problem: I can't access computers behind the remote router from the connected client. The client can see the remote router and computers behind the remote router can see the connected client using the IP-adress, I used for shrewsoft.
    I tried to ping some remote PCs from the client, but I get timeout messages. Ping is enabled on all devices. There are no log errors on the router. I tried to add the remote router on the client as a standard gateway, and I decativated the router's firewall, but without success.
    Does anyone know, why the communication just works in one direction?

  • Windows 7 firewall blocking airplay after allowing

    Hi guys and gals,
    Windows 7 firewall is blocking airplay from my PC (iTunes) to my Apple TV and also stopping me using my iPhone (remote) to control iTunes.
    If I turn the firewall off all is well with the world but once I reinstate it everything stops working again.
    I've set up incoming and outgoing rules for iTunes and ports TCP 3689 and UDP 5353 as per guides on these forums, i've also selected iTunes in the 'allow a program...' list.
    Everything is running the latest version, I've reset and updated Apple TV and re installed iTunes.
    Help me please as its driving me mad!

    Hmm, not sure I completely understand now. What exactly simultaneously should mean in this context? The thing is that it seems there's no chance in getting the connection to work when I first turn on the client on my Windows computer. The other way (starting on my Linux computer) it works just fine, and I am able to connect from my Windows to my Linux anytime.
    Also I'm not sure that this is the problem, cause it seems that same problem apply to connection to other computers as well (however this impression is based on a testing with just a very few tries, so I'll try to test it more soon).
    Thanks for the explaining anyway!

  • IE crashing with Flash player and MS Firewall Client

    I have seen this on versions 6, 7, and 8 of Internet Explorer. I work in a firm where all are computers are behind proxy servers running Microsoft ISA. All our PCs have the MS Firewall Client installed. When visiting certain flash intensive sites, mostly online news sites, like nytimes.com, IE will always crash while browsing the page or after refreshing the page. Sometimes an error is generated and other times IE just closes without any notification of an error taking place.
    An example of the error sometimes generated will sometimes be a generic "iexplore.exe - Application Error : The instruction at "0x556038ae" referenced memory at "0x0000000f". The memory could not be read...." or "Microsoft Visual C++ Runtime Library. Runtime Error! Program: C:\Program Files\Internet Explorer\iexplore.exe. R6025 - pure virtual function call."
    Often times the crash of IE will be captured by XPs Dr Watson creating a .log file which can be examined with any text editor; a .dmp file will also be generated which can then be opened with the Windows Debuggin Tools. I have looked at a few of these files and in every instance there is a FAULT when wspwsp.dll is called.
    Wspwsp.dll is used by an older version of Microsofts Firewall Client for ISA. The IE/Adobe Flash crash can be resolved by upgrading to lastest version of the FWC for ISA (version 4.0 currently). Alternately, this issue can also be worked around by disabling the FWC while browsing the Internet from the FWC icon in the system tray (right click>disable or from the Control Panel>Firewall Client>Uncheck Enable option). To do this on the fly, you can place the ISATRAY.exe in the All Users startup folder if the FWC icon fails to stick in the system tray box.

    Ironically enough, I can reproduce the above mentioned R6025 error this morning by just going to Adobe's home page and waiting for the intro Adobe Acrobat 9 video to near the end. Clicking OK to the error will close IE. A minidump is not produced either by DrWatson or by using CrashLogEnable=1 in mms.cfg in this case.

  • Microsoft Firewall Client blocks the SBO client

    Dear All,
    We have upgraded our client from 2004C to 2007A SP 46.
    The upgrade was successful, but there were some problem with the clients.
    The client didn't start, the solution for this we have to disable the Microsoft Firewall Client.
    Now it is a good solution, but not for a long time.
    So could you tell me, how can we setup the Microsoft Firewall Client, is we want the use SAP clients?
    There weren't any problem, with 2004C clients, what happened? What we have to setup on this kind of firewall?
    Thanks : Veronika

    Hi Veronica,
    Basically the the type of connection how SAP Business One connects to the license server has been changed when comparing both Business One versions. Version 2004 uses DCOM in order to connect to license service, but from 2005 version there is a port available and DCOM is not longer used.
    Your local Windows Administrator should be able to open ports 30000 and 30001 within Windows Firewall.
    Kind regards
    Mario

  • Can't open secured documents on windows 7 domain client with mandatory profiles.

    While opening certain PDF files we have the problem that the user is presented with a message that he does not have the rights permissions. This happens twice, after that the users gets an empty page with the message the Adobe version might not be up to date. We use Acrobat Pro 10, but this also happens while using Reader 11.0.8. On our windows 2008 terminal services machine this could be fixed by giving the user rights on c:\ to create and remove a file. :O. On windows 7 this doesn't work probably because of UAC. But we've tried every solution to that available on the internet, disabling uac, changing uac options, changing rights on userprofile folders, changing rights on c:\ but to no avail. When using process explorer we can see it wants to create a temp file p328hkl.tmp or something like that on C but it can't and immediattely after is shows the error on screen.
    Anyone who also has this problem or solved it? There are no problems with simple self made pdf files/scans but only with certain types of pdf files for which it tries to create a tmp file.
    Thanks,
    Peter

    Hi Brogers,
    Thanks for your reaction. We do have AppData redirection in place. We redirect AppData to a share on our data server which works perfectly fine for all other applications. The weird thing is that Reader/Acrobat try to write to C:\ which to my knowledge should not happen, is this maybe a fallback because it can’t write to a different location? Users have full control on their own roaming AppData but not on their local AppData that is made by windows itself while copying the mandatory default profile to C:\.
    I might use the wrong term while saying secured documents. I’m talking about a document created by Raet/Youforce a web application for personal administration. The documents can be opened by other viewers than Acrobat/Reader but then only contain the background and not the text. In Acrobat/Reader they do open normally when Acrobat/Reader can create the .tmp file. Otherwise it will not display the file at all. I would attach such a document to see but since it contains certain info I am not allowed to do so.
    I hope we can work out a solution for this.
    Met vriendelijke groet,
    Peter Gerritsen
    Engineer
    AndoBurg BV
    Voorstraat 31
    3931 HB Woudenberg
    T 033 479 40 80
    F 033 479 40 89
    E [email protected]<mailto:[email protected]>
    I www.andoburg.com<http://www.andoburg.com/>
    Als u niet de geadresseerde van dit bericht bent, verzoeken wij u ons hiervan op de hoogte te brengen en het bericht te verwijderen. AndoBurg BV aanvaardt geen aansprakelijkheid voor schade die voortvloeit uit elektronische verzending van informatie. Aan de inhoud van deze e-mail en eventuele bijlagen kunnen geen rechten worden ontleend, tenzij schriftelijk anders is overeengekomen.
    Van: brogers_1
    Verzonden: vrijdag 19 september 2014 20:10
    Aan: Peter Gerritsen
    Onderwerp:  Can't open secured documents on windows 7 domain client with mandatory profiles.
    Can't open secured documents on windows 7 domain client with mandatory profiles.
    created by brogers_1<https://forums.adobe.com/people/brogers_1> in Enterprise Deployment (Acrobat and Reader) - View the full discussion<https://forums.adobe.com/message/6745441#6745441>

  • Windows Vista firewall fails to start. Error 1068 The dependancy service or group failed to start

    I have looked at the previous blog relating to this but the remedy hasn't worked
    When trying to start the firewall all I get is security center can't turn on windows fire wall
    I have gone into services and tried to switch on the firewall and get error 1068 the dependancy serice or grop failed to start
    I followed the previous blog,
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BFE\Parameters\Policy
    Right click the Policy key and choose
    Permissions. ClickAdd and Enter
    NT Service\BFE
    Then click Check Names (the name will change to just bfe) and thenOk.
    Click Full Control then Ok your way out.
    Click Start - All Programs - Accessories - Right click Command Prompt and chooseRun As Administrator. Type (or copy the below lines and one blank line underneath and right click in the command prompt window and choose Paste).
    sc start bfe
    sc start MpsSvc
    However i get the message
    Start service failed error 1068
    CAN ANYBODY HELP ME WITH WHAT TO DO?

    1)Do u  have a third party security software installed? 
    This could be due to that... What are the different virus scans you are already having.. there may be third party firewall or security product
    which is interfering the windows firewall.. disable one by one your security scanners and try to up the windows firewall
    (2)if you dont have such firewall product installed,  this could be due to malware or some other problem...
    if you have an antivirus solution, update it's definitions, and do a full system scan.. 
    If you dont have a antivirus solution or your one is not working, use one of the recommended tools (use only one of
    them at a time)
    http://www.microsoft.com/security/scanner/en-us/default.aspx
    And/Or
    http://www.malwarebytes.org/products/malwarebytes_pro/
    And/Or
    http://www.simplysup.com/tremover/download.html  (shareware
    and can be activated for 30 days free)
    And/Or
     http://www.surfright.nl/en (shareware and can be activated for 30 days free)
    And/Or
    http://www.kaspersky.com/free-virus-removal-tool 
    if it is also not the problem, may be your firewall service is damaged.. 
    (3) Open a command prompt run as administrator and type 
    sfc/scannow
    (4)Try to repair the firewall service 
    Run the services repair tool by ESET
    http://kb.eset.com/library/ESET/KB%20Team%20Only/Malware/ServicesRepair.exe
    And/OR
    Diagnose and fix Windows Firewall service problems automaticallyhttp://support.microsoft.com/mats/windows_firewall_diagnostic/en-us
    (5)And/OR
    Download and add this Windows firewall registry entry-  https://www.dropbox.com/s/rdvziqlg4epaw9e/mpssvc.reg
    (If you find any difficulty in adding this to registry refer this  http://www.windowstechinfo.com/2013/07/solved-cannot-import-to-registry-not.html
    http://blogs.technet.com/b/networking/archive/2011/06/14/the-windows-firewall-service-fails-to-start-registry-permissions.aspx
    And/OR
    open a command prompt using run as administrator
    and copy paste these 
    Rundll32 setupapi,InstallHinfSection Ndi-Steelhead 132 %windir%\inf\netrass.inf
    and hit enter
    (6)command prompt (run as admin), type 
    netsh advfirewall reset
    and then press "Enter."

  • Is there a Mac equivalent of the Windows Live Mail client?

    (If anyone reading isn't familiar with Windows Live Mail, please look at http://en.wikipedia.org/wiki/WindowsLiveMail to see what I mean. Please don't suggest clients like Microsoft Entourage etc as they're not what I'm looking for!)
    I used to have a Windows laptop and used the Windows Live Mail client to manage my Hotmail accounts. It was brilliant as it synchronised exactly with webmail (all folders present and correct, if I deleted an email on the webmail it would delete from the programme and vice versa, etc) and did this with as many email accounts as I liked - so I could access all three from the same screen. Perfect!
    When I got a Macbook I discovered that Windows Live Mail wasn't available for Mac. I spent a couple of weeks looking for a suitable alternative but never found one.
    I'm aware of how to use Hotmail in a regular mail client but I've not found one exactly the same as Windows Live Mail. There's always a problem with synchronisation between the client and webmail, I can only get the inboxes imported and no other folders synchronise which is a pain as I don't always use my laptop to read my email - if I read it elsewhere using webmail and move an email from the inbox to another folder, I'd have to do a second time when I next use my laptop. Hence I don't bother and just use webmail instead - but I hate logging in and out of three accounts!
    As it's been ages since I last looked, I thought I'd look again - but I still can't find anything that works the way I want.
    Is there a Mac equivalent of Windows Live Mail (http://download.live.com/wlmail)? Something that works in exactly the same way? I wish Windows weren't so childish and would just release a version of this for Mac... it's pretty much the only thing I miss from my old laptop!
    (Please don't suggest changing email accounts - I've asked this elsewhere and that was the only response I got!)

    In few words, "No." There is no such client for the Mac. The closest you may find would be to try the Mac MSN client, aMSN - VersionTracker or MacUpdate - but it's essentially just a messenger clone. I doubt it includes a Live Mail client.
    (Please don't suggest changing email accounts - I've asked this question elsewhere and that was the only response I got!)
    Because there is no other response.

  • Windows 8.1 client cannot delete shared server files.

    We have one office that has a Windows 8.1 client on the network that cannot delete files in a shared folder on their server.
      The folder is a catch all folder for the copier to scan to and contains all the PDF files it creates.  When the one user tries to delete any of the PDF files they get an error saying the file is in use.  We have tested by deleting files from
    the server and also from other workstations.
      We have rebooted the computer and also tried to resolve it by specifically giving the user full rights to the folder, but the problem remains persistent.

    Hi,
    There are several possible reasons for your situation, you might don’t have a permission of this folder, the folder is in use, a corrupted file is in current folder.
    http://windows.microsoft.com/en-hk/windows/cant-delete-file-folder#1TC=windows-7  (Also applies for Windows 8.1)
    First, I suggest to log on the computer with an administrator account to delete the folder and disconnect the network connection if possible, second, Run your computer in safe mode to delete the folder or files, to run computer in safe mode:
    Restart your computer, meanwhile press F8 until you see the safe mode screen.
    Hit enter at safe mode, log on the system as an administrator.
    Find the folder or file you want delete.
    Regards
    Wade Liu
    TechNet Community Support

Maybe you are looking for

  • How can I get the "comments" to show up in the left tool bar?

    Yesterday the "comments" were (A) appearing stacked on the left of the pages document, today, they are only (B) appearing as a sqaure notation and I can not seem how to switch back to the (A) style.  Any tips is appreciated.  Thanks!

  • Reports 6.0 (TABS missing in print/preview)

    I have created a paragraph (with TABS) using Oracle System Editor. When print using Reports, the TAB get replaced with a SPACE. Any ideas of how to get the TAB spacing in Reports? Thanks for and ideas. null

  • How to open, automatically, several selected tabs

    Hello, When I launch Firefox I would like it to open several selected tabs that I review regularly. Easy to do but only for the Home page... Did I miss something ? Thanks in advance. OldChap2

  • Php flex settings

    i hav mde an application form thats connects with a php database uSING WAMP. now the problem i m facing is that i want to deploy this application in to my own server.... i dnt knw wat to put in webroot=? and rooturl=?...... in wamp i used to put webr

  • Creative Suite Failed to Initialize?

    I've been trying all night to install some form of a Photoshop trial with no success. Downloading the installer goes without a hitch, but when I go to install, I get a message saying "Installer failed to initialize. Please download Adobe Support Advi