Win11 24H2 Installed, now no network sharing


OK with 24H2 Pro 26100.1742 I had this problem.
My Windows 10 Pro could access Windows 11 24H2 through my network, however Windows 11 24H2 could not access my Windows 10 Pro or any earlier versions of Windows 11 Pro Computers this only happened since I went to 24H2.
To fix this issue I did both of these changes in Local Group Policy Editor. And Now all is happy including me. I hope this helps.

Computer Configuration, Windows Settings, Security Settings, Local Policies, Security Options
Double click on Microsoft Network Client: Digitally sign communications (always)
Double click on Microsoft Network Client: Digitally sign communications (if server agrees)
Set both of these to "Disabled"
Click on OK.

Computer Configuration, Administrative Templates, Network, Lanman Workstation
Double click on "Enable Insecure Guest Logons"
Set this to "Enabled"
Click on OK.


I had to register for this place, just to say "Thank You, Thank You, Thank You!!!"

I have tried everything I could think this morning, from enabling and disabling SMB, NFS, adding additional .net stuff, creating new local user accounts because I refuse to use a Microsoft Account, and nothing absolutely nothing worked, including what worked last time which was the "Lanman Workstation", but this 1 post by you got it working.

I just want to be able to share files between my gaming pc and my obs pc without having to first put the files on my Unraid Server and then pull them from that on the other machine.
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    PC/Desktop
In 24H2 tighter security restrictions that were previously only enforced in Enterprise and above are now on by default in Pro. Insecure logins are not allowed by default, you now cannot connect to another PC if you have a local account with no password.

There are two ways to connect. The first is to create a Windows Credential for an account with a password on that other PC.

The second is to turn off the restriction on insecure logins.



View attachment 110750
thank you. i was very scared when i couldn't open a program which needs data from my server through LAN.

i wrote \\COMPUTER-NAME into windows-explorer's path, after i saw that double-clicking on the Server doesn't work, theni was googling and found your post, then i came back to the clien-pc with windows 11 24h2 and saw

1729511832682.png
i inserted the login data of the account on from the server on this client-PC and everything works again.
had to write the \\COMPUTER-NAME in windows-explorer and save the login data
1729511974281.png
somehow this client-PC connects slower to the Server through LAN. but the workers will understand to simply click on "Connect" until it works. they need to restart the program but it will work and i am rescued. i didn't open gpedit.msc. Verbinden = Connect
1729512427091.png
if it's green then it's perfectly connected
1729512457988.png
but it needs a restart
1729512475502.png

also the regedit- key >>> regedit => HKEY_CURRENT_USER => Control Panel => Desktop => "AutoEndTasks" = 1 <<< got deleted, had to start over again (because this problem won't shutdown and won't kill itself)

even Win+R => shell:startup got completely erased! had to start over again, so that the program will start automatically.

also the protocol/history of all tasks in the task scheduler (important is the task "shut down automatically at 6 pm") is completely disabled. had to enable again.
 
Last edited:

My Computer

System One

  • OS
    Windowws
"Network Sharing" on Private Network works for me between several machines and a share on Router with old Samba 1.0 turned off but I can only see local machine if I manually restart the "FDResPub" service. This is still the case with the latest preview release 26100.2161.
It makes no difference if said service is set to "Automatic", "Automatic Delayed" or the default "Manual Triggered".
 

My Computer

System One

  • OS
    Windows 11 PRO / Windows Server 2016 Essentials
Thank you so much Bree.

However, I have now upgraded another laptop and despite having made the change as you suggested, that does not help. As a stop gap, I have passworded that laptop, and then networking is fine.
The desktop and first laptop upgraded now work fine.
You can run netplwiz to login automatically and networking still works.
 

My Computer

