Has somebody managed to get cpufreqd to work in duke(2007.05)?

I have attempt several times to get it to work, but it fails.
And how can i se if it works correktly?
I have an core duo e6400 cpu

fernux wrote:I have attempt several times to get it to work, but it fails.
Any error messages? It's working fine for me (used the wiki page to set it up: http://wiki.archlinux.org/index.php/SpeedStep)
fernux wrote:And how can i se if it works correktly?
You can look at your current governor, current frequencies, available frequencies, scaling driver, etc... in /sys/devices/system/cpu/cpu{0,1,...}/cpufreq
fernux wrote:I have an core duo e6400 cpu
Are you using the acpi_cpufreq module?
Last edited by arbrown (2007-06-05 04:16:54)

Similar Messages

  • Has anyone managed to get Hotmail to work with Mail?

    Hotmail aka Windows Live Mail.
    Has anyone got Mail 3 in Leopard to work with Win Live/Hotmail?
    If so, I would love to hear about how you did so, as I would like to use Mail to check e-mail. =)
    Thanks.

    How to Access Windows Live Hotmail with Mac OS X Mail - About Email
    http://email.about.com/cs/macosxmailtips/qt/et042503.htm

  • Has anyone managed to get a PS3 Controller to work with OSX Lion?

    Hi,
    I wanted to connect my PS3 controller to my iMac (late 2011) using bluetooth but have been unable to do so. It will connect for a brief time but then it will lose connect as it has not paired. It also asks me for a pairing code. I have tried 0000 and this does not work. I have searched the internet and it seems this is a common issue. Has anyone managed to get it working?
    Does anyone know if Apple plan to fix the issue with a forthcomming update?
    Cheers,
    Tim

    There are numerous threads on this, please use the "More Like this" tool, you will find it on the right. I'm not sure if anyone has any solutions but that is the logical place to start.

  • Has anyone managed to get HP Warranty Information into SCCM?

    Has anyone managed to get HP Warranty Information into SCCM?
    I have tried a few scripts that I found on the net but none of them seem to work as I believe HP updated there site this year..

    OK, I played around a bit (scripting from a web page isn't way beyond me) but... a few caveats.  My lab isn't available right now; so all I could test was that the script ran on an HP laptop.  A single HP laptop.  and created the regkeys in
    (in my case) HKLM\software\wow6432node\CompanyName\WarrantyInformation.  So... one single test on one single workstation, and no testing of the mof edit means... I'll need your help to confirm it works.
    Anyway, below is the script.  Other caveats:  It drops a log, and then continuously adds to the log file in %temp% (of the SYSTEM, which is using %windir%\temp).  So depending upon what you want/need--you may want to change the EnableLogging
    = True to EnableLogging = False (once you confirm it works on all/most of your boxes).  The other caveat, of course, is to change the sCompanyname = to be your Company Name; although I suggest you don't have spaces or special characters in it.  Short
    'n' sweet.  Then, naturally, once you have a box with the regkeys, use Mark Cochrane's RegKeytoMof 3.0 or higher to build the mof edits for you to paste to the bottom of your configuration.mof and sms_def.mof.  In that blog above Eric Schloss was
    using DCM as the delivery method to deliver the script to populate the regkeys--that worked for him and I see no reason it wouldn't work for everyone--so once you've tested the script interactively from a psexec -s -i cmd.exe shell on an hp box (to see it
    create the regkeys) I'd make a DCM like Eric did and target a collection with a few HP laptops or desktops and confirm it works via the DCM. 
    Anyway, give this a try--again... only tested on 1 single, lonely little HP laptop.  Needs a bigger test base!
    Edit:  and... even using Regkeytomof sometimes regkeys can be tricky.  If the mof edit doesn't work right to pull the data back, post what you've added.  someone here can usually spot if there's something not right about it and help you fix
    the mof edit.
    Edit #2: removed bad space, and bad copy/paste job as discovered by sevengs.  Thanks!
    on error resume next
    EnableLogging = True
    sCompanyName = "CompanyName"
    Set oShell = CreateObject("wscript.Shell")
    Set fso = CreateObject("scripting.filesystemobject")
    strTemp = oshell.ExpandEnvironmentStrings("%temp%")
    If EnableLogging Then
    Set oLogFile = fso.OpenTextFile(strTemp & "\WarrantyInfo.log", 8, True)
    oLogFile.WriteLine "*********************************************************"
    End If
    WriteLog "Beginning warranty information lookup."
    sWebServiceHost = "http://h20000.www2.hp.com/bizsupport/TechSupport"
    sWebServiceURL = "WarrantyResults.jsp"
    sWebService = sWebServiceHost & "/" & sWebServiceURL
    'Get the system's serial number from WMI
    Set oWMIService = GetObject("winmgmts:\\.\root\cimv2")
    Set colItems = oWMIService.ExecQuery("Select SerialNumber from Win32_BIOS",,48)
    For Each objItem in colItems
    sSerialNumber = objItem.SerialNumber
    Next
    WriteLog "Serial number of system is " & sSerialNumber
    'Get the Product ID from WMI
    Const wbemFlagReturnImmediately = 16
    Const wbemFlagForwardOnly = 32
    lFlags = wbemFlagReturnImmediately + wbemFlagForwardOnly
    strService = "winmgmts:{impersonationlevel=impersonate}//./root/HP/InstrumentedBIOS"
    strQuery = "select * from HP_BIOSSetting"
    Set objWMIService = GetObject(strService)
    Set colItems = objWMIService.ExecQuery(strQuery,,lFlags)
    sProductNumber = ""
    For Each objItem In colItems
    If objItem.Name = "SKU Number" Then
    sProductNumber = objItem.Value
    End If
    If objItem.Name = "Product Number" Then
    sProductNumber = objItem.Value
    End If
    Next
    If Len(sProductNumber) = 0 Then
    WriteLog "ERROR: Product Number could not be determined."
    oLogFile.WriteLine "*********************************************************"
    oLogFile.Close
    WScript.Quit(9)
    Else
    WriteLog "Product number of the system is " & sProductNumber
    End If
    Set colItems = oWMIService.ExecQuery("Select AddressWidth from Win32_Processor",,48)
    For Each objItem in colItems
    sAddressWidth = objItem.AddressWidth
    Next
    WriteLog "Operating system is " & sAddressWidth & " bit."
    'Define the parameters string to send to the web site
    sParameters = "nickname=&sn=" & sSerialNumber & "&country=US&lang=en&cc=us&pn=" & sProductNumber & "&find=Display+Warranty+Information+%C2%BB&"
    WriteLog "Opening the web site URL " & sWebService & "?" & sParameters
    'Define and call the web site
    Set oHTTP = CreateObject("Microsoft.xmlhttp")
    oHTTP.open "GET", sWebService & "?" & sParameters, False
    'oHTTP.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
    oHTTP.send
    If oHTTP.Status = 200 Then
    WriteLog "Successful response from the web site."
    'WriteLog oHTTP.ResponseText
    Process oHTTP.ResponseText
    Else
    WriteLog "ERROR: the web site returned status code " & oHTTP.Status
    WriteLog "Returning exit code 1."
    nExitCode = 1
    End If
    If EnableLogging Then
    oLogFile.WriteLine "*********************************************************"
    oLogFile.Close
    End If
    WScript.Quit (nExitCode)
    Function Process (HTML)
    WriteLog "Processing the HTML returned from the site."
    intSummaryPos = InStr(LCase(html), "serial number")
    If intSummaryPos = 0 Then
    Process = ""
    Exit Function
    End If
    intSummaryTable1Start = InStrRev(LCase(html), "<table", intSummaryPos)
    intSummaryTable1End = InStr(intSummaryPos, LCase(html), "</table>") + 8
    intSummaryTable2Start = InStr(intSummaryTable1End, LCase(html), "<table")
    intSummaryTable2End = InStr(intSummaryTable2Start, LCase(html), "</table>")
    table1 = getStr(intSummaryTable1Start, intSummaryTable1End, html)
    table2 = getStr(intSummaryTable2Start, intSummaryTable2End, html)
    const HKLM = &H80000002
    Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\default:StdRegProv")
    sKeyPath = "SOFTWARE\" & sCompanyName & "\WarrantyInformation"
    WriteLog "Registry key path is HKLM\" & sKeyPath
    oReg.CreateKey HKLM,sKeyPath
    WriteLog "Processing the first table from the web page."
    arrGeneral = processTables(table1,1)
    'arrGeneal should be in the form Serial Number, Product Number, Product Line, Product Description, Warranty Check Date
    WriteLog "Processing the second table from the web page."
    arrContracts = processTables(table2,2)
    'arrContracts should be in the format Warranty Type, HW Warrenty Start Date, HW Warranty End Date, HW Warranty Status, Setup Warranty Start Date, Setup Warranty End Date, Setup Warranty Status
    WriteLog "Setting registry values."
    WriteLog "SerialNumber is " & arrGeneral(0)
    oReg.SetStringValue HKLM, sKeyPath, "SerialNumber", arrGeneral(0)
    WriteLog "ProductNumber is " & arrGeneral(1)
    oReg.SetStringValue HKLM, sKeyPath, "ProductNumber", arrGeneral(1)
    WriteLog "SerialLine is " & arrGeneral(2)
    oReg.SetStringValue HKLM, sKeyPath, "ProductLine", arrGeneral(2)
    WriteLog "SerialDescription is " & arrGeneral(3)
    oReg.SetStringValue HKLM, sKeyPath, "ProductDescription", arrGeneral(3)
    WriteLog "WarrantyCheckDate is " & CStr(CDate(arrGeneral(4)))
    oReg.SetStringValue HKLM, sKeyPath, "WarrantyCheckDate", CStr(CDate(arrGeneral(4)))
    WriteLog "WarrantyType is " & arrContracts(0)
    oReg.SetStringValue HKLM, sKeyPath, "WarrantyType", arrContracts(0)
    WriteLog arrContracts(1)
    WriteLog "HardwareWarrantyStartDate is " & CStr(CDate(arrContracts(1)))
    oReg.SetStringValue HKLM, sKeyPath, "HardwareWarrantyStartDate", CStr(CDate(arrContracts(1)))
    WriteLog "HardwareWarrantyEndDate is " & CStr(CDate(arrContracts(2)))
    oReg.SetStringValue HKLM, sKeyPath, "HardwareWarrantyEndDate", CStr(CDate(arrContracts(2)))
    End Function
    Function getStr(startpos, endpos, data)
    Dim tmp
    'Get the substring
    tmp = Mid(data, startpos, endpos - startpos)
    ' Remove end of line
    tmp = Replace(Replace(Replace(tmp, VbCrLf, ""), vbCr, ""), vbLf, "")
    getStr = tmp
    End Function
    Function processTables(table, ttype)
    ' Remove HTML Tags and replace with "|"
    Set re = New RegExp
    re.Pattern = "<[^>]+>"
    re.IgnoreCase = True
    re.Global = True
    table = re.Replace(table, "|")
    table = Replace(table, "&nbsp;", "")
    table = Replace(table, ":", "")
    table = Replace(table, " ", "")
    ' Remove excess |
    re.Pattern = "[|]+"
    table = re.Replace(table, "|")
    ' Clean up a bit more
    re.Pattern = "\|\s+\|"
    table = re.Replace(table, "|")
    ' Remove | from start and end of string
    re.Pattern = "^\||\|$"
    table = re.Replace(table, "")
    arrTable = Split(table, "|")
    arrTmp = ""
    If ttype = 1 Then ' General Info Table
    i = 1
    For Each cell in arrTable
    Select Case LCase(Trim(cell))
    Case "serial number"
    sSerialNumber = arrTable(i)
    Case "product number"
    sProductNumber = arrTable(i)
    Case "product line"
    sProductLine = arrTable(i)
    Case "product description"
    sProductDescription = arrTable(i)
    Case "date of warranty check"
    sCheckDate = arrTable(i)
    End Select
    i = i + 1
    Next
    arrTmp = sSerialNumber & "|" & sProductNumber & "|" & sProductLine & "|" & sProductDescription & "|" & sCheckDate
    ElseIf ttype = 2 Then ' Contract Info
    i = 0
    For Each cell in arrTable
    cell = Replace(cell," ","")
    if Instr(lcase(trim(cell)),"wty hp hw maintenance onsite support") > 0 then
    cell = "wty hp hw maintenance onsite support"
    end if
    if Instr(lcase(trim(cell)),"wty hp hw maintenance offsite support") > 0 then
    cell = "wty hp hw maintenance offsite support"
    end if
    if Instr(lcase(trim(cell)),"wty hp support for initial setup") > 0 then
    cell = "wty hp support for initial setup"
    end if
    Select Case LCase(Trim(cell))
    Case "warranty type"
    sWarrantyType = arrTable(i+8)
    Case "wty hp hw maintenance onsite support"
    sHWStartDate = arrTable(i+1)
    sHWEndDate = arrTable(i+2)
                        sHWStatus = arrTable(i+3)
    Case "wty hp hw maintenance offsite support"
    sHWStartDate = arrTable(i+1)
    sHWEndDate = arrTable(i+2)
    sHWStatus = arrTable(i+3)
    Case "wty hp support for initial setup"
    sISStartDate = arrTable(i+1)
    sISEndDate = arrTable(i+2)
    sISStatus = arrTable(i+3)
    case else
    End Select
    i = i + 1
    Next
    arrTmp = sWarrantyType & "|" & sHWStartDate & "|" & sHWEndDate & "|" & sHWStatus & "|" & sISStartDate & "|" & sISEndDate & "|" & sISStatus
    End If
    ' Remove | from start and end of string
    re.Pattern = "^\||\|$"
    arrTmp = re.Replace(arrTmp, "")
    'wscript.echo arrTmp
    arrResult = Split(arrTmp, "|")
    Set re = Nothing
    processTables = arrResult
    End Function
    Function WriteLog (sText)
    If EnableLogging Then
    oLogfile.WriteLine Now() & " " & sText
    End If
    End Function
    Standardize. Simplify. Automate.

  • Has anyone managed to get a 3TB dynamic disk on Windows 2003 Server?

    I just got a pair of new 3TB disks that I wanted to put on my Windows 2003 server enterprise x64 system, SP2, all updates installed.
    When I first tried to convert to dynamic, I got the error "The operation did not complete" as described in this KB article
    http://support.microsoft.com/kb/826823
    It says there is a patch, but there is not one for x64, just x86 and ia64
    I found another technet discussion here:  https://social.technet.microsoft.com/Forums/en-US/winserverfiles/thread/cb62238c-b3d0-4989-b45a-ae6de6701a7b?stoAI=10
    However its best suggestion is to use a product from AOMIE, but I tried that and it didn't even recognize the disk.  It also suggests that one needs a better version of diskpart.exe and to try to the 32 bit version.  Anyone have any experience
    with that?
    I also tried creating moving the disk to Windows 7 x64, making it dynamic there, but when I move the disk back to 2K3 it does not recognize it, and goes back to a 2TB partition.  I also saw something about needing a 512 block size for 2K3, but W7 does
    not allow anything smaller than 1K.

    Hi,
    During my research, if found the following artcle which also mentioned a 3TB disk should be supported in Windows 2003 SP1:
    Has anyone managed to get a 3TB dynamic disk on Windows 2003 Server?
    http://social.technet.microsoft.com/Forums/en-US/winserverfiles/thread/a720ae72-0c04-44dd-94c0-2e6aecce530e
    So I contact the author about this issue. He said it could be caused if your hard disk is a 512e drive as the 3TB drives on the market today are normally 512e drives.
    However manufacturers stopping identifying this, and if the controller is old, FSUtil will not able to identify a 512 drive but recognized it as a normal 512n drive.
    Thus please provide the drive model so we could search on manufacturer's website for exact information.
    Also please paste the screenshot in your reply which Satish mentioned if available.
    In addition, here is an article Robert provided:
    http://www.windowsitpro.com/article/what-would-microsoft-support-do/support-advanced-format-hard-drives-141584

  • Has anyone managed to get play count/last played to sync?

    I can live with the podcasts being borked, it's prompted me to use an app (hello iCatcher!) which I had been planning to do for a while. I'm still learning its ways, but it feels a lot more comfortable already.
    The thing that I absolutely cannot understand is how ratings, playcount and last played times are not synchronising. I've a number of smart playlists based on these attributes and I haven't been able to get them to sync up since I enabled Match on my iPhone.
    So I've got an iPhone which I sync with iTunes on a Mac. Everything's patched up to the latest version.
    Has anyone successfully had any successful syncs? The smart playlists are just a joke - I'd expect the track listings to be comparable between devices, but they just aren't.
    This is a beta product which some glaring functionality holes. How Apple can think it's worth paying for is beyond me. The smart playlist functionality has been working seamlessly for years on iTunes ... but it's broken. And I paid for the product that broke it. I'm feeling very let down.

    I haven't managed to get any playcount, ratings etc to sync. There are so many issues with this version of iTunes Match I cannot believe Apple released it.
    The order of tracks in playlists doesn't match iTunes on my Mac, selecting a folder of playlists in iTunes on my iPhone hangs the phone and sometimes crashes it, metadata doesn't sync, some albums are split into 2, etc.
    Looking forward to an update soon.

  • Anyone manage to get ColdFusion to work under Apache on OS X 10.10 Yosemite?

    Hi all I'm having great difficulty getting ColdFusion10 to work under Apache with OS X 10.10 Yosemite.
    Here is a description of what I've faced and a little of what I've done to solve my problem
    Problem 1
    Apache httpd.conf file gets messed up
    Solution: copy original httpd.conf file from /etc/apache2/original/ to /etc/apache2/
    Problem 2
    No Java Virtual Machine is installed!
    Solution: install Java (version 6 or 7 is better) you may only be able to install version 8
    Problem 3
    ColdFusion doesn't know where your Java installation is so find and update your ColdFusion configuration files
    /Applications/ColdFusion10/cfusion/bin/jvm.config
    /Applications/ColdFusion10/cfusion/bin/coldfusion
    /Applications/ColdFusion10/cfusion/runtime/bin/wsconfig_jvm.config
    change the source to whatever your current Java is and where it's located
    for example if you have version 7 installed:
    /Library/Java/JavaVirtualMachines/jdk1.7.0_45.jdk/Contents/Home
    if you have version 8 installed:
    /Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/Home
    Problem 4
    INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: YOUR PATH HERE!
    Solution:Still working on this one!

    I think you should try Pacifist http://www.charlessoft.com/
    It's a .pkg installer for OS X, I used it several times to install software that Apple's Installer can't install. After installing Xsan 1.0 from your CD, just launch Apple's software update to upgrade to version 1.3. I think it should work (I didn't try it with Xsan, but this procedure works with other software).
    Khafaga

  • Has anyone managed to get an iPhone to work with BoostMobile?

    I've wanted an iPhone for years now but don't feel it will be made available through Boost for purchase so I'm looking for options to somehow make it happen. BoostMobile uses the Sprint/Nextel networks for its customers. I like having no contract and unlimited everything, and I worked my way through the shrinkage program down to $35.00 a month. Any suggestions on how to make this happen would be extremely helpful. Thanks.

    If I read your question correctly you want to buy an iPhone unlocked without a contract? If you do go here http://store.apple.com/us/browse/home/shop_iphone/family/iphone/iphone4s and select "Or get iPhone unlocked and contract-free"

  • Has anyone managed to get an XA datasource working with Oracle?

    In Sun j2sdkee 1.3.1 you must use XA-Datasources when you are using more than one
    datasource in one transaction. So I declared my Oracle datasource to be a XA-Datasource.
    The container is able to load and initlialize the Oracle XADataSource clasess. But when I first try to
    open a connection with getConnection() I get an Exception:
    javax.transaction.xa.XAException
    at oracle.jdbc.xa.client.OracleXAResource.start(OracleXAResource.java:154)
    at com.sun.jts.jta.TransactionState.startAssociation(TransactionState.java:232)
    at com.sun.jts.jta.TransactionImpl.enlistResource(TransactionImpl.java:145)
    at com.sun.enterprise.distributedtx.J2EETransaction.enlistResource(J2EETransaction.java:252)
    at com.sun.enterprise.distributedtx.J2EETransactionManagerImpl.enlistResource(J2EETransactionManagerImpl.java:131)
    at com.sun.enterprise.distributedtx.J2EETransactionManagerOpt.enlistResource(J2EETransactionManagerOpt.java:87)
    at com.sun.enterprise.resource.PoolManagerImpl.registerResource(PoolManagerImpl.java:147)
    at com.sun.enterprise.resource.PoolManagerImpl.getResource(PoolManagerImpl.java:128)
    at com.sun.enterprise.resource.JdbcDataSource.internalGetConnection(JdbcDataSource.java:137)
    at com.sun.enterprise.resource.JdbcDataSource.getConnection(JdbcDataSource.java:111)
    I'm using classes12.zip from Oracle 9i (which supports jdk1.3.x) and an Oracle 8.1.6 database server.
    Is there anything I have to configure on the database server? The JAVA_XA package is installed on the
    server.
    Thanks for any help
    Helmut

    I used classes12.jar with a 9.2 database without any problems. JDBC calls, XA Datasources as well as CMP calls worked fine.
    I think the ojdbc14.jar is required for use with a 1.4 JDK.
    Of course, there might be features in 9.1 that might require the new jar.
    Just mentioning that the jar did not pose me problems. Adding this information so it might help the OP narrow down the source of error.

  • Has anyone managed to get Authorization working with JAAS from CusLoginMod?

    Hi everybody,
    I am on a standalone oc4j 10.1.3.1.0
    I want to be able to access a private resource using form based authentication
    and I would like to use JAAS from with a custom login module.
    The authentication part works just fine but the authorization doesn't seem to happen.
    Both login() and commit() from my LoginModule are called and after authentication takes place, the subject is populated with the right Principals, in my case "testers".
    This Subject then it should be matched against the <security-role> defined in my application's web.xml
    This is the part from my application's web.xml which holds the security information.
    <security-role>
    <description>Online User</description>
    <role-name>testers</role-name>
    </security-role>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>access to the private application</web-resource-name>
    <url-pattern>/faces/user/*</url-pattern>
    </web-resource-collection>
    <!-- authorization -->
    <auth-constraint>
    <role-name>testers</role-name>
    </auth-constraint>
    <user-data-constraint>
    <transport-guarantee>NONE</transport-guarantee>
    </user-data-constraint>
    </security-constraint>
    <login-config>
    <auth-method>FORM</auth-method>
    <form-login-config>
    <form-login-page>protected.htm</form-login-page>
    <form-error-page>error.jspx</form-error-page>
    </form-login-config>
    </login-config>
    Has anyone faced this scenario before?
    Any advices much appreciated
    thank you.

    I can't see what am I missing if I'm missing something.
    This is my orion-application.xml
    <orion-application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/oracleas/schema/orion-application-10_0.xsd">
    <jazn provider="XML" jaas-mode="doAsPrivileged" location="">
    <property name="role.mapping.dynamic" value="true"></property>
    <property name="custom.loginmodule.provider" value="true"></property>
    </jazn>
    <jazn-loginconfig>
    <application>
    <name>JAAS</name>
    <login-modules>
    <login-module>
    <class>jaas.JAASLoginModule</class>
    <!-- <class>jaas.SampleLoginModule</class> -->
    <control-flag>required</control-flag>
    <options>
    <option>
    <name>debug</name>
    <value>true</value>
    </option>
    <option>
    <name>log_level</name>
    <value>ALL</value>
    </option>
    </options>
    </login-module>
    </login-modules>
    </application>
    </jazn-loginconfig>
    </orion-application>

  • Has anyone managed to get Authorware 7 Content Working on the Web

    Hi I get this message when I try to get the web player working
    Can anyone help!!
    [email protected]

    I used classes12.jar with a 9.2 database without any problems. JDBC calls, XA Datasources as well as CMP calls worked fine.
    I think the ojdbc14.jar is required for use with a 1.4 JDK.
    Of course, there might be features in 9.1 that might require the new jar.
    Just mentioning that the jar did not pose me problems. Adding this information so it might help the OP narrow down the source of error.

  • Has ANYONE managed to get OS2 working with WiFi and bridge?

    I've scoured the forum, and tried everything - right now, its a cute, flat paperweight.

    I have!
    If you are having the same problems as me, on update, I had no wifi connections at all - didn't find a single one, despite the area being overrun with wifi networks.
    Connect your paperweight, I mean, Playbook, to the Desktop Software, take a backup, then do a security swipe and reset the whole thing.
    With mine, as soon as it came back on after the swipe the wifi was working correctly.
    I re-connected it to the Desktop Software, accepted any updates it was offering, then restored my backup from this morning.
    Hey presto!  A fully functioning Playbook!
    Good luck!

  • Has anyone managed to get icloud to synchronise properly with outlook calendar?

    I have an iphone 5 and am running outlook 2010 on windows 7 32 bit.
    I can get icloud to do the intial upoload of the calendar but then after that it won't synchronise new calendar entries.
    The phone and icloud syc, but icloud won't sync with outlook whether the entry is put in outlook or in icloud.
    I have spoken with Apple support and over many weeks have de-installed and re-installed icloud several times.
    I have sent various diagnostiocs and screen shots.
    The icloud outlook addin does not appear in the outlook add-ins section, although I can see what might be the add-in sitting on the c drive in the apple folder.
    Support have also told me that there is no way to download the icloud add-in seperately.
    Apple support are now telling me that I need to de-install and re-install outlook to try and get the add-in to install correctly.
    That would be a real pain and I can see on this forum that other people have already tried that without success.
    They also say that if that doesn't work I will need to completely re-install the OS.
    I don't think they know what the problem is and are just trying anything that might work.
    I really don't want to lose all my business data from outlook and certainly don't want to trash my whole PC.
    Has anyone any idea where the problem might be?
    Many thanks

    Do I gather by the lack of answers that nobody has?

  • Has anybody managed to get their money back?

    I purchased itunes match.  It didn't work.  I called and actually spoke to tech support.  The guy told me to change my Apple ID.  He walked me through the process of changing it on all computers and devices.  Voila, the iTunes Match I'd paid for started working.  BUT then I found that the 25 gigs of storage I'd had in the Cloud was all gone!  I chatted with another tech support.  This person told me to go back to my old ID.  Then I'd get my gigs back.  I did.  Now, the iTunes match I'd paid for was all gone.  No fair!

    Right, I think we're getting there, but I must warn you that this probably isn't going to be all that easy, and I haven't had recent experience with using two Apple ID's within iTunes, so my advice may not be absolutely correct.
    If I understand correctly, you have one Apple ID that you have previously made App purchases with, and then another that you have used for iTunes match. Do you use the new one for anything else?
    Your problem is basically caused by your using a different Apple ID for match. If you had used your old ID then it would all work fine. However, I am a little concerned about any solution using the two.
    As I say, I haven't had experience with this, but I imagine that the problem is caused by the fact that Apps will only update if you are signed in with that ID, whilst Match will only work when you are signed in with that one.
    One solution that you will probably not like, but would work, would be to write off the iTunes Match subscription you have made and re subscribe using your old ID. You would of course also have to rematch your library. I'm not recommending it, but it's an option. It would at least resolve the issue once and for all.
    You could keep on logging in with each account to update Apps, but I think that would get very messy.
    I am a bit concerned with the situation regarding your iPhone and iPad. I have heard of issues where people have found them blocked from match for a period due to changing Apple ID's. I don't know exactly what causes it. It would be a shame if you couldn't use Match on those devices though.
    I don't think I'm going to be much more help really, but at least I think we have got to the bottom of what your problem is. Hopefully someone else on here may be able to give some better solutions.

  • Firefox is unresposive when MS Outlook is also open most of the time. I need to click Outlook or Task Manager to get the process working again.

    I operate with MS Outlook & Firefox open all the time. After a few minutes, Firefox seems to "go to sleep". I can no longer go to a different window in Firefox or see an open Outlook window. Sometimes, I can click on the opposite window (Outlook or Firefox) and everything works right for one command and other times I have to do a CNTL ALT DELETE to open task manager and then click on the application I want to switch to in order to go to the other application.

    see item #32 closing firefox properly
    * http://dmcritchie.mvps.org/firefox/firefox-problems.htm#close_firefox

Maybe you are looking for

  • Storage location value is not adopting fron PO into GR

    Hi All, I'm making Goods receipt with reference to Purchase Order. For few materials the storage location value is not adopting fron PO into GR. It's in disable mode. So i'm not able to maintain the stock at storage location level. What could be prob

  • Hi InDesign CC 32bit / 64 bit in one Package?

    Hi everybody, I am using the manual bundling tool which includes the manifest file. I have windows builds for 32 and 64 bit, but I do not understand how to create a bundle that contains both and that only copies the files that are labelled with the p

  • Fireface 800 vs. Fireface 400

    Anybody have experience with both of these interfaces? Other than the sheer number of I/O, what's the difference between them? Is the audio quality the same? I seem to recall some problems with the 400, but I would think those have probably been solv

  • Need to deactivate delete option in SP02

    Hi All, Please help me with the steps how we can deactivate delete option in SP02 T-Code. I have tried at object level & Screen varient but no result. Regards, Venu

  • Building Flex Application with Flex Builder installed in a remote server

    Building Flex Application with Flex Builder installed in a remote server and different developers accessing it via VNC etc I have a requirement as below..........this is mainly to look for a solution where we can see a environment.............where w