Windows 11 Windows 11 - Pagina 5

Pagina 5 di 44 PrimaPrima ... 3456715 ... UltimaUltima
Risultati da 81 a 100 di 871

Discussione: Windows 11

  1. #81
    Senior Member
    Data Registrazione
    Jan 2016
    Messaggi
    7.237

    Re: Windows 11

    Citazione Originariamente Scritto da Roland Visualizza Messaggio
    Qualcuno sa invece come attivare il secure boot? Ho una scheda MSI e per attivarlo da bios devo rimuovere l'opzione Legacy+UEFI e mettere solo UEFI.
    Fatto questo però nelle selezioni di boot mi rimuove l'HDD dove ho installato Windows e mi visualizza solo componenti UEFI che non so cosa siano.
    A quel punto se riavvio mi torna sempre nel bios perchè chiaramente quei componenti non esistono e devo rimuovere Secure boot, mettere Legacy+UEFI e mi riappare il tutto.
    Chiaramente poi mi dice che W11 non è compatibile.
    Fra l'altro il tool che testa la compatibilità nemmeno mi funziona più, perchè sembra cerchi sempre di aggiornarsi e si chiude e a nulla è valso il continuarlo a disinstallarlo.
    Allora:

    1- Il secure boot puoi abilitarlo solo se utilizzi UEFI (direi che te ne sei già accorto).

    2- Se non era attivato vuol dire che probabilmente quando hai installato Windows lo hai fatto senza UEFI, quindi a questo punto se vuoi cambiare devi reinstallarti Windows in UEFI o il sistema operativo non ti si avvia.

  2. #82
    Senior Member L'avatar di GeeGeeOH
    Data Registrazione
    Jan 2016
    Messaggi
    10.444

    Re: Windows 11

    Citazione Originariamente Scritto da Roland Visualizza Messaggio
    Qualcuno sa invece come attivare il secure boot? Ho una scheda MSI e per attivarlo da bios devo rimuovere l'opzione Legacy+UEFI e mettere solo UEFI.
    Fatto questo però nelle selezioni di boot mi rimuove l'HDD dove ho installato Windows e mi visualizza solo componenti UEFI che non so cosa siano.
    A quel punto se riavvio mi torna sempre nel bios perchè chiaramente quei componenti non esistono e devo rimuovere Secure boot, mettere Legacy+UEFI e mi riappare il tutto.
    Ti vede l'HDD con Legacy+UEFI.
    Ma se metti solo UEFI non te lo vede.
    L'installazione su quel HDD non è UEFI ma Legacy.
    Non sono passaggi logici tanto complessi.

    Probabilmente è solo questione di Master Boot Record (usato in Legacy) vs. GUID Partition Table che serve per UEFI.
    Per verificare basta:

    C'è il tool MBR2GPT per convertire il disco senza perdere dati.
    Ma tanto vale aspettare che esca 11 e fare installazione pulita.
    Ultima modifica di GeeGeeOH; 26-06-21 alle 07:15
    AMD R7 5800X 8C/16T, Noctua NH-D15, Gigabyte X570 AORUS ELITE, 16GB DDR4 3600MT/s CL16, AMD Rx 6800
    SSDs: 960EVO 500GB M.2, 860QVO 2TB SATA | HDDs: Exos X16 12TB, Exos X18 16TB, 2xExos X18 18TB | Windows 11 Pro

  3. #83
    Senior Member L'avatar di Roland
    Data Registrazione
    Jan 2016
    Messaggi
    2.887

    Re: Windows 11

    Cioè devo reinstallare Windows? Vabbè, passo...
    Però mi sembra strano non si veda nel bios nella sezione boot il mio M2 e nemmeno quello meccanico.
    Ultima modifica di Roland; 26-06-21 alle 08:56

  4. #84
    Senior Member L'avatar di GeeGeeOH
    Data Registrazione
    Jan 2016
    Messaggi
    10.444

    Re: Windows 11

    No...
    AMD R7 5800X 8C/16T, Noctua NH-D15, Gigabyte X570 AORUS ELITE, 16GB DDR4 3600MT/s CL16, AMD Rx 6800
    SSDs: 960EVO 500GB M.2, 860QVO 2TB SATA | HDDs: Exos X16 12TB, Exos X18 16TB, 2xExos X18 18TB | Windows 11 Pro

  5. #85
    Malmostoso L'avatar di Necronomicon
    Data Registrazione
    Jan 2016
    Messaggi
    34.778

    Re: Windows 11

    Pare abbiano confermato che la mia cpu non sarà supportata per la transizione

  6. #86
    Senior Member L'avatar di GeeGeeOH
    Data Registrazione
    Jan 2016
    Messaggi
    10.444

    Re: Windows 11

    Citazione Originariamente Scritto da Necronomicon Visualizza Messaggio
    Pare abbiano confermato che la mia cpu non sarà supportata per la transizione
    Che sarebbe?
    AMD R7 5800X 8C/16T, Noctua NH-D15, Gigabyte X570 AORUS ELITE, 16GB DDR4 3600MT/s CL16, AMD Rx 6800
    SSDs: 960EVO 500GB M.2, 860QVO 2TB SATA | HDDs: Exos X16 12TB, Exos X18 16TB, 2xExos X18 18TB | Windows 11 Pro

  7. #87
    Lavora Troppo L'avatar di Ceccazzo
    Data Registrazione
    Jan 2016
    Messaggi
    29.686

    Re: Windows 11

    ho lanciato il tool custom ( Win11SysCheck ), mi dice "Firmware checking: 1 , Boot firmware 1 not allowed"

    che vuol dire?

  8. #88
    Senior Member L'avatar di GeeGeeOH
    Data Registrazione
    Jan 2016
    Messaggi
    10.444

    Re: Windows 11

    Andando a guardare rapidamente il codice https://github.com/mq1n/Win11SysCheck/releases/tag/4

    // UEFI
    {
    std::cout << "Firmware checking..." << std::endl;
    ULONG cbSize = 0;
    SYSTEM_BOOT_ENVIRONMENT_INFORMATION sbei{ 0 };
    const auto ntStatus = NtQuerySystemInformation(SystemBootEnvironmentInfo rmation, &sbei, sizeof(sbei), &cbSize);
    if (ntStatus != STATUS_SUCCESS)
    {
    std::cerr << "NtQuerySystemInformation(SystemBootEnvironmentInf ormation) failed with status: " << std::hex << ntStatus << std::endl;
    std::system("PAUSE");
    return EXIT_FAILURE;
    }
    std::cout << "\tFirmware type: " << sbei.FirmwareType << std::endl;
    if (sbei.FirmwareType != FirmwareTypeUefi)
    {
    std::cerr << "Boot firmware: " << sbei.FirmwareType << " is not allowed!" << std::endl;
    std::system("PAUSE");
    return EXIT_FAILURE;
    }
    std::cout << "Firmware check passed!" << std::endl;
    }
    Sembrerebbe che non hai attivato l'UEFI.

    Sarebbe da chiedere a chi l'ha scritto...
    AMD R7 5800X 8C/16T, Noctua NH-D15, Gigabyte X570 AORUS ELITE, 16GB DDR4 3600MT/s CL16, AMD Rx 6800
    SSDs: 960EVO 500GB M.2, 860QVO 2TB SATA | HDDs: Exos X16 12TB, Exos X18 16TB, 2xExos X18 18TB | Windows 11 Pro

  9. #89
    Lavora Troppo L'avatar di Ceccazzo
    Data Registrazione
    Jan 2016
    Messaggi
    29.686

    Re: Windows 11

    io ho sicuramente attivato il secure boot con Uefi for windows, o una roba del genere. Ho una scheda madre amd

  10. #90
    Malmostoso L'avatar di Necronomicon
    Data Registrazione
    Jan 2016
    Messaggi
    34.778

    Re: Windows 11

    Citazione Originariamente Scritto da GeeGeeOH Visualizza Messaggio
    Che sarebbe?
    i5 4490k (credo).
    Ma dato che è di 5 anni fa e fa girare tutto, mi pare abbastanza assurdo che non funzioni con 11. Han voluto dare una bella sfoltita all'hardware

  11. #91
    Lavora Troppo L'avatar di Ceccazzo
    Data Registrazione
    Jan 2016
    Messaggi
    29.686

    Re: Windows 11

    Citazione Originariamente Scritto da Ceccazzo Visualizza Messaggio
    io ho sicuramente attivato il secure boot con Uefi for windows, o una roba del genere. Ho una scheda madre amd
    boh guardando un po' in giro vedo che il bios si avvia in legacy mode e non uefi, vedo che devo fare una procedura di conversione dell'hd che non ho voglia di seguire. Se metto nel bios "pure uefi" come boot mode non va e al riavvio mi ritorna nella schermata del bios

    How do I enable UEFI Mode?

    You must ensure that your PC’s hard drive and operating system are configured to run in UEFI Mode. Please follow the steps in this Microsoft® video to verify or implement the correct configuration for Windows® 10. https://youtu.be/hfJep4hmg9o
    After completing the “MBR2GPT process” described in the video, restart your PC.
    As your PC is initially powering on, enter your UEFI menu by rapidly pressing the appropriate hotkey. Oftentimes this hotkey will be “delete” or “F2,” but your motherboard’s manufacturer can choose any key and will indicate the correct key on your display.
    Once inside the UEFI interface, you must locate a setting containing the text “Compatibility Support Module” or “CSM” and set this menu entry to DISABLED. More rarely, your UEFI firmware may offer a sub-menu called “Boot Mode” that will let you select “Pure UEFI” as the desired option. The exact location of these menus and settings will vary from system to system, but you are likely to find it as an option in the “Boot” menu, and it is safe to navigate between menu screens until you find the correct location. Disabling CSM will disable Legacy Mode on your motherboard and enable the full UEFI Mode that your system requires.
    Save your settings and exit the UEFI interface. This can often be done with the “F10” key, but there will be a menu option to save and exit as well.
    The PC will restart and will now be configured in UEFI mode.


    Immagino troveranno una soluzione meno invasiva, brava microsoft!

  12. #92
    Senior Member L'avatar di GeeGeeOH
    Data Registrazione
    Jan 2016
    Messaggi
    10.444

    Re: Windows 11

    Citazione Originariamente Scritto da Necronomicon Visualizza Messaggio
    i5 4490k (credo).
    Ma dato che è di 5 anni fa e fa girare tutto, mi pare abbastanza assurdo che non funzioni con 11. Han voluto dare una bella sfoltita all'hardware
    Che non sia ufficialmente supportato non vuol dire che non va.
    Quella CPU ha l'Intel® Identity Protection Technology.

    - - - Aggiornato - - -

    Citazione Originariamente Scritto da Ceccazzo Visualizza Messaggio
    boh guardando un po' in giro vedo che il bios si avvia in legacy mode
    Per fortuna che eri sicuro...
    Ultima modifica di GeeGeeOH; 26-06-21 alle 13:09
    AMD R7 5800X 8C/16T, Noctua NH-D15, Gigabyte X570 AORUS ELITE, 16GB DDR4 3600MT/s CL16, AMD Rx 6800
    SSDs: 960EVO 500GB M.2, 860QVO 2TB SATA | HDDs: Exos X16 12TB, Exos X18 16TB, 2xExos X18 18TB | Windows 11 Pro

  13. #93
    Senior Member L'avatar di Lord_Barba
    Data Registrazione
    Jan 2016
    Località
    Albenga (SV)
    Messaggi
    2.362
    Gamer IDs

    Gamertag: Lord Barba Steam ID: Lord_Barba

    Re: Windows 11

    Citazione Originariamente Scritto da GeeGeeOH Visualizza Messaggio
    Che non sia ufficialmente supportato non vuol dire che non va.
    Quella CPU ha l'Intel® Identity Protection Technology.
    Infatti.

    Ho letto le liste con le CPU Intel supportate e, stando a queste, le CPU Intel 2500, 2600 e 5930 non sono supportate neanche da Windows 10.

    https://docs.microsoft.com/en-us/win...r-requirements

    Ovviamente, come scritto anche nella pagina MS, il fatto che non siano supportate non significa che non si possano usare.

    Resta da capire la questione del TPM, perché boh, dire le cose chiaramente sarebbe stato troppo assurdo forse...

  14. #94
    Senior Member L'avatar di GeeGeeOH
    Data Registrazione
    Jan 2016
    Messaggi
    10.444

    Re: Windows 11

    La confusione nasce perché la stragrande maggioranza della gente non conosce queste tecnologie... ed ha la presunzione di sapere.
    AMD R7 5800X 8C/16T, Noctua NH-D15, Gigabyte X570 AORUS ELITE, 16GB DDR4 3600MT/s CL16, AMD Rx 6800
    SSDs: 960EVO 500GB M.2, 860QVO 2TB SATA | HDDs: Exos X16 12TB, Exos X18 16TB, 2xExos X18 18TB | Windows 11 Pro

  15. #95
    Senior Member L'avatar di Roland
    Data Registrazione
    Jan 2016
    Messaggi
    2.887

    Re: Windows 11

    Citazione Originariamente Scritto da Ceccazzo Visualizza Messaggio
    boh guardando un po' in giro vedo che il bios si avvia in legacy mode e non uefi, vedo che devo fare una procedura di conversione dell'hd che non ho voglia di seguire. Se metto nel bios "pure uefi" come boot mode non va e al riavvio mi ritorna nella schermata del bios

    How do I enable UEFI Mode?

    You must ensure that your PC’s hard drive and operating system are configured to run in UEFI Mode. Please follow the steps in this Microsoft® video to verify or implement the correct configuration for Windows® 10. https://youtu.be/hfJep4hmg9o
    After completing the “MBR2GPT process” described in the video, restart your PC.
    As your PC is initially powering on, enter your UEFI menu by rapidly pressing the appropriate hotkey. Oftentimes this hotkey will be “delete” or “F2,” but your motherboard’s manufacturer can choose any key and will indicate the correct key on your display.
    Once inside the UEFI interface, you must locate a setting containing the text “Compatibility Support Module” or “CSM” and set this menu entry to DISABLED. More rarely, your UEFI firmware may offer a sub-menu called “Boot Mode” that will let you select “Pure UEFI” as the desired option. The exact location of these menus and settings will vary from system to system, but you are likely to find it as an option in the “Boot” menu, and it is safe to navigate between menu screens until you find the correct location. Disabling CSM will disable Legacy Mode on your motherboard and enable the full UEFI Mode that your system requires.
    Save your settings and exit the UEFI interface. This can often be done with the “F10” key, but there will be a menu option to save and exit as well.
    The PC will restart and will now be configured in UEFI mode.


    Immagino troveranno una soluzione meno invasiva, brava microsoft!
    È la mia situazione. Solo che, se non ho capito male la conversione a UEFI non è indolore, ma si rischia di perdere tutti i dati, quindi o si decide di formattare o si lascia perdere

  16. #96
    Senior Member
    Data Registrazione
    Jan 2016
    Messaggi
    7.237

    Re: Windows 11

    Citazione Originariamente Scritto da Ceccazzo Visualizza Messaggio
    boh guardando un po' in giro vedo che il bios si avvia in legacy mode e non uefi, vedo che devo fare una procedura di conversione dell'hd che non ho voglia di seguire. Se metto nel bios "pure uefi" come boot mode non va e al riavvio mi ritorna nella schermata del bios

    How do I enable UEFI Mode?

    You must ensure that your PC’s hard drive and operating system are configured to run in UEFI Mode. Please follow the steps in this Microsoft® video to verify or implement the correct configuration for Windows® 10. https://youtu.be/hfJep4hmg9o
    After completing the “MBR2GPT process” described in the video, restart your PC.
    As your PC is initially powering on, enter your UEFI menu by rapidly pressing the appropriate hotkey. Oftentimes this hotkey will be “delete” or “F2,” but your motherboard’s manufacturer can choose any key and will indicate the correct key on your display.
    Once inside the UEFI interface, you must locate a setting containing the text “Compatibility Support Module” or “CSM” and set this menu entry to DISABLED. More rarely, your UEFI firmware may offer a sub-menu called “Boot Mode” that will let you select “Pure UEFI” as the desired option. The exact location of these menus and settings will vary from system to system, but you are likely to find it as an option in the “Boot” menu, and it is safe to navigate between menu screens until you find the correct location. Disabling CSM will disable Legacy Mode on your motherboard and enable the full UEFI Mode that your system requires.
    Save your settings and exit the UEFI interface. This can often be done with the “F10” key, but there will be a menu option to save and exit as well.
    The PC will restart and will now be configured in UEFI mode.


    Immagino troveranno una soluzione meno invasiva, brava microsoft!
    In realtà è molto meno complicato di quel che sembra. Fra l'altro l'UEFI dovrebbe essere impostato come opzione di default nel bios oramai da un bel po' anche sui fissi mi sa. Nei portatili è dai tempi di windows 8 che li trovi tutti settati col boot UEFI predefinito e secure boot attivato.

  17. #97
    Malmostoso L'avatar di Necronomicon
    Data Registrazione
    Jan 2016
    Messaggi
    34.778

    Re: Windows 11

    Citazione Originariamente Scritto da GeeGeeOH Visualizza Messaggio
    Che non sia ufficialmente supportato non vuol dire che non va.
    Quella CPU ha l'Intel® Identity Protection Technology.

    - - - Aggiornato - - -

    Per fortuna che eri sicuro...
    Ma intanto vuol dire che il tool mi dice "niet"

  18. #98
    Senior Member L'avatar di Roland
    Data Registrazione
    Jan 2016
    Messaggi
    2.887

    Re: Windows 11

    Citazione Originariamente Scritto da Darkless Visualizza Messaggio
    In realtà è molto meno complicato di quel che sembra. Fra l'altro l'UEFI dovrebbe essere impostato come opzione di default nel bios oramai da un bel po' anche sui fissi mi sa. Nei portatili è dai tempi di windows 8 che li trovi tutti settati col boot UEFI predefinito e secure boot attivato.
    A me non era impostato. Ho dovuto provare ad impostarlo io, e ho una B450, con 3600 AMD, non proprio l'anteguerra.

  19. #99
    Ottuagenario L'avatar di benvelor
    Data Registrazione
    Jan 2016
    Località
    Sul Ponte Nòvo (quasi)
    Messaggi
    11.053

    Re: Windows 11

    pc nuovo di 3 giorni:
    5600x
    chipset B550
    16gb ram 3600

    "non puoi eseguire windows 11"
    L'uomo non smette di giocare perché invecchia, ma invecchia perché smette di giocare


  20. #100
    Senior Member L'avatar di GeeGeeOH
    Data Registrazione
    Jan 2016
    Messaggi
    10.444

    Re: Windows 11

    Non so perché venga disattivato... questo desiderio di restare negli anni '80... mah.

    Sembra una cosa così nuova ma sono quasi 15 anni che esiste... su macchine in commercio!
    Dal primo service pack di Vista, anno 2008.
    Per quanto fosse previsto da sempre, ma nel 2006 sembrava troppo nuovo (UEFI 2.0, non 1)
    In che anno siamo?
    Ultima modifica di GeeGeeOH; 26-06-21 alle 15:35
    AMD R7 5800X 8C/16T, Noctua NH-D15, Gigabyte X570 AORUS ELITE, 16GB DDR4 3600MT/s CL16, AMD Rx 6800
    SSDs: 960EVO 500GB M.2, 860QVO 2TB SATA | HDDs: Exos X16 12TB, Exos X18 16TB, 2xExos X18 18TB | Windows 11 Pro

Permessi di Scrittura

  • Tu non puoi inviare nuove discussioni
  • Tu non puoi inviare risposte
  • Tu non puoi inviare allegati
  • Tu non puoi modificare i tuoi messaggi
  •  
Chi Siamo
Forum ufficiale della rivista
The Games Machine
Seguici su