System One

  • OS
    Windows 11 Pro + Win11 Canary VM.
    Computer type
    Laptop
    Manufacturer/Model
    ASUS Zenbook 14
    CPU
    I9 13th gen i9-13900H 2.60 GHZ
    Motherboard
    Yep, Laptop has one.
    Memory
    16 GB soldered
    Graphics Card(s)
    Integrated Intel Iris XE
    Sound Card
    Realtek built in
    Monitor(s) Displays
    laptop OLED screen
    Screen Resolution
    2880x1800 touchscreen
    Hard Drives
    1 TB NVME SSD (only weakness is only one slot)
    PSU
    Internal + 65W thunderbolt USB4 charger
    Case
    Yep, got one
    Cooling
    Stella Artois (UK pint cans - 568 ml) - extra cost.
    Keyboard
    Built in UK keybd
    Mouse
    Bluetooth , wireless dongled, wired
    Internet Speed
    900 mbs (ethernet), wifi 6 typical 350-450 mb/s both up and down
    Browser
    Edge
    Antivirus
    Defender
    Other Info
    TPM 2.0, 2xUSB4 thunderbolt, 1xUsb3 (usb a), 1xUsb-c, hdmi out, 3.5 mm audio out/in combo, ASUS backlit trackpad (inc. switchable number pad)

    Macrium Reflect Home V8
    Office 365 Family (6 users each 1TB onedrive space)
    Hyper-V (a vm runs almost as fast as my older laptop)
Here is a workaround.


Batch:
@echo off
:: Check for Administrator privileges
net session >nul 2>&1
if %errorLevel% neq 0 (
    echo This script requires Administrator privileges. Please right-click and select "Run as administrator."
    pause
    exit /b
)

:: Enable SMBv1
echo Enabling SMBv1...
dism /online /enable-feature /featurename:SMB1Protocol -NoRestart

:: Check if SMBv1 was enabled successfully
if %errorLevel% equ 0 (
    echo SMBv1 enabled successfully.
) else (
    echo Failed to enable SMBv1. SMBv1 might already be enabled.
)

:: Adjust Local Security Policy for Guest Access
echo Configuring Local Security Policy for Guest Access...
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa" /v forceguest /t REG_DWORD /d 1 /f

:: Disable SMB Signing Requirement on Client
echo Disabling SMB Signing Requirement on the Client...
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v RequireSecuritySignature /t REG_DWORD /d 0 /f

:: Prompt to restart the computer
echo Configuration complete. A restart is required for changes to take effect.
pause
shutdown /r /t 5
 

My Computer

System One

  • OS
    Solars
Sorry That batch was missing a registry here is the updated.


Batch:
@echo off
:: Check for Administrator privileges
net session >nul 2>&1
if %errorLevel% neq 0 (
    echo This script requires Administrator privileges. Please right-click and select "Run as administrator."
    pause
    exit /b
)

:: Enable Insecure Guest Logins
echo Enabling Insecure Guest Logins in the Registry...
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v AllowInsecureGuestAuth /t REG_DWORD /d 1 /f

:: Check if the registry modification was successful
if %errorLevel% equ 0 (
    echo Insecure Guest Logins enabled successfully.
) else (
    echo Failed to modify the registry.
    pause
    exit /b
)

:: Enable SMBv1
echo Enabling SMBv1...
dism /online /enable-feature /featurename:SMB1Protocol -NoRestart

:: Check if SMBv1 was enabled successfully
if %errorLevel% equ 0 (
    echo SMBv1 enabled successfully.
) else (
    echo Failed to enable SMBv1. SMBv1 might already be enabled.
)

:: Adjust Local Security Policy for Guest Access
echo Configuring Local Security Policy for Guest Access...
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa" /v forceguest /t REG_DWORD /d 1 /f

:: Disable SMB Signing Requirement on Client
echo Disabling SMB Signing Requirement on the Client...
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v RequireSecuritySignature /t REG_DWORD /d 0 /f

:: Prompt to restart the computer
echo Configuration complete. A restart is required for changes to take effect.
pause
shutdown /r /t 5
 

My Computer

System One

  • OS
    Solars
OK with 24H2 Pro 26100.1742 I had this problem.
My Windows 10 Pro could access Windows 11 24H2 through my network, however Windows 11 24H2 could not access my Windows 10 Pro or any earlier versions of Windows 11 Pro Computers this only happened since I went to 24H2.
To fix this issue I did both of these changes in Local Group Policy Editor. And Now all is happy including me. I hope this helps.

Computer Configuration, Windows Settings, Security Settings, Local Policies, Security Options
Double click on Microsoft Network Client: Digitally sign communications (always)
Double click on Microsoft Network Client: Digitally sign communications (if server agrees)
Set both of these to "Disabled"
Click on OK.

