ICH10 and Vista - AHCI mode - anyone got it to work ?

The ICH10 DOES have AHCI
I have a P45 chipset and am having some difficulty in Windows Vista 64.
I have a P45 neo-F
BIOS 1.1 (which came with the mb) only had IDE mode. After changing the motherboard over from my old one, the system booted into Vista and worked fine (after installing the inf chipset driver from the MSI CD).
I then installed BIOS 1.3. This now has an option to select AHCI (MSI have only started enabling this on later BIOSes for the ICH10).
I selected AHCI mode.
Then all hell broke loose. The computer booted, but the network and nvidia video card driver failed.
I reinstalled the intel drivers from the disk, the  network driver started working again, but the Nvidia card doesn't.
I uninstalled and reinstalled the latest NVIDIA drivesr, but the system says "unrecognised graphics card"
I would really like not to reinstall Vista.
Any ideas are welcome!

Vista is rather sensitive with new hardware functions.
Have you cleared CMOS with main A/C power cable removed from PSU after updating your BIOS?  If not, repeat this step and load "Optimized Defaults" in BIOS after that.
Have you installed the latest Intel Chipset drivers available on the Intel Download Sites?  If not, try those and see what happens:
http://downloadcenter.intel.com/filter_results.aspx?strTypes=all&ProductID=2973&OSFullName=Windows+Vista&lang=eng&strOSs=163&submit=Los%21
If none of this changes anything, I would reinstall Vista (or test a parallel installation) to see if the problem is OS related (or not).

