Sincronizzazione tra due VI

Salve,
sto lavorando su una scheda PXIe 6361 e ho realizzato due VI, una per la trasmissione e l'altra per l'acquisizione. In pratica sto cercando di realizzare un sistema di comunicazione in cui genero il segnale , viene corrotto dal rumore e infine acquisisco il segnale.
Ho da chiedere due cose:
1) è possibile effettuare parallelamente la generazione di un segnale e l'acquisizione dello stesso utilizzando solo la scheda 6361, oppure potrebbero esserci dei conflitti?
2) come potrei gestire la sincronizzazione tra le due VI, che hanno velocità di elaborazione diverse, senza avere perdita di dati?
Grazie

Salve zorox,
La scheda PXIe-6361 dovrebbe avere a disposizione almeno due canali AO e diversi canali AI. La generazione e l'acquisizione del segnale sono operazioni che verranno fatte da task distinti (previo collegamento fisico tramite terminaliera dei canali) e sono quindi indipendenti, per cui la risposta è si, è possibile. Per elaborare i dati acquisiti in due VI distinti consiglio l'utilizzo delle Queues per trasferire gli stessi in maniera bufferizzata senza perdita di dati.
https://decibel.ni.com/content/docs/DOC-19733
Spero di essere stato di aiuto.
Buon lavoro,
Enrico D.