Computer Configuration, Administrative Templates, Network, Lanman Workstation
Double click on "Enable Insecure Guest Logons"
Set this to "Enabled"
Click on OK.

As the friend, "LarsYouPutz" commented above, I also signed up and will start following this forum, due to your help and clear information!

THANK YOU VERY MUCH

I had a network problem, the same mentioned, and even the local IT technicians couldn't solve it.

With your great help, everything worked normally.

*sorry for the bad English, I'm not fluent
 

My Computer

System One

  • OS
    Windows 11 Home 24H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Dell
I just wanted to let you know that I registered to this site just to say THANK YOU for this post.
I had to register for this place, just to say "Thank You, Thank You, Thank You!!!"
As the friend, "LarsYouPutz" commented above, I also signed up and will start following this forum, due to your help and clear information!

THANK YOU VERY MUCH
Welcome to Eleven Forum LarsYouPutz, DamienC, and ayrton_jay.
 

My Computers

System One System Two

  • OS
    Windows 11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Acer Aspire 3 A315-23
    CPU
    AMD Athlon Silver 3050U
    Memory
    8GB
    Graphics Card(s)
    Radeon Graphics
    Monitor(s) Displays
    laptop screen
    Screen Resolution
    1366x768 native resolution, up to 2560x1440 with Radeon Virtual Super Resolution
    Hard Drives
    1TB Samsung EVO 870 SSD
    Internet Speed
    50 Mbps
    Browser
    Edge, Firefox
    Antivirus
    Defender
    Other Info
    fully 'Windows 11 ready' laptop. Windows 10 C: partition migrated from my old unsupported 'main machine' then upgraded to 11. A test migration ran Insider builds for 2 months. When 11 was released on 5th October 2021 it was re-imaged back to 10 and was offered the upgrade in Windows Update on 20th October. Windows Update offered the 22H2 Feature Update on 20th September 2022. It got the 23H2 Feature Update on 4th November 2023 through Windows Update, and 24H2 on 3rd October 2024 through Windows Update by setting the Target Release Version for 24H2.

    My SYSTEM THREE is a Dell Latitude 5410, i7-10610U, 32GB RAM, 512GB NVMe ssd, supported device running Windows 11 Pro (and all my Hyper-V VMs).

    My SYSTEM FOUR is a 2-in-1 convertible Lenovo Yoga 11e 20DA, Celeron N2930, 8GB RAM, 256GB ssd. Unsupported device: currently running Win10 Pro, plus Win11 Pro RTM and Insider Dev, Beta, and RP 24H2 as native boot vhdx.

    My SYSTEM FIVE is a Dell Latitude 3190 2-in-1, Pentium Silver N5030, 8GB RAM, 512GB NVMe ssd, supported device running Windows 11 Pro, plus the Insider Beta, Dev, Canary, and Release Preview builds as a native boot .vhdx.
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Dell Latitude E4310
    CPU
    Intel® Core™ i5-520M
    Motherboard
    0T6M8G
    Memory
    8GB
    Graphics card(s)
    (integrated graphics) Intel HD Graphics
    Screen Resolution
    1366x768
    Hard Drives
    500GB Crucial MX500 SSD
    Browser
    Firefox, Edge
    Antivirus
    Defender
    Other Info
    unsupported machine: Legacy bios, MBR, TPM 1.2, upgraded from W10 to W11 using W10/W11 hybrid install media workaround. In-place upgrade to 22H2 using ISO and a workaround. Feature Update to 23H2 by manually installing the Enablement Package. In-place upgrade to 24H2 using hybrid 23H2/24H2 install media. Also running Insider Beta, Dev, and Canary builds as a native boot .vhdx.

    My SYSTEM THREE is a Dell Latitude 5410, i7-10610U, 32GB RAM, 512GB NVMe ssd, supported device running Windows 11 Pro (and all my Hyper-V VMs).

    My SYSTEM FOUR is a 2-in-1 convertible Lenovo Yoga 11e 20DA, Celeron N2930, 8GB RAM, 256GB ssd. Unsupported device: currently running Win10 Pro, plus Win11 Pro RTM and Insider Dev, Beta, and RP 24H2 as native boot vhdx.

    My SYSTEM FIVE is a Dell Latitude 3190 2-in-1, Pentium Silver N5030, 8GB RAM, 512GB NVMe ssd, supported device running Windows 11 Pro, plus the Insider Beta, Dev, Canary, and Release Preview builds as a native boot .vhdx.