Similar Messages

  • CF9 and Amazon S3 - Has anyone got this to work?

    I've now sorted my other issues and thanks to everyone who helped me with them - I've now moved on to trying to create a set of services that will connect to the S3 cloud and post and retrieve pdf files in our buckets - We need to be able to supply vast amounts of files to client and the cost of that currently is exorbitant in server disk space compared to with using the cloud
    I've searched all over the net and picked up a number of ways of doing this - None of which seem to be able to generate the correct signature- I'm currently using the cf_hmac stuff from Adobe
    This is my code
    <cfobject component="AmazonWebServices.amazons3" name="amazonS3">
    <cfset s3ServiceKeys = structNew()/>
    <cfset s3ServiceKeys.accessKey = "<MyKey>"/>
    <cfset s3ServiceKeys.secret = "<MySecretKey>"/>
    <cfset s3ServiceKeys.bucket = "<MyBucketName>"/>
    <cfset s3serviceKeys.pdfContentType = "application/pdf"/>
    <cfset s3serviceKeys.gifContentType = "image/gif"/>
    <cfset s3serviceKeys.jpegContentType = "image/jpeg"/>
    <cfset s3serviceKeys.requestType = "cname"/>
    <cfset deliverDir = "<MyDeliverDir>"/>
    <cfset s3Service = amazonS3.init(awsKey="#s3ServiceKeys.accessKey#",awsSecret="#s3ServiceKeys.secret#")/>
    <cfdirectory action="list" directory="#deliverDir#" name="TheFileList" sort="dateLastModified" recurse="no" type="file">
    <cfoutput query="TheFileList">
    <cfset result = s3Service.putFileOnS3(localFilePath="#deliverDir#\#TheFileList.name#",
                                          contentType="#s3serviceKeys.pdfContentType#",
                                          requestType="#s3serviceKeys.requestType#",
                                          bucket="#s3serviceKeys.bucket#",
                                          objectKey="#TheFileList.name#")/>
    <cfdump var="#result#"/>
    </cfoutput>
    This is the AmazonS3Service - more or less a direct copy from here http://www.barneyb.com/barneyblog/projects/amazon-s3-cfc/
    <cffunction name="init" access="public" output="false" returntype="amazons3">
             <cfargument name="awsKey" type="string" required="true" />
             <cfargument name="awsSecret" type="string" required="true" />
             <cfargument name="localCacheDir" type="string" required="false"
                 hint="If omitted, no local caching is done.  If provided, this directory is used for local caching of S3 assets.  Note that if local caching is enabled, this CFC assumes it is the only entity managing the S3 storage and therefore that S3 never needs to be checked for updates (other than those made though this CFC).  If you update S3 via other means, you cannot safely use the local cache." />
             <cfset variables.awsKey = awsKey />
             <cfset variables.awsSecret = awsSecret />
             <cfset variables.useLocalCache = structKeyExists(arguments, "localCacheDir") />
             <cfif useLocalCache>
                 <cfset variables.localCacheDir = localCacheDir />
                 <cfif NOT directoryExists(localCacheDir)>
                     <cfdirectory action="create"
                         directory="#localCacheDir#" />
                 </cfif>
             </cfif>
             <cfreturn this />
         </cffunction>
    <cffunction name="putFileOnS3" access="public" output="false" returntype="struct"
                hint="I put a file on S3, and return the HTTP response from the PUT">
            <cfargument name="localFilePath" type="string" required="true" />
            <cfargument name="contentType" type="string" required="true"  />
            <cfargument name="bucket" type="string" required="true" />
            <cfargument name="objectKey" type="string" required="true" />
            <cfset var gmtNow = dateAdd("s", getTimeZoneInfo().utcTotalOffset, now()) />
            <cfset var dateValue = dateFormat(gmtNow, "ddd, dd mmm yyyy") & " " & timeFormat(gmtNow, "HH:mm:ss") & " GMT" />
            <cfset var signature = getRequestSignature(
                "PUT",
                bucket,
                objectKey,
                dateValue,
                contentType
            ) />
            <cfset var content = "" />
            <cfset var result = "" />
            <cffile action="readbinary"
                file="#localFilePath#"
                variable="content" />
            <cfhttp url="http://s3.amazonaws.com/#bucket#/#objectKey#"
                method="PUT"
                result="result">
                <cfhttpparam type="header" name="Date" value="#dateValue#" />
                <cfhttpparam type="header" name="Authorization" value="AWS #variables.awsKey#:#signature#" />
                <cfhttpparam type="header" name="Content-Type" value="#contentType#" />
                <cfhttpparam type="header" name="x-amz-acl" value="public-read">
                <cfhttpparam type="body" value="#content#" />
            </cfhttp>
            <cfset deleteCacheFor(bucket, objectKey) />
            <cfreturn result />
        </cffunction>
    <cffunction name="getRequestSignature" access="private" output="false" returntype="string">
            <cfargument name="verb" type="string" required="true" />
            <cfargument name="bucket" type="string" required="true" />
            <cfargument name="objectKey" type="string" required="true" />
            <cfargument name="dateOrExpiration" type="string" required="true" />
            <cfargument name="contentType" type="string" default="" />       
            <cfset stringToSign = "#trim(ucase(verb))#\n#contentType#\n#dateOrExpiration#\n/#bucket#/#objectKey#"/>
                <!--- Replace "\n" with "chr(10) to get a correct digest --->
                <cfset fixedData = replace(stringToSign,"\n","#chr(10)#","all")>
                <!--- Calculate the hash of the information --->
                <cf_hmac hash_function="sha1" data="#fixedData#" key="#variables.awsSecret#">
                <!--- fix the returned data to be a proper signature --->
                <cfset signature = ToBase64(binaryDecode(digest,"hex"))>
            <cfreturn signature>
        </cffunction>
    I don't appear to have any problems with what is being passed in - just the signature that is being created - All the code I've found is for earlier than CF9 and I'm therefore wondering if something has changed - although its more likely that I'm doing something I shouldn't be
    I need to be able to get stuff up there programatically before I start creating URL's so - this is a big first step to overcome

    I've actually found a work around for this problem - I took the Amazon S3 Library for Rest in Java http://developer.amazonwebservices.com/connect/entry.jspa?externalID=132&categoryID=47 and compiled the files below com into a jar - Which was dropped into the coldfusion server/lib
    I then used the examples to build the following coldfusion function
    <cffunction name="putFileOnS3" access="public" returntype="any">
            <cfargument name="localFilePath" type="string" required="true" />
            <cfargument name="contentType" type="string" required="true"  />
            <cfargument name="bucket" type="string" required="true" />
            <cfargument name="objectKey" type="string" required="true" />  
            <cffile action="read"
                file="#localFilePath#"
                variable="content" />  
            <cfscript>
                s3conn = CreateObject("java", "com.amazon.s3.AWSAuthConnection");
                s3conn.init("#variables.awsKey#","#variables.awsSecret#");
                s3object = CreateObject("java", "com.amazon.s3.S3Object");
                s3object.init(content.GetBytes());
                headers = createObject("java","java.util.TreeMap");
                contentTypeArray[1] = "#contentType#";
                headers.put("Content-Type",contentTypeArray);
                response = s3conn.put(bucket, objectKey, s3object, headers).connection.getResponseMessage();
                return response;
            </cfscript>  
        </cffunction>
    Which works perfectly - At last - I've just got to build the rest of the suite now so that we can upload, delete, create URLs etc
    Very relieved I found a work around and part of me is very pleased that good old Java provided the solution having spent 9 years as a Java programmer before starting work in Coldfusion

  • Has anyone got NVrotate to work under Win98SE?

    I installed the latest driver for this card for Win98
    NVrotate is not available as an option in Win98SE
    Display properties-->settings -->GeForce FX5200
    I temporarily moved a drive with WinXP Pro onto this machine.
    NVrotate is an available option in
    Display properties-->settings -->GeForce FX5200
    and works fine.
    But for various compatibility reasons this machine has to been running Win98SE.
    Has ANYONE got NVrotate to work under Win98 ??????
    MSI FX5200  TD128
    Gigabyte GA-7VAX
    AMD 2400+
    17" Analog LCD & 18.1" Analog LCD

    I managed to get it to work, you have to install two files
    the first for the actual python script files.
    the second for the user interface.
    you might have installed the user interface, but without installing python, and that's why its not loading up the application, also make sure you install python to phone memory.
    On my N96 I installed:
    Python for S60 1.4.4
    Python script shell 1.4.4
    if you get an 'update error' when installing its because you have not un-installed all of the old python stuff, open app manager on the handset and un-install all python relating files
    one last thing, install python and the shell to the phone memory (c drive)
    Hope it helps
    Tony

  • I am considering an IPhone5 which I want to "tether" to my laptop and IPad. Does anyone know which network works best. TMobile tell me that they will only tether upto 1GB data, will this be sufficient?

    I am considering an IPhone5 which I want to "tether" to my laptop and Ipad. Does anyone know which network works best. TMobile tell me that they will only tether upto 1GB of data, will this be sufficient?

    I have the AT&T family plan for use with my laptop, iPhone an iPad with 6GB per month. I tend to use the tethering far more often with the MacBook Pro than the iPad (mine has cellular) and I don't think I've had any month where 1 GB would have been sufficient for tethering. Do they have a plan where they will let you pay for additional tethering? If so I would go to at last 2 GB.
    Or look into AT&T.

  • Certificates and Mail - has anyone got them to work recently?

    Hi,
    I've been using Thawte digital certificates with Mail for almost three years and had no problems. Recently one of my certificates was due to expire, so I revoked it and got another one issued. The certificate is installed in my Keychain and everything looks to be correct - Keychain places a small green tick next to it and says 'This certificate is valid' and it is also ticked in the Address Book.
    However, the option to sign and encrypt messages in Mail's compose window has vanished. I can't find a way of getting it to appear so it looks like Mail can't find the certificate.
    I've quit Mail and reimported the certificate, no change. I've tried a self-certified certificate to see if that works - nothing.
    A look on the forums suggests that a number of other people have had similar problems.
    So has anyone found a workaround? This is quite important as I rely on signed email messages when working on large documents.
    Thanks,
    Mike.
    iMac G5 1.5Gb RAM 250 Gb HD   Mac OS X (10.4.6)  

    This is from Mail Help, that perhaps you have not seen:
    "Signing and encrypting email messages
    If you have a personal certificate on your computer, you can send signed messages (including the body of the message and any attachments) to anyone using Mail. Signed messages let your recipients verify your identity as the sender, and provide assurance that the message has not been tampered with in transit. A Signed icon (a checkmark) in the email header indicates your personal certificate is installed in Keychain Access.
    Encrypted messages (which encrypt both the body of the message and any attachments) offer a higher level of security than just signed messages. You can only send encrypted messages when you have certificates stored on your computer for both you and all recipients of your message. The easiest way to get someone's certificate is to have them send you a signed email message. When you view a signed message, Mail automatically imports the person's certificate (or "public key") and stores it in your keychain. You'll know you have the recipient's personal certificate installed in Keychain Access if an Encrypt (closed lock) icon appears next to the Signed icon after you address a new mail message to that person.
    To SIGN and ENCRYPT an email message:
    Choose File > New Message. In the Account pop-up menu, choose the account for which you have a personal certificate installed in your keychain. A Signed (checkmark) icon on the upper-right side above the message text indicates the message will be signed when you send it. To send the message unsigned, click the Signed icon to deselect it. An unsigned ("x") icon replaces the checkmark.
    Address the email. An Encrypt (closed lock) icon appears next to the Signed icon if you have a personal certificate for the recipient in your keychain and indicates the message will be encrypted when you send it. To send the message unencrypted, click the Encrypt icon to deselect it. An open lock icon replaces the closed lock icon.
    For security, encrypted messages are saved in your Sent mailbox in an encrypted format.
    If you don't have a certificate for all the recipients, a dialog appears that allows you to either cancel the delivery of the message or send the message unencrypted.
    If your recipients are using Mail, security headers marked Signed and Encrypted are visible in the messages they receive. If they are using an application that doesn't use signed and encrypted messages, the certificate might be in the form of an attachment. If your recipients save the attachment as a file, they can add your certificate to their keychain.
    Since many mailing lists reject signed messages (because the signature is an attachment), deselect the Signed icon before sending a message to a mailing list.
    See also
    encryption
    security
    digital signature
    Open this for me
    Apple Service & Support article: How to Use a Secure Email Signing Certificate (Digital ID)"
    Hope this answers your problem.
    iMac 1.9 GHz PowerPC G5 1.5 GB DDR2 SDRAM   Mac OS X (10.4.6)   Slot Loading 8X Dual Layer SuperDrive, iSight & Apple Remote; iPod Video

  • Opera 6 and signed applets - Anyone got it to work ?

    Hi,
    im facing the problem that with the new Opera 6, the java plugin is no longer used. Instead Opera uses the default JRE installed on the machine. However, when i load a signed jar in Opera 6 there is NO certificate dialog like "do you want to trust this applet"...it just starts the applet. For this reason, do i have to manually ask for every permission ?
    Try this http://java.sun.com/security/signExample12/signedPluginEx.html demo, it will just throw an security exception, in any other browser (even Opera 5.12) a certificate dialog will appear first.
    BTW: Anyone got the same problem with the <object> tag in opera 6, it always says Applet not found when you leave the parameter codebase="http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,0,0". If you remove it, the applet can be loaded.

    Hi
    Got the same problem. I've just noticed it, so I can't offer any help yet. I am using a certificate that I created myself, using keytool and I placed the policy file in the applet directory. I use the archive tag to access the jar file.
    It works fine on IE6 and NN6. On opera - same problem yo got.
    Now I know that opera doesn't support the archive tag, but the embed tag. So I wonder if you have tried it with embed?
    Another Question: Is there anybody who has successfully installed the 1.4.1 Plugin with Netscape on a Red Hat Linux machine?

  • WMG54G Music Bridge & Windows 7 - Anyone got it to work?

    I have been trying to install the utility program, which includes the driver, for the Linksys WMB54G Music Bridge. So far I have failed to make it work under Win7. After much research on many forums I seem to be able to get the utility to run and according to the Win7 hardware manager the driver is loaded and installed and working correctly. Unfortunately, when I scan for my device it does not appear in the utility and thus I cannot play music through it.
    I should say at this stage that the device control page is fully accessible on my network by using a browser on Win7 so it is 'seen' by the system.
    These are the things I have done:-
    1) Installed the Vista computable version of the utility and driver (V1.3).
    2) Tried to connect to the bridge both by ethernet and WiFi.
    3) Have tried setting all the executable files to run with WinXP (SP2) compatibility and as administrator.
    4) Have tried with UAC and the Windows Firewall off.
    5) Have tried setting a static IP address with other associated parameters.
    6) Have searched many forums but am unable to find anyone using (or failing) with this device on Win7.
    I know this is a long shot as this isn't a terribly popular piece of kit, but when it does work it is excellent. I'm wondering if anyone has heard any information or got this working, or not.
    Maybe I'll just have to content myself with the fact that this device (with the existing Vista driver) doesn't work with Win7.
    Thanks for reading.
    Sol.

    I tried compatibility mode, both XP and Vista, and it still crashes when starting up. Will try to re-install.
    I have an old laptop running XP and I was able to get it working. Here are the issues:
    - Client app won't start on Windows 7. It can't be that complex of an app.
    - Implementation of WEP 128 is bad. I can only get it to work with WEP 64. Hopefully WPA will work, but haven't attempted yet.
    - Crashes router's wireless connection after about 5 minutes of playing time.
    Really disappointed as this thing seemed so cool. I already spend way to much time on this. Will attempt again with a different router. If it fails, will have to RMA...
    Message Edited by bryawn on 06-05-2009 04:54 PM
    (Mod note: Edited for guideline compliance.)
    Message Edited by kent07 on 06-05-2009 05:19 PM

  • RegisterAlarm - has anyone got this to work?

    I'm trying to get the registerAlarm function to work on a real phone, but it only works one time. I want the Midlet to be executed once every 30 sec, but after the first reschedule it stops rescheduling.
    Does anyone have a clue on what's wrong? I do everything according to the book as far as I know.
    I've looked everywhere, and have not been able to find anyone that actually has got this to work. Is it a bug in Midp 2.0? Does registerAlarm work more than once?
    Below is some of my code that SHOULD work (<My midlet...> is replaced with the full name of my midlet class)
    protected void startApp() throws MIDletStateChangeException {
    try {
    //some code...
    destroyApp(false);
    } catch (Exception e) {}
    protected void destroyApp(boolean unconditional) throws MIDletStateChangeException {
    try {
    scheduleAlarm(30000);
    notifyDestroyed();
    } catch (Exception e) {}
    protected void scheduleAlarm(long nextAlarmTime) throws ClassNotFoundException,ConnectionNotFoundException, SecurityException {
    long nextAlarm = new Date().getTime()+nextAlarmTime;
    try {
    long t = PushRegistry.registerAlarm("<My midlet...>", nextAlarm);
    } catch (Exception e) {}
    }

    ...even starting the Midlet manually to force a rescheduled task won't work, but what is strange, is that if I turn the phone completely off and back on again, I can get it to work one more time.
    I'm confused.

  • [Solved] KDE 4.4 Knetworkmanager, has anyone got this to work yet?

    Been trying to get knetworkmanager working on KDE 4.4 and haven't got it to work yet.  Well initially it did work.  Here's the steps I did.
    1) Had network running '/etc/rc.d/network start
    2) Installed 'kdeplasma-applets-networkmanagement'
    3) Commented out interfaces in '/etc/rc.conf' and defined dhcp:
    eth1="dhcp"
    INTERFACES=(!eth0 !eth1 !wlan0)
    4) Set hostname in '/etc/NetworkManager/nm-system-settings.conf':
    [main]
    plugins = keyfile
    [keyfile]
    hostname = pavilion
    5) Added 'networkmanager' to daemon array in '/etc/rc.conf'
    DAEMONS=(syslog-ng crond alsa hal kdm dnsmasq networkmanager cups netfs)
    6) Added 'network' group to user:
    gpasswd -a gen2ly network
    7) Stopped network '/etc/rc.d/network stop'
    8) Brought down interfaces 'ifconfig eth0 down && ifconfig eth1 down && ifconfig wlan0 down'
    9) Started networkmanager
    /etc/rc.d/networkmanager start
    10) Started networkmanager applet (seems to me it was already started but I guess not??)
    11) Got connected to network.
    After reboot however, the networkmanager applet is telling me 'Unmanaged' when I rollover it, and when I click it it says 'Network Management disabled'.  I've tried a couple things (like un-commenting the network devices on the interfaces line and restarting) to no effect.  Doesn't seem I'm able to get it up again.  Anyone else had luck with this?  Did I miss something?
    Last edited by Gen2ly (2010-02-23 22:51:57)

    Ah, anti-destin that is exactly what was needed to be done.  ... Thank you!  Threw be off a bit, it did .
    Off-topic somewhere here now, Ok, a good deal off-topic.. looking at the wiki page for configuring I think the wiki under section, 'Disable interfaces' is erroneous.  Does NetworkManager really parse rc.conf?  I can't think of any reason it would need to.  I'm thinking that NetworkManager would naturally scan and then do dhcp on wired, followed by wireless.  And for those that do a static ip, they can configure the applet.  To test, I put this in my rc.conf:
    #eth0="dhcp"
    #eth1="dhcp"
    #wlan0="dhcp"
    INTERFACES=(!eth0 !eth1 !wlan0)
    And it worked fine.  I'm thinking I could erase them and not have a problem.
    [wiki]Networkmanager#Disable_interfaces[/wiki]
    Last edited by Gen2ly (2010-02-23 06:03:45)

  • Has anyone got Safari to work with Kerberos (SPNEGO) ?

    Has anyone got Safari to with using Negotiate (SPNEGO with Kerberos) when the system is not bound to ActiveDirectory or Macs OpenDirectory?
    I can load Firefox and it works fine, but Safari does not work. I keep hearing that Safari works out of the box, but its looks like its somehow tied to AD or Macs Opendirectory and its deployment of Kerberos.

    I am having the same problem and checked out the Apple Discussions for a solution.
    I too am meticulous with my addresses.
    Seeing no solution I went back to testing.
    I have tried:
    From Shrewsbury
    To Telford
    The result was a trip in the US taking 14 hours.
    Then I tried:
    From Shrewsbury UK
    To Telford UK
    This worked.
    When on the "Get Directions" screen there is a "Globe" icon by the "Space" icon. Pressing this brings up "English (US)". Press again and you get "English (UK).
    Any ideas?
    When I use the "Contacts" to get the Start and End fields the iPhone is bringing up the correct address but with "United States" at the end of the address.
    Again any ideas?
    In my Address book I never use the "Country" field as all my contacts are in the UK. I wonder if this is the problem and the iPhone is defaulting to US in the absence of no "Country"?
    Help!

  • Has anyone got Python to work on the N96???

    Has anyone got Python to wok on the N96?
    I have downloaded and installed the latest edition 3rd 1.4.4 i think. it goes on the phone without any problems.
    However when trying to use app that use python specifically pyPiow at the moment the app goes on the phone but nothing happens when i try to open it!
    is it somthing i am doing wrong, where go i install the pictures, or the apps for that matter, can the apps go on the mass memory where they are now or do they have to go on the very small phone memory?!
    does current python work at all on the n96
    has anyone had any joy?
    please help!
    cheers

    I managed to get it to work, you have to install two files
    the first for the actual python script files.
    the second for the user interface.
    you might have installed the user interface, but without installing python, and that's why its not loading up the application, also make sure you install python to phone memory.
    On my N96 I installed:
    Python for S60 1.4.4
    Python script shell 1.4.4
    if you get an 'update error' when installing its because you have not un-installed all of the old python stuff, open app manager on the handset and un-install all python relating files
    one last thing, install python and the shell to the phone memory (c drive)
    Hope it helps
    Tony

  • Anyone got Poser 8 working in Photoshop CS5/5.5 3D?

    Has anyone got Poser 8 figures to import into PS CS5 extended?
    I understand CS5 doesn't like Collada files and now OSX Lion won't open Poser.
    I know obj will show up in PS, but not always with the materials.
    Any one figured this out yet, or do I have to wait for Poser 9 and PS CS6?

    Yes, I created a PDF:
    https://acrobat.com/#d=ffzYf2nA5yypUrknBPFOMw
    And a video that shows you how to do this.
    Let me know if you have any other questions,
    Daniel

  • Hotmail Plus' SMTP Server, anyone got it to work?

    HI All,
    Well, my gf just got a new macbook after I finally converted her to a mac, but now I am trying to set up her Hotmail plus account in Mac Mail. (because entourage is too slow)
    Since microsoft is now offering a pop3/smtp service for their plus members, I decided to upgrade her account and pay the 20 bux.
    so far so good.
    Obviously, when I try to set up her hotmail account in outlook on windows, or in entourage in mac, it works perfectly.
    Only thing is, I want to use it in mac mail.
    so I got the necessary info from microsoft (after 20 emails back and forth, and them pretending not to understand my question...)
    POP: pop3.live.com (port 995)
    SMTP: smtp.live.com (port 25)
    Note: make sure you check the box that indicates that your outgoing server requires authentication (in most mail clients this is not checked by default).
    Username: your full email address
    Password: your Windows Live ID password
    After setting up in mac mail with this info, I can now receive emails perfectly.
    The only problem is that I cannot send any.
    the smtp server seems dead, or non existent.
    So my question is, is there anyone out there who got this to work? in mac mail or any other pop3 program?
    I think its not a port problem, as I send my own mail on my own smtp server on the same router using port 25 as well.
    Lastly, I would like to clarify that I do understand that hotmail *****, but moving to gmail or anything like that is not an option for her, its too big a hassle atm, so please do not respond if that was going to be your response
    Ok, I really hope someone out there made this work.
    Cheers, and thanks for any help/suggestions in advance.

    I have exactly he same problem. Trust me, I know how you feel about switching. When I saw the green star I thought I finally stumbled across the answer. Don't know why you marked the question answered. I have tried all the different ports, none of which worked. I'm so looking forward to solving this one.

  • E4200 + Vigor 120 ADSL Modem. Has anyone got this to work?

    Hi. I am in the UK. I am using the Vigor 120 in its out of the box configuration which passes a PPPoA connection through as a PPPoE giving the router complete control. It works perfectly with my old DLink DIR 635 cable router.
    The E4200 cannot get an IP address from my ISP. I have tried many hard resets.
    Has anyone actually got these two working together with an ISP that uses PPPoA as it's native standard. If so could you let me know the modem and router settings you used.
    Many thanks.

    Hi, I'm Not in the UK but have the Draytek vigor120 and LinksysE4200 set up,
    Don't quote me on this but I am pretty sure the UK and the New Zealand(where I am) have the same firmware.
    What I did was plug the draytek into the wall jack then I plugged the ethernet cable into my computer for a time,
    When plugged in launch your browser, navigate to 192.168.1.1(default unless you've changed it) then there should be a page there called Internet options with a PPPoa option, make sure it is configured PPPoA, enter your logon info(optional, doesn't make a difference uless you plan to use the draytek by itself sometimes) then select passthrough on WAN link(or something similar) which is located down the bottom of that page (will grey out pretty much all options, then save it.
    Unplug the ethernet from the computer and plug it into the E4200(still connected to the WAN port of the draytek) then plug a ethernet cable(second one) from a computer into port 1. navigate to 192.168.1.1(default for linksys) and select PPPoE out of the options at the top of the page, then fill in your ISP details such as the username and password, click save and then test it(should work-did for me at least)
    dont forget to change the wireless security to manual as the defualt is not very secure, think about a MAC address filter if you dont have a huge number of electronics connecting to it.

  • Has anyone got AST to work on a Lion Server?

    For the Apple Service Providers we need to run Apple Service Toolkit from a server. Has anyone gottten AST to work on a Lion Server? We have 3 locations and have all tried and have gotten different out comes but none have worked. We have chatted with Apple Service with no help.

    I have it installed on a Lion server machine and the only way I have been able to get the client machines to see it was to plug both the server machine and the client into the same switch. Netbooting across subnets seems almost impossible.
    I am also waiting to hear back from the AST support people because now, when I netboot a client machine to the gateway, it says "There is a problem with the Gateway Manager." When I log into the server and open Gateway Manager, it just sits there forever saying "Looking for gateway controller."
    Currently I'm running AST 1.0.9 and I understand that version 1.1.1 is actually the latest, but I cannot find it ANYWHERE on Apple's site nor in GSX. In fact, since they switched over to the new GSX domain, the ONLY thing I can find related to AST is a small article describing how it works. No downloads, no links, no nothing.
    Any idea where to find the latest version? I can't even find a link to it with a simple Google search. The AST support guy said to search within GSX, which found nothing but the article I mentioned.

Maybe you are looking for

  • Getting Incorrect data type error while trying to do a CAST in table

    Getting an error while trying to compile the following piece of code CREATE OR REPLACE PACKAGE BODY A_pkg AS FUNCTION A(O_error_message IN OUT varchar2) RETURN BOOLEAN IS --Declaring the local variables and CURSORs used in the program unit L_attrib_t

  • Trying to add photo attachments

    Hi, I'm not sure what changed, but recently when I click on add attachments while sending an email via gmail, my Aperture library doesn't show up at all.  I have tried going through applications and into Aperture that way, but still no joy.  The only

  • SAP SRM - Create Purchase Order - Item Order

    Dear SAP friends, When creating a PO (Process Purchase Order) by inserting products from catalog (SAP MDM), what is the standard system behavior on what relates to ordering products in the purchase order? I can´t find this answer. It seems that it´s

  • CS5 Web Prem license agreement keeps popping up

    Need some help, I just purchased a copy of CS5 Web Prem and installed it on my Dell running Windows 7. Install went smooth no problems at all. I entered my serial number and it loaded all the programs and finished. Now when ever I try and run a progr

  • Why won't my newly installed Premier Pro CS5.5 start?

    I just had to have my PC overhauled with a new motherboard and decided to upgrade my Adobe software while I was at it. Installed the Production Suite today and when I try to start Premier Pro CS5.5 it acts like it is starting up, brings up the worksp