Taskbar disappears

Status
Not open for further replies.
Oh so I am wrong now huh?

Well the real issues is that something changed in MS' coding in the taskbar that is not causing a glitch with the coding of the screensaver. It really is not either parties fault, but the fault is still there. The best idea is to either not use that screensaver, or go back to XP/ Vista.

You might try disabling different things in the taskbar to find the specific area. Try turning off aero too.

~Lordbob

I take it you've not experienced the issue referred to in this thread?

I find it amazing that all these screensavers, some as popular as Fliqlo, have been running on 95, 98, me/2000, XP, Vista (which also had aero) and any other iteration one cares to mention!... and they worked fine. The taskbar didn't go invisible on us.

Now, we've got W7 - and yes it's had a beta, but the chances are - this issue has been missed, and frankly, whilst W7 is a great o/s - and I don't want to bash it, but genuinely believe there's an issue here that requires redress from MS.

We're not talking applications as such here - aren't .scr and associated files more straightforward? If they followed convention and worked perfectly fine before, and now numerous people are having issues now with this taskbar deciding not to come back - then I think we have issues with W7 - more specifically, resiliency issues as I've said before - it shouldn't be as simple as coming back from a screensaver to have no taskbar!

I'll defend MS when required but on this occasion I have to stick my guns. I'm sorry if anyone disagrees.

ps. half of these screensavers may never see development again anyway - so hopefully MS do something, or we're left with a whole bunch that are potentially useless.
 

My Computer

OS
W7
Sorry guys, I think the fault is definitely with the screensaver writers. The fact that some screensavers work correctly shows that there is a correct way to do things and some screensaver applications haven't followed the rules (.SCR files are basically .EXE files with a difference extension).

