Needing to check compatibility of a MicroSD card with my Stream Notebook before buying card

Would a SanDisk Ultra 16GB UHS-I/Class 10 Micro SDHC Memory Card be compatible with an HP Stream Notebook - 11-d010wm (ENERGY STAR)?  I already have a couple of Micro SD cards, but they're older and not being acknowledged when I put them in the card reader slot, so I guess they're not compatible.  I'm looking to buy a new SD card, but don't want to run into the same issue, so want to verify compatibility before purchasing...any help would be much appreciated.  Thank you.

Hi.  This computer is new - I just got it last week - and as far as I know, everything seems to work well on it.  When I put my two old micro SD cards in, though, nothing happens at all.  I did try them in a different laptop, as well, and they weren't acknowledged there, either.  But both cards, although older, have never been used in a computer before, I've only ever used them in my phone.  I would think that at least one of them would work in at least one of my laptops...I don't know why neither of them is working in either laptop, but it doesn't really matter, because the size on them is too small for what I need for this computer anyway - they're only 8GB and I need a minimum of 16GB and preferably more - so I just want to buy a new, larger size card.  I'm just concerned about running into the same problem yet again.   I tried to do a little researching on the internet, but the best I came up with is that not all cards are compatible with all OS, which could explain why the older cards don't work, but doesn't help with any specifics on what type of new card would work.   But from what you know, the Stream should accept pretty much any SD card?