OK with 24H2 Pro 26100.1742 I had this problem.
My Windows 10 Pro could access Windows 11 24H2 through my network, however Windows 11 24H2 could not access my Windows 10 Pro or any earlier versions of Windows 11 Pro Computers this only happened since I went to 24H2.
To fix this issue I did both of these changes in Local Group Policy Editor. And Now all is happy including me. I hope this helps.

Computer Configuration, Windows Settings, Security Settings, Local Policies, Security Options
Double click on Microsoft Network Client: Digitally sign communications (always)
Double click on Microsoft Network Client: Digitally sign communications (if server agrees)
Set both of these to "Disabled"
Click on OK.

Computer Configuration, Administrative Templates, Network, Lanman Workstation
Double click on "Enable Insecure Guest Logons"
Set this to "Enabled"
Click on OK.
I tried all this and still can't see some of the PCs and one NAS device in my Workgroup. So I just wait to see what happens with WU. So frustrating....
 

My Computer

System One

  • OS
    Windows 11 Pro 23H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    N/A
    CPU
    AMD Phenom(tm) II X4 965 Processor 3.40 GHz
    Motherboard
    Gigabyte GA-770T USB3
    Memory
    12gb
    Graphics Card(s)
    Nvidia GTX950
    Sound Card
    Realtek 888
    Monitor(s) Displays
    Acer
    Screen Resolution
    1920x1080
    Hard Drives
    1TB SSD Vulcan Z
    Keyboard
    Logitech
    Internet Speed
    600
    Browser
    Firefox
    Antivirus
    Windows Defender
I tried all this and still can't see some of the PCs and one NAS device in my Workgroup. So I just wait to see what happens with WU. So frustrating....
Check if SMB are all ticked in Turn Windows features on or off
 

Attachments

  • SMB.JPG
    SMB.JPG
    29.7 KB · Views: 5

My Computer

System One

  • OS
    Windows 11 Pro
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom Build
    CPU
    Intel Core i9 12900KF
    Motherboard
    ASUS ROG Maximus Z690 Hero
    Memory
    Corsair 64GB DDR5 Vengeance C40 5200Mhz
    Graphics Card(s)
    ASUS GeForce RTX 3090 ROG Strix OC 24GB
    Sound Card
    OnBoard
    Monitor(s) Displays
    Acer Predator XB323UGP 32" QHD G-SYNC-C 144Hz 1MS IPS LED
    Screen Resolution
    2560 x 1440
    Hard Drives
    1x Samsung 980 Pro Series Gen4 250GB M.2 NVMe
    1x Samsung 980 Pro Series Gen4 500GB M.2 NVMe
    2x Samsung 980 Pro Series Gen4 2TB M.2 NVMe
    PSU
    Corsair AX1200i 1200W 80PLUS Titanium Modular
    Case
    Corsair 4000D Black Case w/ Tempered Glass Side Panel
    Cooling
    Noctua NH-U12A Chromax Black CPU Cooler, 4x Noctua 120mm Fans
    Keyboard
    Logitech MK545
    Mouse
    Logitech MX Master 3
    Internet Speed
    Fixed Wireless 150mbps/75mbps
    Browser
    Firefox
    Antivirus
    Kaspersky
    Other Info
    Thrustmaster TS-PC RACER
    Fanatec CSL Elite Pedals with the Load Cell Kit
    Yamaha Amp with Bose Speakers
Check if SMB are all ticked in Turn Windows features on or off
Automatic Removal option is NOT ticked all the others are. Does this need to be on too? It's off on all my other PCs but they function (23H2).
 

My Computer