To show what's most likely happening, create a simple 2-button form (C#) and change the code to following.
Code:
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]using[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#000000] System;[/COLOR][/SIZE]
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]using[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#000000] System.Collections.Generic;[/COLOR][/SIZE]
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]using[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#000000] System.ComponentModel;[/COLOR][/SIZE]
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]using[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#000000] System.Data;[/COLOR][/SIZE]
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]using[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#000000] System.Drawing;[/COLOR][/SIZE]
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]using[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#000000] System.Text;[/COLOR][/SIZE]
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]using[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#000000] System.Windows.Forms;[/COLOR][/SIZE]
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]using[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#000000] System.Runtime.InteropServices; // added[/COLOR][/SIZE]
 
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]namespace[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#000000] HideTaskbar[/COLOR][/SIZE]
[SIZE=2]{[/SIZE]
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff] public[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]partial[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]class[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#2b91af][SIZE=2][COLOR=#2b91af]Form1[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] : [/SIZE][SIZE=2][COLOR=#2b91af][SIZE=2][COLOR=#2b91af]Form[/COLOR][/SIZE]
[/COLOR][/SIZE][SIZE=2] {[/SIZE]
[SIZE=2]   [[/SIZE][SIZE=2][COLOR=#2b91af][SIZE=2][COLOR=#2b91af]DllImport[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2]([/SIZE][SIZE=2][COLOR=#a31515][SIZE=2][COLOR=#a31515]"user32.dll"[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2])][/SIZE]
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]   private [/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]static [/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]extern [/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]int[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] FindWindow([/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]string[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] className, [/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]string[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] windowText);[/SIZE]
[SIZE=2]   [[/SIZE][SIZE=2][COLOR=#2b91af][SIZE=2][COLOR=#2b91af]DllImport[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2]([/SIZE][SIZE=2][COLOR=#a31515][SIZE=2][COLOR=#a31515]"user32.dll"[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2])][/SIZE]
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]   private [/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]static [/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]extern [/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]int[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] ShowWindow([/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]int[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] hwnd, [/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]int[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] command);[/SIZE]
 
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]   private [/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]const [/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]int[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] SW_HIDE = 0;[/SIZE]
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]   private [/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]const [/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]int[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] SW_SHOW = 1;[/SIZE]
 
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]   protected [/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]static [/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]int[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] Handle[/SIZE]
[SIZE=2]   {[/SIZE]
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]     get[/COLOR][/SIZE]
[/COLOR][/SIZE][SIZE=2]     {[/SIZE]
        [SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]return[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] FindWindow([/SIZE][SIZE=2][COLOR=#a31515][SIZE=2][COLOR=#a31515]"Shell_TrayWnd"[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2], [/SIZE][SIZE=2][COLOR=#a31515][SIZE=2][COLOR=#a31515]""[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2]);[/SIZE]
[SIZE=2]     }[/SIZE]
[SIZE=2]   }[/SIZE]
 
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]   public[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] Form1()[/SIZE]
[SIZE=2]   {[/SIZE]
[SIZE=2]     InitializeComponent();[/SIZE]
[SIZE=2]   }[/SIZE]
 
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]   private [/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]void[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] button1_Click([/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]object[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] sender, [/SIZE][SIZE=2][COLOR=#2b91af][SIZE=2][COLOR=#2b91af]EventArgs[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] e)[/SIZE]
[SIZE=2]   {[/SIZE]
[SIZE=2]     ShowWindow(Handle, SW_HIDE);[/SIZE]
[SIZE=2]   }[/SIZE]
 
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]   private [/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]void[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] button2_Click([/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]object[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] sender, [/SIZE][SIZE=2][COLOR=#2b91af][SIZE=2][COLOR=#2b91af]EventArgs[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] e)[/SIZE]
[SIZE=2]   {[/SIZE]
[SIZE=2]     ShowWindow(Handle, SW_SHOW);[/SIZE]
[SIZE=2]   }[/SIZE]
[SIZE=2] }[/SIZE]
[SIZE=2]}[/SIZE]
You now have an application which hides the taskbar when you click button1 and shows it when you click button2.

If you run this and exit while the taskbar is hidden, it stays hidden. Obviously, any screensaver which hides the taskbar and then exits without showing it again is going to exhibit this problem.

Presumably, previous versions of Windows contained extra code which had the effect of unhiding the taskbar when a screensaver exited, but it's not unreasonable that Windows 7 should leave it hidden; this is more efficient for programs that may wish to hide the taskbar for extended periods, since they no longer have to remain resident. The error is in the screensaver which doesn't tidy up after itself on exit.
 

My Computer

Computer Manufacturer/Model Number
Acer Aspire 8920G
OS
Windows 7
CPU
Mobile DualCore Intel Core2 Duo T5750 2GHz (12x167)
Motherboard
Acer Aspire 8920
Memory
4Gb
Graphics Card(s)
Nvidia GeForce 9500M GS
Sound Card
RealTek ALC889
Monitor(s) Displays
Builitin 1920x1080, External Dell E177FP
Hard Drives
Western Digital WD3200BEVT (SATA 320Gb)
Fujitsu MJA2320BH G2 (SATA 320Gb)
PSU
Builin
Case
Gemstone
Cooling
Standard
[/QUOTE]Timelord ...I think I have to disagree with your reasoning. This is a third party application, and it's up to the (code)author to make it compatible with the version of Windows 7 you're using.[/QUOTE]

Might I point out that the screensavers were existing before 7 came out and worked fine with the existing OS's of the time. You would have to be a mind reader to "fix" something for a problem that doesn't yet exist. However, MS clearly has the ability to make 7 compatible with the existing screensavers because all their previous OS's had no problem.
Starnamer and LordBob:
If previous versions of the OS had that one lousy line that unhid the taskbar, why wouldn't they include it in 7 and be done with all this nonsense and complaints. We are paying customers and 7 ain't cheap, how about a little customer service. Some of us have custom screensavers with picture that we took ourselves of family, pets and place we visited and they worked fine previously.
As for the suggestion to go back to XP or Vista if we don't like it, that's just plain stupid. That's like having a problem with the horn on a new car you bought and instead of the dealer fixing it, he says "maybe you should go back to your old '96 Corolla." How about just fixing the apparently minor problem.
 

My Computer

Computer Manufacturer/Model Number
Custom Built
OS
Win 7 pro x64
CPU
Intel i7
Motherboard
Asus P6T Deluxe V2
Memory
6 gb
Graphics Card(s)
ATI 4870
Monitor(s) Displays
AOC
Hard Drives
2 1TB WD Caviar Black
Case
Antec 900
Cooling
650w
Internet Speed
5 mb
For the last time,
This is a fault within the screensaver code.

I will not say anymore, and if you choose to persist, that's your choice. Good luck fixing your problem.

~Lordbob
 

My Computer

Computer Manufacturer/Model Number
Hera
OS
Windows 7 Ultimate x64, Mint 9
CPU
Intel i5-2500k
Motherboard
ASUS P8P67 Pro
Memory
2x 4Gb Corsair VENGEANCE DDR3-1600
Graphics Card(s)
NVidia GeForce N260GTX Twin Frozr
Sound Card
Realtek HD OnBoard Audio
Monitor(s) Displays
ASUS 24" Monitor
Screen Resolution
1920x1080
Hard Drives
G.SKILL Phoenix Series 60GB SATA II MLC Internal Solid State Drive (SSD)
SAMSUNG Spinpoint F3R 1TB 7200 RPM 32MB Cache SATA II
PSU
Cooler Master Real Power Pro 750W
Case
Cooler Master Haf 932
Cooling
Fans
Keyboard
Razer Tarantula
Mouse
Razer Lachesis
Internet Speed
not fast enough
For the last time,
This is a fault within the screensaver code.

I will not say anymore, and if you choose to persist, that's your choice. Good luck fixing your problem.

~Lordbob

Hmm.. well, Starnamers proof of concept seems to show that the screen saver might not explicitly show the taskbar on exit ...

And, I guess, technically, we could say that the screensaver is ultimately at fault - but it's not as clear cut as that since;

These screensavers worked with previous generations of MS O/S agree? So if the developers tested and released the software up to Vista say, and everything worked fine - then you could assume that they were happy with the way it ran. They may have known that ideally they should have forced the taskbar back, but as it was working without that, they didn't etc.

Essentially though, Microsoft shouldn't change the rules or make things stringent all of a sudden! and cause previously working software to cause malfunction!

I mean, that's one way to look at it.

Or on the other hand, maybe MS are just straightening up Windows to run how it always SHOULD have - hence the odd issue in terms of compatibility.

Either way, I guess there is no resolution to the issue and it just be something we have to accept.

Cheers.
 

My Computer

OS
W7
:rolleyes:
 

My Computer

Computer Manufacturer/Model Number
Hera
OS
Windows 7 Ultimate x64, Mint 9
CPU
Intel i5-2500k
Motherboard
ASUS P8P67 Pro
Memory
2x 4Gb Corsair VENGEANCE DDR3-1600
Graphics Card(s)
NVidia GeForce N260GTX Twin Frozr
Sound Card
Realtek HD OnBoard Audio
Monitor(s) Displays
ASUS 24" Monitor
Screen Resolution
1920x1080
Hard Drives
G.SKILL Phoenix Series 60GB SATA II MLC Internal Solid State Drive (SSD)
SAMSUNG Spinpoint F3R 1TB 7200 RPM 32MB Cache SATA II
PSU
Cooler Master Real Power Pro 750W
Case
Cooler Master Haf 932
Cooling
Fans
Keyboard
Razer Tarantula
Mouse
Razer Lachesis
Internet Speed
not fast enough
right click and see the pransparency level.
 

My Computer

Computer Manufacturer/Model Number
Windows
OS
Windows 7
Motherboard
Intel
Graphics Card(s)
intel 915gm
Not sure if it helps anyone, probably not, but as someone who never used third-party screensavers I can see how whoever is responsible for backwards compatibility might not see this as an important issue. After all, essential pieces of software, most notably drivers, had to be re-written to work in 7, lots of applications also have new, 7-compatible versions by now. So it's up to the screensaver developers to fix their wares.

If I had this problem, I would simply switch the screensaver.
 

My Computer

Computer Manufacturer/Model Number
Dell Inspiron 530
OS
Windows 7 Ultimate (x64)
CPU
Q6600
Memory
8 GB
Graphics Card(s)
ATI Radeon HD 2600 XT
Monitor(s) Displays
Samsung Syncmaster P2450
Screen Resolution
1920x1080
Hard Drives
Samsung HD103UJ
Samsung HD501LJ
Internet Speed
25 Mb/s
q.gif
Quote: Originally Posted by Lordbob75
For the last time,
This is a fault within the screensaver code.

I will not say anymore, and if you choose to persist, that's your choice. Good luck fixing your problem.

~Lordbob
q.gif
Quote:


Good advise my friend.... Huhmmm not...

To every one else who believes that the task bar issue is generated with a third party screensaver...
Why do i have i the problem twice without any screensaver installed..:mad:
i've done 2 complete clean install's... Wm 7 ultimate retail version..
even before i could add a SS it was gone..
I had to sign out....:mad: and it was back again...:sarc:
i haven't read your forum yet so i didn't had any your solutions...:confused:
Still i think the migthy MS group can't afford them self to have overseen this...
it's nearly the same driver crap we had with vista...

Respect for RICOMAN yeah he's spot on in his last comment..!

q.gif
Quote:

Might I point out that the screensavers were existing before 7 came out and worked fine with the existing OS's of the time. You would have to be a mind reader to "fix" something for a problem that doesn't yet exist. However, MS clearly has the ability to make 7 compatible with the existing screensavers because all their previous OS's had no problem.
Starnamer and LordBob:
If previous versions of the OS had that one lousy line that unhid the taskbar, why wouldn't they include it in 7 and be done with all this nonsense and complaints. We are paying customers and 7 ain't cheap, how about a little customer service. Some of us have custom screensavers with picture that we took ourselves of family, pets and place we visited and they worked fine previously.
As for the suggestion to go back to XP or Vista if we don't like it, that's just plain stupid. That's like having a problem with the horn on a new car you bought and instead of the dealer fixing it, he says "maybe you should go back to your old '96 Corolla." How about just fixing the apparently minor problem
q.gif
Quote:

Come microsoft patch it up...
 

My Computer

OS
Win 7
q.gif
Quote: Originally Posted by Lordbob75
For the last time,
This is a fault within the screensaver code.

I will not say anymore, and if you choose to persist, that's your choice. Good luck fixing your problem.

~Lordbob
q.gif
Quote:



Good advise my friend.... Huhmmm not...

To every one else who believes that the task bar issue is generated with a third party screensaver...
Why do i have i the problem twice without any screensaver installed..:mad:
i've done 2 complete clean install's... Wm 7 ultimate retail version..
even before i could add a SS it was gone..
I had to sign out....:mad: and it was back again...:sarc:
i haven't read your forum yet so i didn't had any your solutions...:confused:
Still i think the migthy MS group can't afford them self to have overseen this...
it's nearly the same driver crap we had with vista...

Respect for RICOMAN yeah he's spot on in his last comment..!

q.gif
Quote:


Might I point out that the screensavers were existing before 7 came out and worked fine with the existing OS's of the time. You would have to be a mind reader to "fix" something for a problem that doesn't yet exist. However, MS clearly has the ability to make 7 compatible with the existing screensavers because all their previous OS's had no problem.
Starnamer and LordBob:
If previous versions of the OS had that one lousy line that unhid the taskbar, why wouldn't they include it in 7 and be done with all this nonsense and complaints. We are paying customers and 7 ain't cheap, how about a little customer service. Some of us have custom screensavers with picture that we took ourselves of family, pets and place we visited and they worked fine previously.
As for the suggestion to go back to XP or Vista if we don't like it, that's just plain stupid. That's like having a problem with the horn on a new car you bought and instead of the dealer fixing it, he says "maybe you should go back to your old '96 Corolla." How about just fixing the apparently minor problem
q.gif
Quote:


Come microsoft patch it up...
This is an issue with the thid-party screensavers and not the OS...simple as that...

Microsoft makes the OS so therefore it is their OS...if they change something than developers have to adjust or move their software to a new platform...

Take this argument up with the screensaver maker...not Microsoft.

How hard is this to understand...

PS Prove that the default screensavers for 7 are causing the problem also
 

My Computer

Computer Manufacturer/Model Number
Compal JFT02 (Custom Build Laptop)
OS
Windows 7 Home Premium x64 - Mac OS X 10.6.4 x64
CPU
Intel Core 2 Duo T9300 2.5 GHz
Motherboard
JFT02
Memory
4GB Kingston DDR2-800
Graphics Card(s)
NVIDIA Geforce 8600M GT (512MB Model)
Sound Card
Realtek HD Audio
Monitor(s) Displays
WUXGA Standard Laptop Display
Screen Resolution
1680*1050
Hard Drives
Toshiba 320GB 5400RPM Laptop HD
PSU
Standard Laptop Power Supply
Case
Standard Laptop Case
Cooling
Standard Laptop Cooling
Keyboard
Standard Laptop 105 Key-Keyboard
Mouse
Synaptics Touchpad
Internet Speed
Verizion Online DSL 3360/864 kbs (dl/up)
OK I see no point in continuing this argument for the sake of arguing

Before it becomes out of hand and someone gets into trouble I am closing the thread
 

My Computers

System One System Two

  • Computer type
    PC/Desktop
    Computer Manufacturer/Model Number
    ChillBlast - Custom to my design
    OS
    Windows 11 Pro x64 [Latest Release and Release Preview]
    CPU
    Ryzen 9 5950X, 3.8 - 5.2 MHz
    Motherboard
    Asus Prime X570-Pro
    Memory
    64GB [2 x 32GB] DDR4 3200MHz
    Graphics Card(s)
    4GB NVIDIA GEFORCE GTX 1650 Ti
    Sound Card
    On-board SPDIF to 5.1 System + HDMI [5.1 system]
    Monitor(s) Displays
    32" UHD 32 Bit HDR Monitor + 43" UHD 4K 32Bit HDR TV
    Screen Resolution
    2 x 3840 x 2160 @60Hz
    Hard Drives
    1TB M2 SSD OS, 500GB Fast Access SSD, 2 x 8TB Data + Various Externals from 1TB to 4TB, 10TB NAS
    PSU
    NZXT C750 80 PLUS Gold 750W Modular PSU
    Case
    Workstation Case [Matt Black]
    Cooling
    NZXT Kraken X63 280mm CPU Cooler +2x Quiet Case fans
    Keyboard
    Logitech Wireless MX Keys & K400 + others
    Mouse
    Logitech Wireless MX Master 3S
    Internet Speed
    920 MB Down 50 MB Up
    Antivirus
    BitDefender Total Security Pro
    Browser
    Chrome (always run latest Non-Beta)
    Other Info
    Also run ...
    Laptop - Quad 8GB - Windows 10 Pro x64
    Nexus 7 Android tablet x2
    Samsung 10.2" tablet
    Blackview TAB 8 4G Android Tablet c/w Keyboard
    Wacom Intuos Pro Medium Pen Pad
    Wacom Intuos Pro Small Pen Pad
    Wacom Expresskeys Remote
    Loopdeck+ Graphics Controller
    Shuttle Pro v2 Control
  • Computer type
    Laptop
    System Manufacturer/Model Number
    Dell XPS 17 10750H
    OS
    Windows 11 Pro x64 Latest RP
    CPU
    Intel I7 10750H 5.0GHz
    Motherboard
    Dell XPS
    Memory
    32GB [2x16GB] DDR4 2933 MHz
    Graphics Card(s)
    nVidia GTX1650Ti 4 GB GDDR6
    Sound Card
    Stock [Realtek] 4 Speaker
    Monitor(s) Displays
    17" IPS UHD+ Infinity Edge Touchscreen
    Screen Resolution
    3840 x 2400
    Hard Drives
    2TB M2 NVMe, 4TB External + various 500GB & 1TB External NVMe (also have access to spinner HDD from
    PSU
    Stock
    Case
    Stock XPS Aluminium & Carbon Fibre
    Cooling
    Stock - Active Fan Control
    Keyboard
    Backlit + Various Logitech
    Mouse
    Stock Track Pad + Logitech MX Trackball
    Internet Speed
    72 MB Down 18MB Up
    Browser
    Chrome
    Other Info
    Also run ...
    Laptop - Quad 8GB - Windows 10 Pro x64
    Nexus 7 Android tablet x2
    10.2" tablet
    Sony Z3 Android Smartphone
    Wacom Intuos Pro Medium Pen Pad
    Wacom Intuos Pro Small Pen Pad
    Wacom Expresskeys Remote
    Loopdeck+ Graphics Controller
    Shuttle Pro v2 Control Pad
    10TB NAS
Status
Not open for further replies.
Back
Top