Similar Messages

  • Problemi di sincronizzazione tra iPone e Mac tramite exchange

    Ciao a tutti,
    ho un problema legato alla sincronizzazione dei contatti tra Mac e iPhone.
    In particolare uso una sincronizzazione exchange aziendale e il mio problema è legato alle date dei compleanni dei miei contatti. Tutti i contatti su iPhone hanno il giorno del compleanno posticipato di un giorno. Non riesco a trovare la causa del mio problema, potete aiutarmi?

    Google translate:
    Aalve at all. For days I have a problem in sync iPod-Mac. I synced the ipod to mac and it happened that it was removed, rather than sync, all music from your device. This happened because, to tell the Mac, there was not enough space to put the music in your iPod, music that had always been there. Looking at it in the list, the Mac "saw" about 30 Gb occupied by "OTHER" and rightly so, on an iPod 64 Gb which I always keep 46 GB of music, stories and did not feel there could sync music: therefore the 'was deleted from the device.
    The iPod, meanwhile, says in the "General -> Use" that actually there are 35 gb employed (5 app and apparently 30 OTHER).
    I must therefore be able to eliminate this "OTHER" and synchronize us to make room for new music, but I have no idea how to delete it, since I do not know which files are. Can anyone help me ??
    Thank you, Eric
    NOTE: versions of both software are the most up to date: iOS 8.1 and OSX Yosemite. Before iOS 8 I did not have these problems.
    Reply:
    An "other" larger than about 1 1/2 GB indicates corrupted files.
    What is the Other on my iPhone and How to Remove It
    What is "Other" and What Can I Do About It?
    Next, usually restoring from backup eliminated the corrupted files. However, sometimes restoring to factory settings/new iPod is required.
    To restore from backup see:
    iOS: How to back up
    To restore to factory settings/new iPod see:
    iTunes: Restoring iOS software

  • Oracle SQL Developer 1.1.1.25.14, I rror ORA-01722 Invalid Number

    I have installed the new version of Oracle SQL Developer 1.1.1.25.14, I use Oracle 9.2. When I browse in the tree of the stored procedures and compile I obtain Error ORA-01722 Invalid Number. The previous version does not give this error. I have tried to change the decimal separator to comma ',' and point '.' but this error always appears.

    create or replace
    PROCEDURE getAge (
    dtmDataStart_in IN DATE,
    dtmDataEnd_in IN DATE,
    intYears_out OUT NUMBER,
    intMonths_out OUT NUMBER,
    intDays_out OUT NUMBER) AS
    -- Calcola il numero di anni, mesi, giorni intercorsi
    -- dalla data iniziale alla data finale.
    -- Se la data iniziale è > della data finale, le due date
    -- vengono scambiate e le variabili di output vengono ritornate
    -- con segno negativo.
    --==================================================
    -- Data Ultima Modifica: 31/07/98
    -- Aggiunta procedura per il calcolo della differenza tra
    -- due date dello stesso anno.
    --==================================================
    -- DICHIARAZIONE VARIABILI INIZIO --------------------------------------------------------
    intYMDStart NUMBER(10);
    intYMDEnd NUMBER(10);
    intYMD NUMBER(10);
    intDiffAnni NUMBER(5);
    intDiffMesi NUMBER(5);
    intDiffGiorni NUMBER(5);
    intMeseStart NUMBER(5);
    intAnnoStart NUMBER(5);
    intTotGiorniMeseStart NUMBER(5);
    ysnNegativo NUMBER(5);
    -- DICHIARAZIONE VARIABILI FINE ----------------------------------------------------------
    BEGIN
    intYMDStart := TO_NUMBER( TO_CHAR(dtmDataStart_in,'YYYYMMDD'));
    intYMDEnd := TO_NUMBER( TO_CHAR(dtmDataEnd_in,'YYYYMMDD'));
    ysnNegativo := 0;
    IF intYMDStart = intYMDEnd THEN
    intYears_out := 0;
    intMonths_out := 0;
    intDays_out := 0 ;
    ELSE
    IF intYMDStart > intYMDEnd THEN
    intYMD := intYMDStart;
    intYMDStart := intYMDEnd;
    intYMDEnd := intYMD;
    ysnNegativo := -1;
    END IF;
    intDiffAnni := TO_NUMBER(TO_CHAR(dtmDataEnd_in,'YYYY')) - TO_NUMBER(TO_CHAR(dtmDataStart_in ,'YYYY'));
    intDiffMesi := TO_NUMBER(TO_CHAR(dtmDataEnd_in,'MM')) - TO_NUMBER(TO_CHAR(dtmDataStart_in ,'MM'));
    intDiffGiorni := TO_NUMBER(TO_CHAR(dtmDataEnd_in,'DD')) - TO_NUMBER(TO_CHAR(dtmDataStart_in ,'DD'));
    -- I valori cosi' calcolati di intDiffAnni, intDiffMesi e intDiffGiorni vanno bene
    -- ad eccezione dei seguenti casi:
    -- Sistemo intDiffAnni
    IF (intDiffMesi > 0 OR (intDiffMesi = 0 AND intDiffGiorni >= 0)) THEN
    -- intDiffAnni e' OK
    intDiffAnni := intDiffAnni;
    ELSE
    -- non e' ancora arrivato il giorno del compleanno
    intDiffAnni := intDiffAnni-1;
    END IF;
    -- Sistemo intDiffMesi
    IF (intDiffMesi > 0 AND intDiffGiorni < 0) THEN
    intDiffMesi := intDiffMesi-1;
    ELSIF (intDiffMesi < 0 ) THEN
         if(intDiffGiorni<0) THEN
         intDiffMesi := intDiffMesi+11;
    else
         intDiffMesi := intDiffMesi+12;
    END IF;
    ELSIF (intDiffMesi=0 AND intDiffGiorni<0) THEN
         intDiffMesi:=11;
    END IF;
    -- Sistemo intDiffGiorni
    -- Calcolo i giorni come (TotGiorniMeseIniziale - GiornoIniziale) + (GiornoFinale - 0)
    -- che e' uguale a fare TotGiorniMeseIniziale + (GiornoFinale-GiornoIniziale)
    IF intDiffGiorni < 0 THEN
    intMeseStart := TO_NUMBER(TO_CHAR(dtmDataStart_in ,'MM'));
    IF intMeseStart IN (1,3,5,7,8,10,12) THEN
    intTotGiorniMeseStart := 31;
    ELSIF intMeseStart = 2 THEN
    -- Da enciclopedia: sono bisestili gli anni multipli di 4
    -- esclusi i secoli che non sono multipli di 400 (Parte commentata).
    intAnnoStart := TO_NUMBER(TO_CHAR(dtmDataStart_in ,'YYYY'));
    if (intAnnoStart MOD 4) = 0
    -- AND NOT ((intAnnoStart MOD 100) = 0 AND (intAnnoStart MOD 400) <> 0)
    Then
    intTotGiorniMeseStart := 29;
    else
    intTotGiorniMeseStart := 28;
    end if;
    ELSIF intMeseStart IN (4,6,9,11) THEN
    intTotGiorniMeseStart := 30;
    END IF;
    intDiffGiorni := intDiffGiorni + intTotGiorniMeseStart;
    END IF;
    IF ysnNegativo = 0 THEN
    intDays_out := intDiffGiorni;
    intMonths_out := intDiffMesi;
    intYears_out := intDiffAnni;
    ELSE
    intDays_out := intDiffGiorni * (-1);
    intMonths_out := intDiffMesi * (-1);
    intYears_out := intDiffAnni * (-1);
    END IF;
    END IF;
    EXCEPTION
    WHEN OTHERS THEN
    RAISE;
    END getAge;
    The output result of compilation is "GETAGE Compiled", I think the 01722 error is not caused from an sql syntax error, but probably caused from an invalid or unsupported or 'strange' configuration on nationalization... the fact surprises me that the previous version did not give problems
    THANKS SO MUTCH
    */

  • Sovrapposizione caratteri

    Salve a tutti,
    ho un problema che riguarda i fonts della mia installazione, o meglio la resa grafica di questi e lo spazio che intercorre tra due caratteri. In pratica nel terminale mi capita di avere caratteri sovrapposti gli uni agli altri. Uso xfce4-terminal, ma succede anche con xterm, inoltre sto usando i liberation-fonts (ma succede con quasi tutti i fonts). Visto che ho problemi con le dimensioni dei caratteri, credo che sia un qualche problema in xorg. Però nel file di configurazione non c'è niente riguardo i fonts, quindi non so cosa toccare.
    Grazie per l'aiuto,
    Rief

    Devi essere sicuro di usare dei font monospace per il terminale.
    P.S. In caso cercassi una comunita' italiana, ti consiglio di dare uno sguardo ad Archlinux Italia.

  • Acquisizione segnale da salvare in forma matriciale

    Salve a tutti.
    Sono nuovo del forum e neofita di LabVIEW. Scrivo per chiedervi consigli e/o soluzioni per il problema che espongo di seguito.
    Ho tre segnali:
    Trigger di Frame
    Trigger di Linea
    Segnale analogico
    Il segnale analogico (variabile in un range di +- 5V) è costituito dalla serializzazione delle linee e 128 linee costituiscono un "frame".
    Ora, con la scheda PCI-5122 riesco a campionare il segnale alla frequenza desiderata (50MHz) e registrare (con il modulo WRITE MEASUREMENT FILE) un file di 128 segmenti (riconosco i 128 trigger compresi tra due frame trigger successivi) che costituiscono il frame che devo ricostruire. Il problema è che quel modulo mi mette i dati in un'unica colonna e non mi consente invece di salvarli in un formato "matriciale", ovvero salvare i 128 segmenti di dati in altrettante colonne differenti.
    Qualcuno saprebbe darmi dei suggerimenti su quale potrebbe essere la strategia giusta per acquisire i dati  salvandoli direttamente in un file (anche tipo lvm)che abbia i dati in un formato "matriciale"? ad es 5000 campioni x 128 colonne?
    Vi ringrazio anticipatamente per l'attenzione e per i consigli che mi darete

    Ciao Antonio,
    Dovresti creare un array 2D utilizzando il VI di "Initialize Array", specificando come input le dimensioni di righe e colonne. Dopo aver creato il 2D array dovrai inseirire riga per riga (o colonna per colonna) i dati provenienti dall'acquisizione
    Utilizzando un "For Loop" con shift register, puoi inserire un array 1D ad'ogni iterazione in questa matrice (array 2D) utilizzando il VI "Insert into Array"
    Ultimata la generazione dell'aray, puoi utilizzare il VI "Write To Measurement file" per scrivere il tuo array 2D dentro il file.  
    Antonios

  • Convoluzione

    Salve, io devo dare una convoluzione tra due segnali audio e poi l'uscita della convoluzione la devo elaborare con un blocco FS=Fluctuation Strength, ma in questo passaggio qualcosa non va credo sia un problema di conversione di dati, ma non capisco proprio quale sia l'errore. Premetto che un segnale arriva dalla scheda DAQ NI USB-4432 e l'altro segnale arriva da un file audio.wav. Qualchuno mi puo dire dove sbaglio? in allegato mando lo schema Labview. grazie Mille
    Elisa Pozzati
    Allegati:
    SQ_tempo_reale_prova completa.vi ‏507 KB

    Salve, ho un ulteriore problema io devo implementare questa formula   ù
    SFQI=(〖FS〗_mix/〖FS〗_anec) (1-|〖FS〗_revspeech-〖FS〗_mix |/〖FS〗_anec )((N_10S-N_10N+20)/30) e dovrebbe risultare un valore finale compreso tra 0 e 1 cosa che invece non succede cioè ho valori molto superiori o molto ineriori quindi immagino che sbaglio nell'implememntazione della formula:::qualcuno mi puo dire dove go sbagliato?
    Grazie mille
    Elisa Pozzati
    ps in allegato mando il file con il progetto completo
    Allegati:
    SQ_tempo_reale_prova completa.vi ‏463 KB

  • Premiere cs6 crash with AVCHD 1080i25 (50i)

    Problemi rilevati con Adobe Premiere pro CS6 (accelerazione GPU mercury playback engine)
                                    Sequenza AVCHD 1080i25 (50i)
                                    pixel quadrati 1920x1080 (non anamorfici).
    Video HD 16:9 interlacciato da 25 fotogrammi al secondo. Audio da 48 kHz.
    Durante l’inserimento delle transizioni tra due spezzoni video,  in determinate condizioni si verifica il seguente problema:
    Il programma Premiere pro cs6 si chiude aprendo un box di premiere in cui si avvisa che si è verificato un errore che impedisce il corretto funzionamento.
    Il report dell’errore è il seguente:
    Descrizione
    Percorso dell'applicazione che ha generato l'errore:              C:\Program Files\Adobe\Adobe Premiere Pro CS6\Adobe Premiere Pro.exe
    Firma del problema
    Nome evento problema:                APPCRASH
    Nome applicazione:                       Adobe Premiere Pro.exe
    Versione applicazione:                   6.0.3.0
    Timestamp applicazione:               505748bf
    Nome modulo con errori:              ImageRenderer.dll
    Versione modulo con errori:          6.0.3.0
    Timestamp modulo con errori:      505737fa
    Codice eccezione:                          c0000005
    Offset eccezione:                            0000000000194d12
    Versione SO:                                   6.1.7601.2.1.0.256.48
    ID impostazioni locali:                   1040
    Informazioni aggiuntive 1:            2bd8
    Ulteriori informazioni 2:                 2bd8c71a1cd21380f74033ae7aa3aadc
    Ulteriori informazioni 3:                 c17f
    Ulteriori informazioni 4:                 c17f0c31388b4071d8da94e62ac10e21
    Ulteriori informazioni sul problema
    ID bucket:                                        77863999
    Il problema si verifica inserendo, nelle transizioni, un bordo colorato. (se la transizione è applicata senza bordo colorato il problema non si presenta). Richiedendo il rendering degli effetti dell’area di lavoro o semplicemente fare avanzare la trimline per vedere l’applicazione dell’effetto il programma si chiude in crash.
    Vi elenco alcune delle molte transizioni che presentano il problema:
    comparsa a strisce girandola
    scacchiera laterale cuneo
    forme geometriche (non presenta errori la transizione cerchio) doppia porta
    cronometro blocchi zig zag
    il problema permane anche togliendo l’accelerazione GPU mercury playback engine
    Il problema non si è mai presentato nelle versioni precedenti del programma  (cs5)
    Con altri settaggi (sullo stesso pc) es: Modalità di montaggio: DV PAL
    Base temporale: 25,00 fps Impostazioni video Dimensioni fotogramma: 720h 576v (1,4587)
    Frequenza fotogrammi: 25,00 fotogrammi al secondo
    Proporzioni pixel: D1/DV PAL Widescreen 16:9 (1,4587)  Campi: Prima campo inferiore
    Il problema non si presenta.
    Ho provato ad utilizzare premiere pro su un altro PC anche quello con programma originale installato ed ho riscontrato gli stessi problemi.
    Configurazione del sistema:
                   Sistema operativo: Windows 7 professional 64bit versione 6.1.7601 service pack build 7601
                   Hardware:   Scheda madre Gigabyte tecnology GA-X58a-UD5 (rev.2)
                                          Bios Award versione FD (data 01/02/2011)
            Processore intel core i7
                                          Cpu 3,20 ghz, 3193  mhz,4 core, 8 processori logici
                                          Memoria fisica (RAM) 12,0 GB ddr3
                                          Scheda grafica NVIDIA GE Force GTX 285
                                          Hard Disk 1000GB sata6;    750 GB sata6;    500 GB sata6
                   Software:   Adobe Master collection CS

    Sorry,
    here english translation
    Problem with Adobe Premiere pro CS6 (GPU mercury playback engine)
                                    AVCHD 1080i25 (50i)
                                    square pixel 1920x1080 (not anamorfic).
    Video HD 16:9 interlaced  25 fps. Audio da 48 kHz.
    If I apply a transition between two clips Premiere pro cs6 crash with the following report
    Description
    Percorso dell'applicazione che ha generato l'errore:              C:\Program Files\Adobe\Adobe Premiere Pro CS6\Adobe Premiere Pro.exe
    Firma del problema
    Nome evento problema:                APPCRASH
    Nome applicazione:                       Adobe Premiere Pro.exe
    Versione applicazione:                   6.0.3.0
    Timestamp applicazione:               505748bf
    Nome modulo con errori:              ImageRenderer.dll
    Versione modulo con errori:          6.0.3.0
    Timestamp modulo con errori:      505737fa
    Codice eccezione:                          c0000005
    Offset eccezione:                            0000000000194d12
    Versione SO:                                   6.1.7601.2.1.0.256.48
    ID impostazioni locali:                   1040
    Informazioni aggiuntive 1:            2bd8
    Ulteriori informazioni 2:                 2bd8c71a1cd21380f74033ae7aa3aadc
    Ulteriori informazioni 3:                 c17f
    Ulteriori informazioni 4:                 c17f0c31388b4071d8da94e62ac10e21
    Ulteriori informazioni sul problema
    ID bucket:                                        77863999
    This problem appear only if I apply a colored border to the clips. I if move on the timeline or request the rendering the system crash.
    Not all transition generate a crash (circle work fine). But some yes.
    Vi elenco alcune delle molte transizioni che presentano il problema:
    stripes pinwheel
    board side wedge
    geometric shapes
    trial blocks zig zag
    The problem remain also if I remove GPU mercury playback engine acceleration
    With the previous version of Premiere I never had this problem
    With other settings (on same pc) the system work fine es:  DV PAL
    Time Base: 25,00 fps  video size: 720h 576v (1,4587)
    25,00fps
    pixel: D1/DV PAL Widescreen 16:9 (1,4587) 
    THE SYSTEM DON'T CRASH
    I asked a friend also with grenuine program installed and with the AVCHD 1080i25 (50i) settings the system crash too
    System config:
                   Windows 7 professional 64bit vers. 6.1.7601 service pack build 7601
                   Hardware:   Motherboard Gigabyte tecnology GA-X58a-UD5 (rev.2)
                                          Bios Award versione FD (data 01/02/2011)
            Processor intel core i7
                                          Cpu 3,20 ghz, 3193  mhz,4 core, 8 processori logici
                                           (RAM) 12,0 GB ddr3
                                           NVIDIA GE Force GTX 285
                                          Hard Disk 1000GB sata6;    750 GB sata6;    500 GB sata6
                   Software:   Adobe Master collection CS

  • Tra le opzioni non c'è l'Italiano

    Come posso cambiare la lingua su adobe Photoshop elements 12 Editor se la lingua Italiana non è neppure menzionata tra le opzioni?...
    Potete aiutarmi ?
    Grazie

    Espulsi i due dischi esterni...
    ...ricollegato disco "problematico"...
    ...al tentativo di cancellare (tasto destro > sposta nel cestino) l'icona del disco "problematico" ricevo il seguente messaggio di errore...
    Considerato che sono loggato come amministratore e che dalle informazioni del disco dovrei disporre di diritti di lettura e scrittura sul disco, cosa mi consigli di provare a fare?
    Grazie,
    Renato

  • Buongiorno, dopo aver scaricato la versione di prova qualche mese fa, due giorni fa ho acquistato il pacchetto lightroom photoshop CC . Purtroppo quando cerco di aprire photoshop mi viene richiesto il numero di serie. Come posso procedere?

    Buongiorno, dopo aver scaricato la versione di prova qualche mese fa, due giorni fa ho acquistato il pacchetto lightroom photoshop CC . Purtroppo quando cerco di aprire photoshop mi viene richiesto il numero di serie. Come posso procedere?

    Ciao,
    si, ho contattato il servizio clienti via chat e mi hanno aiutata a risolvere il problema! Dovevo semplicemente eliminare il file hosts, ma adesso non ricordo il procedimento esatto! Dovrebbe essere scritto anche sul sito tra le risoluzioni dei problemi!
    Se la ritrovo ti spedisco una mail che mi avevano mandato da Adobe!
    Spero che tu riesca a risolvere il problema!
    Inviato da iPhone
    Il giorno 26 Jul 2014, alle ore 00:13, andrea farioli <[email protected]> ha scritto:
    Buongiorno, dopo aver scaricato la versione di prova qualche mese fa, due giorni fa ho acquistato il pacchetto lightroom photoshop CC . Purtroppo quando cerco di aprire photoshop mi viene richiesto il numero di serie. Come posso procedere?
    created by andrea farioli in Photoshop General Discussion - View the full discussion
    Stesso problema. Ci sei riuscita per caso?
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6584777#6584777
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Photoshop General Discussion by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Sincronizzazione mail iphone4-ipad-macbook

    Sincronizzazione email iphone-ipad-Mac
    salve ragazzi, volevo un aiuto sulla sincronizzazione delle email tra iphone4,ipad3,mac. La problematica riscontrata è che dal mac riesco a ritrovare tutte le email ricevute(già lette), archiviate nelle caselle, inviate etc... mentre su iphone e ipad la cosa non succede.
    Io vorrei avere le stesse email e la stessa possibilità di ritrovarle in tutti e tre dispositivi perchè per lavoro spesso capita di dover ritrovare delle email mentre sono in giro e invece non le ritrovo, cosa invece che mi riesce facile farlo se ho con me il mac.
    Grazie spero di essere stato chiaro.

    Sorry, but no. POP3 versus IMAP has nothing to do with keeping spam off your computer. Your ISP should be doing its filtering before the mail reached the mail server in either case, and your Mac would be doing its filtering after downloading the mail from the mail server in either case. (Your iPad does no filtering at all.)

  • ICloud disattiva la sincronizzazione improvvisamente [iPhone]

    Ieri sul mio iPhone (4S 64GB) mi sono spariti tutti i contatti dall'iPhone e quando vado a vedere nelle impostazioni trovo tutti i toggle della sincronizzazione con iCloud disattivati. Li riattivo tutti uno per uno e aspetto che finisca di sincronizzare. Dopo circa 5min tutti i dati di iCloud si ritrovano sul mio iPhone. Ma dopo circa 1 ora ritorna tutto da capo, riattivo tutto e mi ripropone questo problema per altre 5 volte, come posso fare?
    P.S. Ho un anche un iPhone 5 dove è sincronizzato lo stesso account di iCloud e non mi dà  nessun problema.

    L'avevo fatto ma purtroppo non aveva funzionato (cancellavo i contatti, ma poi li ripristinava comunque pasticciati).
    Per le foto poco male, le ho reinserite abbastanza facilmente. I pasticci nel campo note, invece, mi stanno prendendo molto più tempo (a mesi di distanza ho avuto il tempo di correggere poche centinaia di contatti).
    Altro bug: non funziona lo streaming photo con l'iPad se si imposta la sincronizzazione a partire da una cartella specifica del Mac invece che da iPhoto (mentre lo streaming photo funziona regolarmente tra Mac e iPhone).
    Insomma, questo iCloud ha bisogno di varie messe a punto...

  • Bit locker drive encryption failed due to power failer and hard disk corrupted

    I ran Bitlocker drive ecryption drive D. My pc is windows 7 ultimate, while it was in progress of 1% due to power failer the encryption failed, when power resume the drive didn't showed the file format nor the size but it shows the size in disk management.
    It showed like this in My computer
    I do Have the recovery code password and back of recovery password so I ran the "manage-bde-_unlock D:-rp[my code ]
    and my pc got hang  no other option rather than to press the restart button. 
    then I used commang "repair-bde -force D:I:-rp[my rp] and following info showed but it stucked in 1% about 8 hours, and there was no increase in the pecentage
    I also connected the hardisk to mac but all othe partation showed but didn't showed the encrypted one.
    I had lots of memorable picture and other backups so any one kindly help me to get out of this problem. Thanks for help

    Hi,
    The BitLocker encryption and decryption processes can be interrupted by turning the computer off, and it will resume where it left off the next time Windows starts. This is true even if the power is suddenly unavailable.
    Bitlocker-repair (repair-bde)  tool
    can't repair a drive that failed during the encryption or decryption process.
    In addition, could you please explain a bit for what drive you are trying to deal with? external one?
    When you first restart your PC, have you seen any signs that indicate that the encryption is in process?
    Regarding your scenario, please take a look to see if the following articles could help here:
    Scenario 11: Recovering Data Protected by BitLocker Drive Encryption (Windows 7)
    Besides, when running manage-bde command, did we followed the steps mentioned in the below article?
    Scenario 14: Using a Data Recovery Agent to Recover BitLocker-Protected Drives (Windows 7)
    Best regards
    Michael Shao
    TechNet Community Support

  • I am using Windows 8.1 i have an External Hard Disk and one drive is now inaccessible due to sudden power failure few days ago. Now it shows "Data error (Cyclic redundancy check)". I want all my important files and Pics. How ?

    Hi,
    I am using Windows 8.1
    I have an External Hard Disk i have partitioned it to 4 parts.
    One drive is now inaccessible due to sudden power failure while listening Music from that drive few days ago.
    Now it shows "Data error (Cyclic redundancy check)".
    I tried all the procedures provided here like
    chkdsk /f, diskpart, rescan etc
    but no result :( (i mean all processes failed. They could not detect the drive).
    Please help me to get those data, pictures and project files.
    thank you

    Then why aren't you posting this in the Windows 8 forums found @
    http://social.technet.microsoft.com/Forums/windows/en-US/home?category=w8itpro
    This is a Windows 7 forum for discussion about Windows 7.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • Due to my laptop screen failing i have to return to facory settings, can i reinstall adobe reader and adobe air afterwards?

    Due to my laptop screen failing I have to return it to factory settings, can I reinstall adobe reader and air afterwards?

    I don't see why not. Do you foresee a special difficulty?

  • Mid 2010 Macbook Pro Keeps Restarting due to Kernel Panic. Ideas for how to fix?

    So my Mid 2010 Macbook Pro keeps randomly restarting, and giving me a screen that says something like "your computer restarted due to a problem."
    Looks like it as a kernel panic, but I have no idea what this is.  Seems to be no pattern for when it crashes.  Used to do it maybe once a month and now this is the 5th time in two days.
    Any idea what might be going on? Looked at past threads but nothing seemed to apply. 
    Here's the issue report:
    Interval Since Last Panic Report:  3966250 sec
    Panics Since Last Report:          13
    Anonymous UUID:                    7A9C4557-3A15-F201-C5F0-248B698BCE76
    Sun Mar  3 14:26:35 2013
    panic(cpu 3 caller 0xffffff7f85c9bb25): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff811930d000 0x0a5480a2, D0, P2/4
    Backtrace (CPU 3), Frame : Return Address
    0xffffff80edd0b260 : 0xffffff800541d626
    0xffffff80edd0b2d0 : 0xffffff7f85c9bb25
    0xffffff80edd0b360 : 0xffffff7f85d954b3
    0xffffff80edd0b3c0 : 0xffffff7f85d95527
    0xffffff80edd0b430 : 0xffffff7f860aa853
    0xffffff80edd0b570 : 0xffffff7f85dbb659
    0xffffff80edd0b5a0 : 0xffffff7f85ca58da
    0xffffff80edd0b650 : 0xffffff7f85ca0fac
    0xffffff80edd0b840 : 0xffffff7f85ca2ade
    0xffffff80edd0b920 : 0xffffff7f86dccad5
    0xffffff80edd0b960 : 0xffffff7f86de2507
    0xffffff80edd0b980 : 0xffffff7f86e01353
    0xffffff80edd0b9c0 : 0xffffff7f86e013b1
    0xffffff80edd0ba00 : 0xffffff7f86de7c43
    0xffffff80edd0ba50 : 0xffffff7f86da20fc
    0xffffff80edd0bae0 : 0xffffff7f86d9defa
    0xffffff80edd0bb10 : 0xffffff7f86d9baab
    0xffffff80edd0bb40 : 0xffffff80058650c3
    0xffffff80edd0bbc0 : 0xffffff8005867153
    0xffffff80edd0bc20 : 0xffffff8005864b8f
    0xffffff80edd0bd70 : 0xffffff80054981e1
    0xffffff80edd0be80 : 0xffffff8005420aed
    0xffffff80edd0beb0 : 0xffffff8005410448
    0xffffff80edd0bf00 : 0xffffff800541961b
    0xffffff80edd0bf70 : 0xffffff80054a5b16
    0xffffff80edd0bfb0 : 0xffffff80054ced53
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(8.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f85c34 000->0xffffff7f85f36fff
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f859bf000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f85c20000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f85bdd000
             com.apple.nvidia.nv50hal(8.0)[9F3D09B5-3158-3D9E-BDA3-E71576AAD3B7]@0xffffff7f8 5f44000->0xffffff7f86266fff
                dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f85c 34000
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f859bf000
             com.apple.GeForce(8.0)[2E56ED9A-D848-3795-9E52-56BABDC9000C]@0xffffff7f86d83000 ->0xffffff7f86e45fff
                dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f85c 34000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f85c20000
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f859bf000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f85bdd000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    12C54
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID: 69A5853F-375A-3EF4-9247-478FD0247333
    Kernel slide:     0x0000000005200000
    Kernel text base: 0xffffff8005400000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 13893412243014
    last loaded kext at 739492449806: com.apple.filesystems.smbfs          1.8 (addr 0xffffff7f8793f000, size 229376)
    last unloaded kext at 341224120991: com.apple.driver.AppleUSBUHCI          5.2.5 (addr 0xffffff7f86496000, size 65536)
    loaded kexts:
    com.silex.driver.sxuptp          1.5.1
    com.jft.driver.PdaNetDrv          1.0.64
    com.apple.filesystems.smbfs          1.8
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AGPM          100.12.69
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleHDA          2.3.1f2
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.AppleSMCLMU          2.0.2d0
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.AppleIntelHDGraphics          8.0.0
    com.apple.driver.AppleIntelHDGraphicsFB          8.0.0
    com.apple.driver.AppleMuxControl          3.2.11
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f33
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.2.11
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleMikeyDriver          2.3.1f2
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.GeForce          8.0.0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.SMCMotionSensor          3.0.2d6
    com.apple.driver.AppleUSBTCButtons          235.4
    com.apple.driver.AppleUSBCardReader          3.1.0
    com.apple.driver.AppleUSBTCKeyboard          235.4
    com.apple.driver.AppleIRController          320.15
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.iokit.SCSITaskUserClient          3.5.1
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.2
    com.apple.driver.AppleUSBHub          5.2.5
    com.apple.driver.AirPort.Brcm4331          602.15.22
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.driver.AppleAHCIPort          2.4.1
    com.apple.iokit.AppleBCM5701Ethernet          3.2.5b3
    com.apple.driver.AppleUSBEHCI          5.4.0
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.3.1f2
    com.apple.iokit.IOAudioFamily          1.8.9fc10
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.iokit.IOSurface          86.0.3
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.iokit.IOBluetoothFamily          4.0.9f33
    com.apple.driver.AppleGraphicsControl          3.2.11
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.nvidia.nv50hal          8.0.0
    com.apple.NVDAResman          8.0.0
    com.apple.iokit.IONDRVSupport          2.3.5
    com.apple.driver.AppleHDAController          2.3.1f2
    com.apple.iokit.IOGraphicsFamily          2.3.5
    com.apple.iokit.IOHDAFamily          2.3.1f2
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.1
    com.apple.iokit.IOUSBMassStorageClass          3.5.0
    com.apple.driver.AppleUSBMultitouch          235.7
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.driver.AppleUSBMergeNub          5.2.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.iokit.IOUSBUserClient          5.2.5
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOAHCIFamily          2.2.1
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOUSBFamily          5.4.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7.1
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i5, 2.4 GHz, 8 GB, SMC 1.58f16
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x857F, 0x483634353155363446373036364700000000
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x8634, 0x535550455254414C454E5430310000000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.81.22)
    Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet Adaptor (en2), Ethernet, en2
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK3255GSXF, 320.07 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS23N
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 8
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

    So my Mid 2010 Macbook Pro keeps randomly restarting, and giving me a screen that says something like "your computer restarted due to a problem."
    Looks like it as a kernel panic, but I have no idea what this is.  Seems to be no pattern for when it crashes.  Used to do it maybe once a month and now this is the 5th time in two days.
    Any idea what might be going on? Looked at past threads but nothing seemed to apply. 
    Here's the issue report:
    Interval Since Last Panic Report:  3966250 sec
    Panics Since Last Report:          13
    Anonymous UUID:                    7A9C4557-3A15-F201-C5F0-248B698BCE76
    Sun Mar  3 14:26:35 2013
    panic(cpu 3 caller 0xffffff7f85c9bb25): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff811930d000 0x0a5480a2, D0, P2/4
    Backtrace (CPU 3), Frame : Return Address
    0xffffff80edd0b260 : 0xffffff800541d626
    0xffffff80edd0b2d0 : 0xffffff7f85c9bb25
    0xffffff80edd0b360 : 0xffffff7f85d954b3
    0xffffff80edd0b3c0 : 0xffffff7f85d95527
    0xffffff80edd0b430 : 0xffffff7f860aa853
    0xffffff80edd0b570 : 0xffffff7f85dbb659
    0xffffff80edd0b5a0 : 0xffffff7f85ca58da
    0xffffff80edd0b650 : 0xffffff7f85ca0fac
    0xffffff80edd0b840 : 0xffffff7f85ca2ade
    0xffffff80edd0b920 : 0xffffff7f86dccad5
    0xffffff80edd0b960 : 0xffffff7f86de2507
    0xffffff80edd0b980 : 0xffffff7f86e01353
    0xffffff80edd0b9c0 : 0xffffff7f86e013b1
    0xffffff80edd0ba00 : 0xffffff7f86de7c43
    0xffffff80edd0ba50 : 0xffffff7f86da20fc
    0xffffff80edd0bae0 : 0xffffff7f86d9defa
    0xffffff80edd0bb10 : 0xffffff7f86d9baab
    0xffffff80edd0bb40 : 0xffffff80058650c3
    0xffffff80edd0bbc0 : 0xffffff8005867153
    0xffffff80edd0bc20 : 0xffffff8005864b8f
    0xffffff80edd0bd70 : 0xffffff80054981e1
    0xffffff80edd0be80 : 0xffffff8005420aed
    0xffffff80edd0beb0 : 0xffffff8005410448
    0xffffff80edd0bf00 : 0xffffff800541961b
    0xffffff80edd0bf70 : 0xffffff80054a5b16
    0xffffff80edd0bfb0 : 0xffffff80054ced53
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(8.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f85c34 000->0xffffff7f85f36fff
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f859bf000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f85c20000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f85bdd000
             com.apple.nvidia.nv50hal(8.0)[9F3D09B5-3158-3D9E-BDA3-E71576AAD3B7]@0xffffff7f8 5f44000->0xffffff7f86266fff
                dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f85c 34000
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f859bf000
             com.apple.GeForce(8.0)[2E56ED9A-D848-3795-9E52-56BABDC9000C]@0xffffff7f86d83000 ->0xffffff7f86e45fff
                dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f85c 34000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f85c20000
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f859bf000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f85bdd000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    12C54
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID: 69A5853F-375A-3EF4-9247-478FD0247333
    Kernel slide:     0x0000000005200000
    Kernel text base: 0xffffff8005400000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 13893412243014
    last loaded kext at 739492449806: com.apple.filesystems.smbfs          1.8 (addr 0xffffff7f8793f000, size 229376)
    last unloaded kext at 341224120991: com.apple.driver.AppleUSBUHCI          5.2.5 (addr 0xffffff7f86496000, size 65536)
    loaded kexts:
    com.silex.driver.sxuptp          1.5.1
    com.jft.driver.PdaNetDrv          1.0.64
    com.apple.filesystems.smbfs          1.8
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AGPM          100.12.69
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleHDA          2.3.1f2
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.AppleSMCLMU          2.0.2d0
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.AppleIntelHDGraphics          8.0.0
    com.apple.driver.AppleIntelHDGraphicsFB          8.0.0
    com.apple.driver.AppleMuxControl          3.2.11
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f33
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.2.11
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleMikeyDriver          2.3.1f2
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.GeForce          8.0.0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.SMCMotionSensor          3.0.2d6
    com.apple.driver.AppleUSBTCButtons          235.4
    com.apple.driver.AppleUSBCardReader          3.1.0
    com.apple.driver.AppleUSBTCKeyboard          235.4
    com.apple.driver.AppleIRController          320.15
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.iokit.SCSITaskUserClient          3.5.1
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.2
    com.apple.driver.AppleUSBHub          5.2.5
    com.apple.driver.AirPort.Brcm4331          602.15.22
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.driver.AppleAHCIPort          2.4.1
    com.apple.iokit.AppleBCM5701Ethernet          3.2.5b3
    com.apple.driver.AppleUSBEHCI          5.4.0
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.3.1f2
    com.apple.iokit.IOAudioFamily          1.8.9fc10
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.iokit.IOSurface          86.0.3
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.iokit.IOBluetoothFamily          4.0.9f33
    com.apple.driver.AppleGraphicsControl          3.2.11
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.nvidia.nv50hal          8.0.0
    com.apple.NVDAResman          8.0.0
    com.apple.iokit.IONDRVSupport          2.3.5
    com.apple.driver.AppleHDAController          2.3.1f2
    com.apple.iokit.IOGraphicsFamily          2.3.5
    com.apple.iokit.IOHDAFamily          2.3.1f2
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.1
    com.apple.iokit.IOUSBMassStorageClass          3.5.0
    com.apple.driver.AppleUSBMultitouch          235.7
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.driver.AppleUSBMergeNub          5.2.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.iokit.IOUSBUserClient          5.2.5
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOAHCIFamily          2.2.1
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOUSBFamily          5.4.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7.1
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i5, 2.4 GHz, 8 GB, SMC 1.58f16
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x857F, 0x483634353155363446373036364700000000
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x8634, 0x535550455254414C454E5430310000000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.81.22)
    Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet Adaptor (en2), Ethernet, en2
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK3255GSXF, 320.07 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS23N
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 8
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

Maybe you are looking for

  • How do I save a PDF as v1.4 in Acrobat Pro?

    Hello, I am currently using the Adobe Acrobat X Pro. I am being sent documents that I must change to v1.4. So far I have been sent v1.3, v1.5, v1.6, v 1.7. I MUST change the versions of the PDFs provided to v1.4 because I then send the documents to s

  • Satellite C855-1GQ - hard drive failure warning

    Hi suddenly my laptop has started showing me "hard drive failure warnings" and I honestly have no idea what to do about it please can someone help me. Symptom: The PredictFailure flag is set on the disk Cause: A logical disk has the SMART Predict Fai

  • Word order in searches matters?

    I am fairly new to FCS ... but have a simple question. I have some assets named "Ukraine Gypsy-1" and "Ukraine Gypsy-2" (no quotation marks in the actual names). I do a very simple search, typing in the words ukraine and gypsy (no quotation marks, no

  • I was wondering if there is a way to change an app from iPod version to iPad version.

    I recently upgraded my iPod to a iPad. I bought a few apps like FF1 and FF2 and angry birds. I was wondering how I would change the apps from iPod version to iPad without having to buy the apps again.

  • Unreported exception during connection

    hi all, I am trying to connect to the database.I am using Class.forName("oracle.jdbc.driver.OracleDriver"); connection = DriverManager.getConnection(driver+"@"+host+":"+port+":"+serverID,userID,password); statement = connection.createStatement(); but