System One

  • OS
    Windows 11 Pro 23H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    N/A
    CPU
    AMD Phenom(tm) II X4 965 Processor 3.40 GHz
    Motherboard
    Gigabyte GA-770T USB3
    Memory
    12gb
    Graphics Card(s)
    Nvidia GTX950
    Sound Card
    Realtek 888
    Monitor(s) Displays
    Acer
    Screen Resolution
    1920x1080
    Hard Drives
    1TB SSD Vulcan Z
    Keyboard
    Logitech
    Internet Speed
    600
    Browser
    Firefox
    Antivirus
    Windows Defender
Automatic Removal option is NOT ticked all the others are. Does this need to be on too? It's off on all my other PCs but they function (23H2).
FYI - It is an unsupported Zotac BI320. Using this to get this all figured out before I update the others.
 

My Computer

System One

  • OS
    Windows 11 Pro 23H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    N/A
    CPU
    AMD Phenom(tm) II X4 965 Processor 3.40 GHz
    Motherboard
    Gigabyte GA-770T USB3
    Memory
    12gb
    Graphics Card(s)
    Nvidia GTX950
    Sound Card
    Realtek 888
    Monitor(s) Displays
    Acer
    Screen Resolution
    1920x1080
    Hard Drives
    1TB SSD Vulcan Z
    Keyboard
    Logitech
    Internet Speed
    600
    Browser
    Firefox
    Antivirus
    Windows Defender
Automatic Removal option is NOT ticked all the others are. Does this need to be on too? It's off on all my other PCs but they function (23H2).
I have always made sure all SMB's are ticked no matter what version of Win 11 I have installed.

Make sure you don't install this version as its plagued with bugs especially with the network issues.
Windows 11 24H2 26100.2152 (KB5044384)

Maybe try install a fresh Win 11 24H2 either
Windows 11 24H2 26100.1742 ISO and update it with KB5044284 or Windows 11 24H2 26100.2033 ISO
You can use Rufus for an unsupported computer
As that is what I did and my WiFi and Ethernet are working fine both ways talking to my Nas and to my older Win 10 Pro Computer
I do use Static IP's though.

Good Luck
 

My Computer

System One

  • OS
    Windows 11 Pro
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom Build
    CPU
    Intel Core i9 12900KF
    Motherboard
    ASUS ROG Maximus Z690 Hero
    Memory
    Corsair 64GB DDR5 Vengeance C40 5200Mhz
    Graphics Card(s)
    ASUS GeForce RTX 3090 ROG Strix OC 24GB
    Sound Card
    OnBoard
    Monitor(s) Displays
    Acer Predator XB323UGP 32" QHD G-SYNC-C 144Hz 1MS IPS LED
    Screen Resolution
    2560 x 1440
    Hard Drives
    1x Samsung 980 Pro Series Gen4 250GB M.2 NVMe
    1x Samsung 980 Pro Series Gen4 500GB M.2 NVMe
    2x Samsung 980 Pro Series Gen4 2TB M.2 NVMe
    PSU
    Corsair AX1200i 1200W 80PLUS Titanium Modular
    Case
    Corsair 4000D Black Case w/ Tempered Glass Side Panel
    Cooling
    Noctua NH-U12A Chromax Black CPU Cooler, 4x Noctua 120mm Fans
    Keyboard
    Logitech MK545
    Mouse
    Logitech MX Master 3
    Internet Speed
    Fixed Wireless 150mbps/75mbps
    Browser
    Firefox
    Antivirus
    Kaspersky
    Other Info
    Thrustmaster TS-PC RACER
    Fanatec CSL Elite Pedals with the Load Cell Kit
    Yamaha Amp with Bose Speakers
I have always made sure all SMB's are ticked no matter what version of Win 11 I have installed.

Make sure you don't install this version as its plagued with bugs especially with the network issues.
Windows 11 24H2 26100.2152 (KB5044384)

Maybe try install a fresh Win 11 24H2 either
Windows 11 24H2 26100.1742 ISO and update it with KB5044284 or Windows 11 24H2 26100.2033 ISO
You can use Rufus for an unsupported computer
As that is what I did and my WiFi and Ethernet are working fine both ways talking to my Nas and to my older Win 10 Pro Computer
I do use Static IP's though.

Good Luck
Just an FYI - I installed ALL the SMB options and still no joy. So...just waiting for the next update and see what happens.
Thanks for your help!
 