Similar Messages

  • Need to check tls/ssl but getting stuck with "You must provide a value expression on the right-hand side of the '-' operator."

    I would like to disable ssl 3 but need to test what sites only support ssl 3. I keep getting stuck with an error that is over my head. I've tried manipulating the string a dozen different ways and keep getting the same error. I am not familiar with -notin
    or how to specify which part of the property its checking: thanks a ton
    http://blog.whatsupduck.net/2014/10/checking-ssl-and-tls-versions-with-powershell.html
    line with issues:
    $ProtocolNames = [System.Security.Authentication.SslProtocols] | gm -static -MemberType Property | where-object{$_.Name -notin @("Default","None") | %{$_.Name}
    You must provide a value expression on the right-hand side of the '-' operator.
    At S:\scripts\test23.ps1:50 char:126
    + $ProtocolNames = [System.Security.Authentication.SslProtocols] | gm -static -MemberType Property | where-object{$_.Name - <<<< noti
    n @("Default","None") | %{$_.Name}
    + CategoryInfo : ParserError: (:) [], ParseException
    + FullyQualifiedErrorId : ExpectedValueExpression
    <#
    .DESCRIPTION
    Outputs the SSL protocols that the client is able to successfully use to connect to a server.
    .NOTES
    Copyright 2014 Chris Duck
    http://blog.whatsupduck.net
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    .PARAMETER ComputerName
    The name of the remote computer to connect to.
    .PARAMETER Port
    The remote port to connect to. The default is 443.
    .EXAMPLE
    Test-SslProtocols -ComputerName "www.google.com"
    ComputerName : www.google.com
    Port : 443
    KeyLength : 2048
    SignatureAlgorithm : rsa-sha1
    Ssl2 : False
    Ssl3 : True
    Tls : True
    Tls11 : True
    Tls12 : True
    #>
    function Test-SslProtocols {
    param(
    [Parameter(Mandatory=$true,ValueFromPipelineByPropertyName=$true,ValueFromPipeline=$true)]
    $ComputerName,
    [Parameter(ValueFromPipelineByPropertyName=$true)]
    [int]$Port = 443
    begin {
    $ProtocolNames = [System.Security.Authentication.SslProtocols] | gm -static -MemberType Property | where-object{$_.Name -notin @("Default","None") | %{$_.Name}
    process {
    $ProtocolStatus = [Ordered]@{}
    $ProtocolStatus.Add("ComputerName", $ComputerName)
    $ProtocolStatus.Add("Port", $Port)
    $ProtocolStatus.Add("KeyLength", $null)
    $ProtocolStatus.Add("SignatureAlgorithm", $null)
    $ProtocolNames | %{
    $ProtocolName = $_
    $Socket = New-Object System.Net.Sockets.Socket([System.Net.Sockets.SocketType]::Stream, [System.Net.Sockets.ProtocolType]::Tcp)
    $Socket.Connect($ComputerName, $Port)
    try {
    $NetStream = New-Object System.Net.Sockets.NetworkStream($Socket, $true)
    $SslStream = New-Object System.Net.Security.SslStream($NetStream, $true)
    $SslStream.AuthenticateAsClient($ComputerName, $null, $ProtocolName, $false )
    $RemoteCertificate = [System.Security.Cryptography.X509Certificates.X509Certificate2]$SslStream.RemoteCertificate
    $ProtocolStatus["KeyLength"] = $RemoteCertificate.PublicKey.Key.KeySize
    $ProtocolStatus["SignatureAlgorithm"] = $RemoteCertificate.PublicKey.Key.SignatureAlgorithm.Split("#")[1]
    $ProtocolStatus.Add($ProtocolName, $true)
    } catch {
    $ProtocolStatus.Add($ProtocolName, $false)
    } finally {
    $SslStream.Close()
    [PSCustomObject]$ProtocolStatus
    Test-SslProtocols -ComputerName "www.google.com"

    V2 version:
    function Test-SslProtocols {
    param(
    [Parameter(
    Mandatory=$true,
    ValueFromPipelineByPropertyName=$true,
    ValueFromPipeline=$true
    )]$ComputerName,
    [Parameter(
    ValueFromPipelineByPropertyName=$true
    )][int]$Port = 443
    begin {
    $protocols=[enum]::GetNames([System.Security.Authentication.SslProtocols])|?{$_ -notmatch 'none|default'}
    process {
    foreach($protocol in $protocols){
    $ProtocolStatus = @{
    ComputerName=$ComputerName
    Port=$Port
    KeyLength=$null
    SignatureAlgorithm=$null
    Protocol=$protocol
    Active=$false
    $Socket = New-Object System.Net.Sockets.Socket('Internetwork','Stream', 'Tcp')
    $Socket.Connect($ComputerName, $Port)
    try {
    $NetStream = New-Object System.Net.Sockets.NetworkStream($Socket, $true)
    $SslStream = New-Object System.Net.Security.SslStream($NetStream, $true)
    $SslStream.AuthenticateAsClient($ComputerName, $null, $protocol, $false )
    $RemoteCertificate = [System.Security.Cryptography.X509Certificates.X509Certificate2]$SslStream.RemoteCertificate
    $protocolstatus.Active=$true
    $ProtocolStatus.KeyLength = $RemoteCertificate.PublicKey.Key.KeySize
    $ProtocolStatus.SignatureAlgorithm = $RemoteCertificate.PublicKey.Key.SignatureAlgorithm.Split("#")[1]
    catch {
    Write-Host 'Failed'
    finally {
    New-Object PsObject -Property $ProtocolStatus
    $SslStream.Close()
    Test-SslProtocols -ComputerName www.google.com
    ¯\_(ツ)_/¯

  • The 3d features require 'use graphics processor' is enabled in the performance preferences.  Your video card must meet the minimum requirements and you may need to check that your driver is working correctly

    the 3d features require 'use graphics processor' is enabled in the performance preferences.  Your video card must meet the minimum requirements and you may need to check that your driver is working correctly
    Hello I'm also getting this error.. can anybody help me out? Here's my log.
    Adobe Photoshop Version: 2014.0.0 20140508.r.58 2014/05/08:23:59:59  x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:5, Stepping:5 with MMX, SSE Integer, SSE FP, SSE2, SSE3
    Physical processor count: 2
    Processor speed: 2128 MHz
    Built-in memory: 2934 MB
    Free memory: 231 MB
    Memory available to Photoshop: 2354 MB
    Memory used by Photoshop: 70 %
    3D Multitone Printing: Disabled.
    Touch Gestures: Disabled.
    Windows 2x UI: Disabled.
    Image tile size: 1024K
    Image cache levels: 4
    Font Preview: Medium
    TextComposer: Latin
    Display: 1
    Display Bounds: top=0, left=0, bottom=768, right=1366
    OpenGL Drawing: Enabled.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    AIFCoreInitialized=1
    AIFOGLInitialized=1
    OGLContextCreated=1
    glgpu[0].GLVersion="2.1"
    glgpu[0].GLMemoryMB=1242
    glgpu[0].GLName="Intel(R) HD Graphics"
    glgpu[0].GLVendor="Intel"
    glgpu[0].GLVendorID=32902
    glgpu[0].GLDriverVersion="8.15.10.2993"
    glgpu[0].GLRectTextureSize=8192
    glgpu[0].GLRenderer="Intel(R) HD Graphics"
    glgpu[0].GLRendererID=70
    glgpu[0].HasGLNPOTSupport=1
    glgpu[0].GLDriver="igdumd64.dll,igd10umd64.dll,igdumdx32,igd10umd32"
    glgpu[0].GLDriverDate="20130130000000.000000-000"
    glgpu[0].CanCompileProgramGLSL=1
    glgpu[0].GLFrameBufferOK=1
    glgpu[0].glGetString[GL_SHADING_LANGUAGE_VERSION]="1.20  - Intel Build 8.15.10.2993"
    glgpu[0].glGetProgramivARB[GL_FRAGMENT_PROGRAM_ARB][GL_MAX_PROGRAM_INSTRUCTIONS_ARB]=[1447 ]
    glgpu[0].glGetIntegerv[GL_MAX_TEXTURE_UNITS]=[8]
    glgpu[0].glGetIntegerv[GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS]=[16]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS]=[16]
    glgpu[0].glGetIntegerv[GL_MAX_TEXTURE_IMAGE_UNITS]=[16]
    glgpu[0].glGetIntegerv[GL_MAX_DRAW_BUFFERS]=[8]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_UNIFORM_COMPONENTS]=[512]
    glgpu[0].glGetIntegerv[GL_MAX_FRAGMENT_UNIFORM_COMPONENTS]=[1024]
    glgpu[0].glGetIntegerv[GL_MAX_VARYING_FLOATS]=[41]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_ATTRIBS]=[16]
    glgpu[0].extension[AIF::OGL::GL_ARB_VERTEX_PROGRAM]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_PROGRAM]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_VERTEX_SHADER]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_SHADER]=1
    glgpu[0].extension[AIF::OGL::GL_EXT_FRAMEBUFFER_OBJECT]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_RECTANGLE]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_FLOAT]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_OCCLUSION_QUERY]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_VERTEX_BUFFER_OBJECT]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_SHADER_TEXTURE_LOD]=0
    License Type: Tryout Version
    Serial number: Tryout Version
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CC 2014\
    Temporary file path: C:\Users\ANNABE~1\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 298.0G, 63.8G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\Plug-Ins\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC 2014\Plug-ins\
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2014/04/14-23:42:44   79.554120   79.554120
       adbeape.dll   Adobe APE 2013/02/04-09:52:32   0.1160850   0.1160850
       AdbePM.dll   PatchMatch 2014/04/23-10:46:55   79.554276   79.554276
       AdobeLinguistic.dll   Adobe Linguisitc Library   8.0.0  
       AdobeOwl.dll   Adobe Owl 2014/03/05-14:49:37   5.0.33   79.552883
       AdobePDFL.dll   PDFL 2014/03/04-00:39:42   79.510482   79.510482
       AdobePIP.dll   Adobe Product Improvement Program   7.2.1.3399  
       AdobeXMP.dll   Adobe XMP Core 2014/01/13-19:44:00   79.155772   79.155772
       AdobeXMPFiles.dll   Adobe XMP Files 2014/01/13-19:44:00   79.155772   79.155772
       AdobeXMPScript.dll   Adobe XMP Script 2014/01/13-19:44:00   79.155772   79.155772
       adobe_caps.dll   Adobe CAPS   8,0,0,7  
       AGM.dll   AGM 2014/04/14-23:42:44   79.554120   79.554120
       ahclient.dll    AdobeHelp Dynamic Link Library   1,8,0,31  
       amtlib.dll   AMTLib (64 Bit)   8.0.0.45 BuildVersion: 8.0; BuildDate: Fri Mar 28 2014 20:28:30)   1.000000
       ARE.dll   ARE 2014/04/14-23:42:44   79.554120   79.554120
       AXE8SharedExpat.dll   AXE8SharedExpat 2013/12/20-21:40:29   79.551013   79.551013
       AXEDOMCore.dll   AXEDOMCore 2013/12/20-21:40:29   79.551013   79.551013
       Bib.dll   BIB 2014/04/14-23:42:44   79.554120   79.554120
       BIBUtils.dll   BIBUtils 2014/04/14-23:42:44   79.554120   79.554120
       boost_date_time.dll   photoshopdva   8.0.0  
       boost_signals.dll   photoshopdva   8.0.0  
       boost_system.dll   photoshopdva   8.0.0  
       boost_threads.dll   photoshopdva   8.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.2.6.32411   2.2.6.32411
       CITThreading.dll   Adobe CITThreading   2.2.6.32411   2.2.6.32411
       CoolType.dll   CoolType 2014/04/14-23:42:44   79.554120   79.554120
       dvaaudiodevice.dll   photoshopdva   8.0.0  
       dvacore.dll   photoshopdva   8.0.0  
       dvamarshal.dll   photoshopdva   8.0.0  
       dvamediatypes.dll   photoshopdva   8.0.0  
       dvametadata.dll   photoshopdva   8.0.0  
       dvametadataapi.dll   photoshopdva   8.0.0  
       dvametadataui.dll   photoshopdva   8.0.0  
       dvaplayer.dll   photoshopdva   8.0.0  
       dvatransport.dll   photoshopdva   8.0.0  
       dvaui.dll   photoshopdva   8.0.0  
       dvaunittesting.dll   photoshopdva   8.0.0  
       dynamiclink.dll   photoshopdva   8.0.0  
       ExtendScript.dll   ExtendScript 2014/01/21-23:58:55   79.551519   79.551519
       icucnv40.dll   International Components for Unicode 2013/02/25-15:59:15    Build gtlib_4.0.19090  
       icudt40.dll   International Components for Unicode 2013/02/25-15:59:15    Build gtlib_4.0.19090  
       imslib.dll   IMSLib DLL   7.0.0.145  
       JP2KLib.dll   JP2KLib 2014/03/12-08:53:44   79.252744   79.252744
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libiomp5md.dll   Intel(R) OpenMP* Runtime Library   5.0  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       LogSession.dll   LogSession   7.2.1.3399  
       mediacoreif.dll   photoshopdva   8.0.0  
       MPS.dll   MPS 2014/03/25-23:41:34   79.553444   79.553444
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CC 2014   15.0  
       Plugin.dll   Adobe Photoshop CC 2014   15.0  
       PlugPlugExternalObject.dll   Adobe(R) CEP PlugPlugExternalObject Standard Dll (64 bit)   5.0.0  
       PlugPlugOwl.dll   Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit)   5.0.0.74  
       PSArt.dll   Adobe Photoshop CC 2014   15.0  
       PSViews.dll   Adobe Photoshop CC 2014   15.0  
       SCCore.dll   ScCore 2014/01/21-23:58:55   79.551519   79.551519
       ScriptUIFlex.dll   ScriptUIFlex 2014/01/20-22:42:05   79.550992   79.550992
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   4, 2, 2013, 1114  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   4, 2, 2013, 1114  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   7.0.1.102 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   7.0.1.102
       VulcanControl.dll   Vulcan Application Control Library   5.0.0.82  
       VulcanMessage5.dll   Vulcan Message Library   5.0.0.82  
       WRServices.dll   WRServices Fri Mar 07 2014 15:33:10   Build 0.20204   0.20204
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       3D Studio 15.0 (2014.0.0 x001)
       Accented Edges 15.0
       Adaptive Wide Angle 15.0
       Angled Strokes 15.0
       Average 15.0 (2014.0.0 x001)
       Bas Relief 15.0
       BMP 15.0
       Camera Raw 8.0
       Camera Raw Filter 8.0
       Chalk & Charcoal 15.0
       Charcoal 15.0
       Chrome 15.0
       Cineon 15.0 (2014.0.0 x001)
       Clouds 15.0 (2014.0.0 x001)
       Collada 15.0 (2014.0.0 x001)
       Color Halftone 15.0
       Colored Pencil 15.0
       CompuServe GIF 15.0
       Conté Crayon 15.0
       Craquelure 15.0
       Crop and Straighten Photos 15.0 (2014.0.0 x001)
       Crop and Straighten Photos Filter 15.0
       Crosshatch 15.0
       Crystallize 15.0
       Cutout 15.0
       Dark Strokes 15.0
       De-Interlace 15.0
       Dicom 15.0
       Difference Clouds 15.0 (2014.0.0 x001)
       Diffuse Glow 15.0
       Displace 15.0
       Dry Brush 15.0
       Eazel Acquire 15.0 (2014.0.0 x001)
       Embed Watermark 4.0
       Entropy 15.0 (2014.0.0 x001)
       Export Color Lookup NO VERSION
       Extrude 15.0
       FastCore Routines 15.0 (2014.0.0 x001)
       Fibers 15.0
       Film Grain 15.0
       Filter Gallery 15.0
       Flash 3D 15.0 (2014.0.0 x001)
       Fresco 15.0
       Glass 15.0
       Glowing Edges 15.0
       Google Earth 4 15.0 (2014.0.0 x001)
       Grain 15.0
       Graphic Pen 15.0
       Halftone Pattern 15.0
       HDRMergeUI 15.0
       IFF Format 15.0
       Ink Outlines 15.0
       JPEG 2000 15.0
       Kurtosis 15.0 (2014.0.0 x001)
       Lens Blur 15.0
       Lens Correction 15.0
       Lens Flare 15.0
       Liquify 15.0
       Matlab Operation 15.0 (2014.0.0 x001)
       Maximum 15.0 (2014.0.0 x001)
       Mean 15.0 (2014.0.0 x001)
       Measurement Core 15.0 (2014.0.0 x001)
       Median 15.0 (2014.0.0 x001)
       Mezzotint 15.0
       Minimum 15.0 (2014.0.0 x001)
       MMXCore Routines 15.0 (2014.0.0 x001)
       Mosaic Tiles 15.0
       Multiprocessor Support 15.0 (2014.0.0 x001)
       Neon Glow 15.0
       Note Paper 15.0
       NTSC Colors 15.0 (2014.0.0 x001)
       Ocean Ripple 15.0
       OpenEXR 15.0
       Paint Daubs 15.0
       Palette Knife 15.0
       Patchwork 15.0
       Paths to Illustrator 15.0
       PCX 15.0 (2014.0.0 x001)
       Photocopy 15.0
       Photoshop 3D Engine 15.0 (2014.0.0 x001)
       Photoshop Touch 14.0
       Picture Package Filter 15.0 (2014.0.0 x001)
       Pinch 15.0
       Pixar 15.0 (2014.0.0 x001)
       Plaster 15.0
       Plastic Wrap 15.0
       PNG 15.0
       Pointillize 15.0
       Polar Coordinates 15.0
       Portable Bit Map 15.0 (2014.0.0 x001)
       Poster Edges 15.0
       Radial Blur 15.0
       Radiance 15.0 (2014.0.0 x001)
       Range 15.0 (2014.0.0 x001)
       Read Watermark 4.0
       Render Color Lookup Grid NO VERSION
       Reticulation 15.0
       Ripple 15.0
       Rough Pastels 15.0
       Save for Web 15.0
       ScriptingSupport 15.0
       Shake Reduction 15.0
       Shear 15.0
       Skewness 15.0 (2014.0.0 x001)
       Smart Blur 15.0
       Smudge Stick 15.0
       Solarize 15.0 (2014.0.0 x001)
       Spatter 15.0
       Spherize 15.0
       Sponge 15.0
       Sprayed Strokes 15.0
       Stained Glass 15.0
       Stamp 15.0
       Standard Deviation 15.0 (2014.0.0 x001)
       STL 15.0 (2014.0.0 x001)
       Sumi-e 15.0
       Summation 15.0 (2014.0.0 x001)
       Targa 15.0
       Texturizer 15.0
       Tiles 15.0
       Torn Edges 15.0
       Twirl 15.0
       Underpainting 15.0
       Vanishing Point 15.0
       Variance 15.0 (2014.0.0 x001)
       Water Paper 15.0
       Watercolor 15.0
       Wave 15.0
       Wavefront|OBJ 15.0 (2014.0.0 x001)
       WIA Support 15.0 (2014.0.0 x001)
       Wind 15.0
       Wireless Bitmap 15.0 (2014.0.0 x001)
       ZigZag 15.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
    Installed TWAIN devices: NONE

    What Intel video card do you have? The only Intel HD graphics cards officially supported by Photoshop CC are:
    Intel HD Graphics P3000
    Intel HD Graphics P4000
    Intel(R) HD Graphics P4600/P4700
    Intel HD Graphics 5000
    Go here to read more about the requirements: Photoshop CC and CC 2014 GPU FAQ

  • I need to check my iTunes Gift Card Balance. Help!

    I bought a few gift cards from Staples during  a sale, and want to gift them to my friends. Each card is supposed to have 25$ on it.
    My question is this- I need to make sure that the balance is on the card before gifting it. So that I'm not embarrassed later on.
    I browsed for answers and came across 2 popular answers.
    1. Go to iTunes and click redeem..etc etc.
    But in doing so won't I end up adding the balance to my account? The gift card will no longer be valid. right?
    2. Call 888-320-3301.
    I called the number. It's an automated system asking me to put in my 16 digit code. Now my 16 digit code is alphanumeric. something like XZN34...etc.
    So HOW do I put in my code?? HELP!

    An iTunes card isn't like other gift cards where there's a balance that is embedded on the card at the time of purchase. It's a fixed amount built into the card (actually it's embedded in the redemption code) that gets added to a user's iTunes Store account when the card is redeemed. Unless the card was previously redeemed, something which it is impossible to check without actually redeeming the card, which can be done only once, there's no way to confirm the balance, but I've never run into a situation where the amount wasn't the amount printed on the card. Only if Staples didn't activate the cards would there be any possibility of a problem, barring a very unusual circumstance.
    I think you can give the cards without fear.
    Regards.

  • HT5035 I need to check the balance on a gift card. I do not know if it has been used.

    I need to check the balance on a gift card. I do not know if it has been used.

    I just had this issue. The only way to check is to go to iTunes, sign in, click redeem and enter the code. I had a card that my wife swore she used but thought I'd check it anyway. Good thing I did, $50 credit.

  • I have Iconia Tab A500, running 3.0, need help updating using microsd card, got Acer update download

    I have Iconia Tab A500 running 3.0, need help updating, I downloaded all updaes list in the acer supprt, all versions, 3.0, 3.1, 3.2, and 4.something, I read on the acer support somewhere I can use a microsd card to update my device, because acer no longer provides automatically, when i try it says "poor network connection, move to anthoer location.", Do I need to update all the listed updates, or can i only update, using the 4. 0? to get the last known update. I also downloaded, "Documents, Apllications, Drivers, Patches, and O.S..... How do i intsall all these updates, I think am running the very lowest version available, Please Help me... Thank you in advance.

    the update listed on the acer website, that mentions the a500 update is 'kernal source code (for Android 4.0 Ice Cream Sandwich) it's 96.7MB's released 2012/05/08' is that the right one i need? There is also a list of 3 O.S updates, released in 2014/09/05, 391.5MB's, 394.3MB's, and 391.5MB's large, what are those updates, I clicked the model and followed the directions that the acer website asks, and i ended with a list of update released in 2014/09/05, and a Document update released in 2014/12/17, 112.7KB's large,  list of updates reased in 2014/.... and in the Android 4.0 culumn, there is an update that says O.S update released in 2014/09/05, 434.2MB's large, and a Patch Update, that was released in 2013/03/21, what are these updates? listedin the aver website... http://www.acer.ca/ac/en/CA/content/drivers 

  • Fan broken. need to check if the card is alive

    Hi,
    Today i've found the fan on my NX6600GT broken while the computer was on (no games, just desktop applications working). I've turned off the computer and let the card cool (it was really hot). The plastic on the fan was nearly melting. Now i need to check if any component has been burnt on the card (if not, i won't send it to MSI but just replace the cooler with a better one). How this can be done safely? Can i temporarily replace the fan (leave the heatsink) with some chipset fan? I want to turn the computer on for an hour and see if something bad happens (like garbage on screen) indicating the card is damaged.
    Thanks in advance

    A few minutes won't hurt, and likely it didn't do any real damage...but you don't know how long that fan's been stopped do you?
    I wouldn't do anyhting other than just get to desktop and then shutdown.
    I would look for an aftermarket solution rather than just trying to mess with the fan itself. The assembly is proprietary and there is not an option just to replace the fan with a standard type fan.
    You could also consider an RMA if you have another card you can use temporarily. Otherwise you need to look in your region for a  e/retailer that sells aftermarket fans for the NX6600GT

  • SanDisk microSD card not detected

    Greetings,
    My 8900 model is not detecting the 2 GB microSD card I just purchased for it. I have triple checked  the insertion, rebooted the device, updated the software, reformatted the card on my PC, and set the  Memory options to automatically detect and use a media card once inserted.
    Can anyone tell me why the card is still not being detected? Many thanks!

    Also keep in mind that what ever else you have stored on the phone memory will limit the amount of messages as the phone memory is a shared space.
    Contacts, Images, Ringtones, Music, Calendar entries and other things stored on the phone memory limits the space left to be use by messages. Go to your gallery and see what you have stored in phone memory and try to put it on the memory card instead.
    You can also try to do the following :
    Menu->Gallery->Options->Memory Status->Phone Memory
    You should get a break down of the usage as in :
    Free Memory : x.xxMB
    Gallery : x.xxMB
    Messaging : x.xxMB
    Applications : x.xxMB
    Bookmarks : x.xxMB
    Knowledge should be your Advisor when you need help.
    1610»2110»8110»5110»3310»6210»7250i»6220»6230»6230i»6233
    Love me or hate me, its still an obsession. Love me or hate me, that is the question. If you love me then Thank you! If you hate me then ...

  • Microsd card

    I am new to blackberry and I have a curve 8320 and would like to buy a larger capacity card.  I have a one gig micro sd and would like a 8 gig.  I just need to know if my phone will accept that size card.   Thank you in advance for your help.
    Solved!
    Go to Solution.

    The MicroSD card size is according to the OS version on the device:
    The following are maximum Media Card capacities, according to the OS installed on the device. Check your OS version: Look at Options > About, third line down beginning with a "v.4.xxx"
    BlackBerry Device Software -----Media Card Size Limit
    BlackBerry Device Software 4.2.0 -- Up to 2 GB
    BlackBerry Device Software 4.2.1 -- Up to 4 GB
    BlackBerry Device Software 4.2.2 -- Up to 4 GB
    BlackBerry Device Software 4.3.0 -- Up to 8 GB
    BlackBerry Device Software 4.5.0 -- Up to 8 GB
    BlackBerry Device Software 4.5.0.81 and above -- Up to 16 GB
    BlackBerry Device Software 4.6.0 -- Up to 32 GB
    http://www.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB05461&sliceId=SAL_Pub...
    Installation Instructions:
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Microsd card problems

    Hi. My blackberry pearl 8120 had been reading the microsd card fine until I connected it to my computer last week to transfer some pictures. Now the blackberry won't read the sd card and my computer won't even pick up my blackberry, with or wothout the sd card in it! Any ideas?
    Thanks
    Paul

    Pcopechu,
    We'll need to seperate the issues. 1)  your phone does not read the mSD card 2) your PC does not does not detect your BB
    Please attempt the following to check one of the options on the your Smartphone:
    To go "Options" > "Media Card" > and ensure "Mass Storage Mode Support" is turned "On"
    This may resolve both issues, but if you are still unable to connect your BB with your PC you may want to try the following: attempt another USB port and the uninstal and reinstalltion of the Blackberry Desktop and Device softwares.
    Hope this helps,
    Office2Mobile
    Poor Service and the Worst Support provided by VarDynamics http://vardynamics.com/

  • 4k video recording and microSD card speed

    Hello, I am currently trying to find what microSD card type Xperia Z2 needs to shoot 4k videos smoothly. Is UHS Speed Class 1 (U1) card with about 30 MB/s writing speed enough to shoot 4k videos with no problems at all? I am just asking if Sandisk Ultra series are enough and should I bother with Sandisk Extreme for example with 45 MB/s writing speed or with Xperia Z2 4k video recording I won't see any difference?

    sandisk shows better compatibility with xperias
    also beside of writing speed you must format your sd card with "exFAT" format,caues of 4GB writing limit
    Some will call me fatalist And some will call me freak
    But hidden in my throwing fist The fortune that I seek-- Amon amarth

  • How do I completely disable initial "Checking Compatibility of Add-ons" pop-up for all users on a Citrix server where the FireFox was upgraded to 29.0.1

    I have a set of Citrix servers, we need to upgrade the FireFox on them to 29.0.1
    When I have done this, and a user runs FireFox, now the users are being presented with a pop-up "Checking Compatibility of Add-ons" which delays the start of FireFox.
    I need to prevent this so users just see FireFox start up without any delays.
    I have installed the add-on that re-enables extensions.checkCompatibility and tried various ways of implementing it like pref("extensions.checkCompatibility", false);
    However we seem to have a situation where the add-on that enables the setting is not loaded yet so the setting is not implemented.
    How do I solve this for all users?

    You can try to set the browser.startup.homepage_override.mstone pref to ignore on the about:config
    *http://kb.mozillazine.org/browser.startup.homepage_override.mstone
    You can use a mozilla.cfg file in the Firefox program folder to specify new (default) values and possibly lock prefs.
    Place a local-settings.js file in the defaults\pref folder where also the channel-prefs.js file is located to specify using mozilla.cfg.
    pref("general.config.filename", "mozilla.cfg");
    These functions can be used in the mozilla.cfg file:
    defaultPref(); // set new default value
    pref(); // set pref, but allow changes in current session
    lockPref(); // lock pref, disallow changes
    See:
    *http://kb.mozillazine.org/Locking_preferences
    *http://mike.kaply.com/2012/03/16/customizing-firefox-autoconfig-files/
    *http://mike.kaply.com/2014/01/08/can-firefox-do-this/

  • Lumia 1520/AT&T: What is the best MicroSD card opt...

    Hello,
    I am writing to the Nokia forums because I have a doubt on which 64gb MicroSD card I should buy for my Nokia Lumia 1520 (AT&T model). I want to use this card for photos and video recording at 1080p up to 30FPS.
    Doing some research, I found that for best results I need a Class 10 MicroSDXC card if I don't want the video to skip during the recording if writing the video directly to the card as I record. Apparently I also have to look for the UHS-1 designation aside from Class 10.
    Therefore, I went shopping around in Amazon.com and I have narrowed down my choices to the following three cards.
    Sandisk 64GB Class 10 UHS-1
    Transcend 64GB MicroSDXC Class 10 UHS-1
    Sony 64GB MicroSDXC Class 10 UHS-1
    Out of the three choices which one provides the better option? I am leaning towards the Transcend MicroSD card, but would like to get a feedback from Lumia 1520 owners.
    Michael
    Nokia Lumia 1520 | Windows Phone 8.1 "Lumia Cyan"

    The sandisk is the one I use with no issues whatsoever
    Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

  • Is it possible to install an app obtained via a MicroSD card or Bluetooth?

    Suppose I'm in an area where there is very little Wi-fi or other internet access (e.g. rural Papua New Guinea).
    Or, an area where the internet is strictly controlled or monitored. So the Marketplace is not an option.
    People around me are using their cheap cell phones to share photos via bluetooth, and music and videos via SD cards.
    Question: can I also distribute an app via MicroSD card or Bluetooth?
    I've tried this with some Java phones and found that installing an app from either of those sources is disallowed.
    What about on FirefoxOS?
    The Firefox OS web site says you can update the OS from an SD card.
    One of the FAQ's at http://www.ebay.com/itm/ZTE-OPEN-C-3G-Unlocked-Firefox-Smartphone-Cell-Phone-Dual-Core-GPS-WiFi-AT-T-/291243074570?pt=Cell_Phones&hash=item43cf70a40a suggests that you cannot install an app from an SD card, at least on a ZTE Open C.
    But I'd like to get more of a horse's-mouth answer, if possible.
    Is this something that Firefox OS leaves up to the discretion of each phone manufacturer?
    Or is it considered such a security risk that Firefox OS will not allow it on any phone?
    Thanks,
    Lars

    Hi, huttarl!
    Beyond the Firefox Marketplace, your options for distributing apps are unfortunately rather limited.
    To my knowledge, Firefox OS does not support any Bluetooth/microSD card app installation. However, you can install an app to a phone by connecting the phone to a computer via USB cable. This is often used by developers but may suit your needs: [https://developer.mozilla.org/en-US/Firefox_OS/Using_the_App_Manager See this article on the Mozilla Developer Network].
    I hope that helps! Please feel free to post back with more questions.

  • New BB Z30 Freezing, Docs are unable to Open, microSD card automatically formatted after restart, unable to open Some Pictures, Long time for Charging

    I purchased a new BlackBerry Z30 recently from http://store.shopblackberry.com/store/bbrryus/en_US/pd/productID.298806900/categoryID.66826600/paren... and my Phone Model number is STL 100-5. I also purchased a Z30 Leather flip case manufactured by BlackBerry. I am using my BlackBerry Z30 along with the Z30 Leather flip case.
    1) Within the first 2 weeks of receiving and using the new BB Z30 device, I noticed a problem of screen not responding some times. My phone has been freezed at the lock screen. My phone is not responding to any key except for the power button. So, I had an option of only restart/Turn Off my BlackBerry Z30 device. All the time whenever I had this problem, I have to restart my device in order to make it work properly again. I complained about this issue with BlackBerry Technical Support. They assisted me to reset the device to factory settings by taking a full backup. After reset also, I still had the same issue.
    2) I am using Sandisk Extreme microSD card of 32GB with my BB Z30 device. Some times due to the restart option, all the data which I had on my microSD card is being erased and is filled with an unknown files.
    3) I'm also unable to open some pictures which I have taken using BlackBerry Z30. As I observed, most of the pictures which I taken using Blackberry Z30 are unable to be open/view them after a few days. Still, I am able to observe the properties of those pictures. They are in JPEG format only.
    4)Also If I create a Word Document on BlackBerry Z30 using Docs to Go Application and saved it. After closing that particular document and If I try to open it, the document file is not opening and projecting me an error of "This is not a valid .Doc file", but while I check the properties of that particular document it is in .doc format. I tried to transfer the file to my laptop using bluetooth. After a few seconds (approx 2-3 seconds) automatically the transferring is cancelled by the BlackBerry Z30 device. However, I tried to transfer the file within that short time using Bluetooth. While I tried to open it on my laptop using Microsoft Office 2013, the file is displaying with a squares of upto 4 pages while I had a content in it of 3 lines only. While I opened my file using Microsoft Office 2013, there is only squares available in that document.
    5)  My new BlackBerry Z30 is taking a long time of approximately 6-7 hours to charge the device from 10% to 100%
    I request someone to help me with this issues. I would like to thank everyone who can help me with these issues in advance.
    Solved!
    Go to Solution.

    On 7th of Jan 2015 I made my device to factory reset. Also I removed microSD card from my device. As I observed for these 3 days, one time while I received a missed call, I tried to have a look at it. I observed that my screen has been freeze at the receiving call position and its not responding. I tried to close and reopened the display of my device with a flip case which I'm currently using for my device. At this time, after 3-4 swipes to unlock the device, again its back into working condition.
    About Documents, I'm able to create, save and open the documents without any issues till now.
    About Pictures, they are also working fine without any issues.
    I also observed the charging time as approximately 3 hours for charging the device from 14% to 100%.

Maybe you are looking for

  • Quantity Contract + Free goods determiantion

    Hi All, We are currently working on a project where we create a Quantity contract and the sales order is created keeping the contract as the reference. The problem which we are facing is as follows 1. The free goods are not getting determined when we

  • Problems with Snow Leopard and users

    I have upgraded 3 x 10.5 iMacs to 10.6. They have been working fine for the last 2 months, but now have some strange problems on the units. 1. On the one, it cannot save documents on the iMac under that user. If I create another user, then that new u

  • Exception in thread "main" kodo.util.FatalInternalException:

    I have a method that is trying to save multiple objects: public void go() tx.begin(); for (int i = 0; i < 10; i++) { Person p = new Person(); p.setForename("doug"); p.setSurname("emerald"); p.setGender("m"); p.setBirthdate(new Date()); pm.makePersist

  • Microphone lagging after recording

    Hello. I use Logic Pro 9. I have been having trouble syncing my microphone footage with my tempo. When I am not recording and my mic is on, I can hear perfectly and the audio is in sync with Logic, so during the process of recording I do not notice t

  • Need help please wrt54g ver. 2

    I came home from lunch today and went to get on xbox live and got no internet connection so i called COX (my isp) and when I hardwired my laptop directly to the modem my internet worked fine.  Now, I run both of my pcs wirelessly and have my xbox har