My Computer

System One

  • OS
    Windows 11 Pro 23H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    N/A
    CPU
    AMD Phenom(tm) II X4 965 Processor 3.40 GHz
    Motherboard
    Gigabyte GA-770T USB3
    Memory
    12gb
    Graphics Card(s)
    Nvidia GTX950
    Sound Card
    Realtek 888
    Monitor(s) Displays
    Acer
    Screen Resolution
    1920x1080
    Hard Drives
    1TB SSD Vulcan Z
    Keyboard
    Logitech
    Internet Speed
    600
    Browser
    Firefox
    Antivirus
    Windows Defender
OK with 24H2 Pro 26100.1742 I had this problem.
My Windows 10 Pro could access Windows 11 24H2 through my network, however Windows 11 24H2 could not access my Windows 10 Pro or any earlier versions of Windows 11 Pro Computers this only happened since I went to 24H2.
To fix this issue I did both of these changes in Local Group Policy Editor. And Now all is happy including me. I hope this helps.

Computer Configuration, Windows Settings, Security Settings, Local Policies, Security Options
Double click on Microsoft Network Client: Digitally sign communications (always)
Double click on Microsoft Network Client: Digitally sign communications (if server agrees)
Set both of these to "Disabled"
Click on OK.

Computer Configuration, Administrative Templates, Network, Lanman Workstation
Double click on "Enable Insecure Guest Logons"
Set this to "Enabled"
Click on OK.
thank you
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    PC/Desktop
OK with 24H2 Pro 26100.1742 I had this problem.
My Windows 10 Pro could access Windows 11 24H2 through my network, however Windows 11 24H2 could not access my Windows 10 Pro or any earlier versions of Windows 11 Pro Computers this only happened since I went to 24H2.
To fix this issue I did both of these changes in Local Group Policy Editor. And Now all is happy including me. I hope this helps.

Computer Configuration, Windows Settings, Security Settings, Local Policies, Security Options
Double click on Microsoft Network Client: Digitally sign communications (always)
Double click on Microsoft Network Client: Digitally sign communications (if server agrees)
Set both of these to "Disabled"
Click on OK.

Computer Configuration, Administrative Templates, Network, Lanman Workstation
Double click on "Enable Insecure Guest Logons"
Set this to "Enabled"
Click on OK.
Wolfzz, Thank you so much. You are a genius!! I can't tell you how much this has helped. I have lost two working days at my small office, trying to resolve networking a drive with all the work data on it. Absolute star!!!!
 

My Computer

System One

  • OS
    Windows 11 Pro
    Computer type
    PC/Desktop
I tried your settings, but sadly it didn't work for me. I see that it's helped some people though. 👏
For those, like you, who have not been able to get it working, this is the solution, step 2. You have to add the registry key, which IS NOT added when you make the Lanman stuff. I just registered to help those who, like me, spent days on this.

 

My Computer

System One

  • OS
    11 24H2
In 24H2 tighter security restrictions that were previously only enforced in Enterprise and above are now on by default in Pro. Insecure logins are not allowed by default, you now cannot connect to another PC if you have a local account with no password.

There are two ways to connect. The first is to create a Windows Credential for an account with a password on that other PC.

The second is to turn off the restriction on insecure logins.


This is not true at all. I am able to connect to other PCs with local accounts with no passwords. Not sure how you came up with that, but all of my PCs (3) have local accounts with no passwords, and I am able to connect to all of them.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro x64 24H2 v26100.3037
    Computer type
    PC/Desktop
    Manufacturer/Model
    Built Myself in 2017
    CPU
    AMD Ryzen 1800X 8-Core @ 3.60GHz
    Motherboard
    Asus Crosshair VI Hero
    Memory
    16GB G.Skill Trident Z RGB Series
    Graphics Card(s)
    EVGA GeForce gtx 1660 Super
    Sound Card
    On Board
    Monitor(s) Displays
    2 X AOC 27" , PLANAR 22"
    Screen Resolution
    1920 X 1080
    Hard Drives
    ~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~ P34A60 512GB NVMe PCIe Gen3x4 M.2
    ~ 6TB Toshiba HDD
    ~ 6TB HDD (Backup)
    ~ SanDisk 250GB SSD
    ~ 2 X 1TB HDD
    ~~~~~~~~~~
    PSU
    Corsair RM850 Fully Modular (850watts)
    Case
    NZXT Phantom 630 CA-PH630-W1
    Cooling
    CORSAIR iCUE H100i RGB PRO XT
    Keyboard
    Nulea RT05 Wireless Ergonomic
    Mouse
    Nulea MD280 Wireless Vertical Mouse
    Internet Speed
    761Mbps (Download) / 692Mbps (Upload)
    Browser
    Firefox
    Antivirus
    Malwarebytes
    Other Info
    *This is my Main Computer That I use*
  • Operating System
    Windows 11 Pro x64 24H2 v26100.2894
    Computer type
    PC/Desktop
    Manufacturer/Model
    HP
    CPU
    Intel Xeon E3-1246 v3 @ 3.50GHz
    Memory
    16GB
    Graphics card(s)
    AMD Radeon R7 350X
    Sound Card
    onBoard
    Monitor(s) Displays
    eMachine 22"
    Screen Resolution
    1920 X 1080
    Hard Drives
    250GB SSD
    Cooling
    Fan
    Mouse
    Nulea MD280
    Internet Speed
    752Mbps (Download) / 537Mbps (Upload)
    Browser
    Firefox
    Antivirus
    Malwarebytes
    Other Info
    I use this computer for photo/video editing and to track severe weather
Just want to add my expression of gratitude to those already here. I futzed around for hours and hours after a recent update left my three-PC home network crippled. Thanks especially to Bree and Wolfzz for the great support. I'm up and running again.

Dan
 

My Computers

System One System Two

  • OS
    11 Pro 24H2 26100.2454
    Computer type
    PC/Desktop
    Manufacturer/Model
    Lenovo ThinkCentre M920S SFF
    CPU
    i7-9700 @ 3.00GHz
    Motherboard
    Lenovo 3132
    Memory
    32GBDDR4 @ 2666MHz
    Graphics Card(s)
    Intel HD 630 Graphics onboard
    Sound Card
    Realtek HD Audio
    Monitor(s) Displays
    LG E2442
    Screen Resolution
    1920x1080
    Hard Drives
    1 x Samsung 970 EVO PLUS 500GB NVMe SSD, 1 x WD_BLACK SN770
    250GB NVMe SSD (OS and programs), 1 x WD_BLACK SN770
    500GB NVMe SSD (Data)
    Case
    Lenovo SFF
    Keyboard
    Cherry Stream TKL JK-8600US-2 Wired
    Mouse
    LogiTech M510 wireless
    Internet Speed
    Fast (for fixed wireless!)
    Browser
    Chrome, sometimes Firefox
    Antivirus
    Malwarebytes Premium & Defender (working together beautifully!)
  • Operating System
    11 Pro 24H2 26100.2454
    Computer type
    PC/Desktop
    Manufacturer/Model
    Lenovo ThinkCentre M920S SFF
    CPU
    i5-8400 @ 2.80GHz
    Motherboard
    Lenovo 3132
    Memory
    32GB DDR4 @ 2600MHz
    Graphics card(s)
    Intel HD 630 Graphics onboard
    Sound Card
    Realtek High Definition Audio onboard
    Monitor(s) Displays
    LG FULL HD (1920x1080@59Hz)
    Screen Resolution
    1920 x 1080
    Hard Drives
    1 x Samsung 970 EVO PLUS NVMe; 1 x Samsung 980 NVMe SSD
    Case
    Lenovo Think Centre SFF
    Mouse
    LogiTech M510 wireless
    Keyboard
    Cherry Stream TKL JK-8600US-2 Wired
    Internet Speed
    Fast (for fixed wireless!)
    Browser
    Chrome
    Antivirus
    Malwarebytes Premium and MS Defender, beautiful together

My Computer

System One

  • OS
    Windows 11
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custome
    CPU
    Ryzen 5900
    Motherboard
    Gigabyte X570 AORUS ELITE
    Memory
    64 Gigs Corsair
    Graphics Card(s)
    NVidia 1660 Super

Latest Support Threads

Back
Top Bottom