Thanks for your answer, Timur. I made an own power profile based on the "High Performance" profile and I'm using it. I also use the legacy FW driver, the other ones caused BSODs.
I realized that my NVIDIA graphic chip doesn't behave nice so I deactivated the NVIDIA driver and used the SaveVGA driver. It's a bit stupid because now my CPU has more work with it, but it seems to work better. I made a test with a loop in Ableton and also Cubase later for about 4h each without any problems.
However the disconnect/reconnect issue including the strange error message is still there but if I don't lose connection anymore in the future I can live with it.
By the way, I wrote myself a script (*.bat) to deactivate drivers, services etc. by one click and also to reactivate it later. Maybe interessting for sb:
It's for a VAIO VPCS13M1E and Windows 7 and avast! Antivirus but can be adapted. You need to download the devcon.exe from microsoft if it's not included in your windows. It wasn't for me....
Set to Live-Mode
@echo off
echo Disable Wifi
devcon disable "PCI\VEN_8086&DEV_422C"
echo --------------------
echo Disable Memory Stick
devcon disable "PCI\VEN_1180&DEV_E230"
echo --------------------
echo Disable SD Bus
devcon disable "PCI\VEN_1180&DEV_E822"
echo --------------------
echo Disable NVIDIA Audio
devcon disable "HDAUDIO\FUNC_01&VEN_10DE&DEV_000B"
echo --------------------
echo Disable NVIDIA Graphic
devcon disable "PCI\VEN_10DE&DEV_0A75"
echo --------------------
echo Disable Webcam
devcon disable "USB\VID_05CA&PID_18B7"
echo --------------------
echo Stop Antivirus
sc stop "avast! Antivirus"
echo --------------------
echo Stop Windows Sicherheitscenter
sc stop wscsvc
echo --------------------
echo Stop Windows Firewall
sc stop MpsSvc
echo --------------------
echo Stop Windows Defender
sc stop WinDefend
echo --------------------
echo Stop Windows Sicherung
sc stop SDRSVC
echo --------------------
echo Stop Windows Update
sc stop wuauserv
echo --------------------
echo Stop VAIO Care
sc stop SampleCollector
echo --------------------
echo Activate power profile Live
powercfg -setactive 09b24432-345f-4708-85d7-93eec6b4f995
You get the IDs of the power-profile in the cmd-window and tipe powercfg -list.
The IDs of your devices at hardware->device manager->details->Hardware-ID
And this is to reactivate/start devices/services:
@echo off
echo Enable Wifi
devcon enable "PCI\VEN_8086&DEV_422C"
echo --------------------
echo Enable Memory Stick
devcon enable "PCI\VEN_1180&DEV_E230"
echo --------------------
echo Enable SD Bus
devcon enable "PCI\VEN_1180&DEV_E822"
echo --------------------
echo Enable NVIDIA Audio
devcon enable "HDAUDIO\FUNC_01&VEN_10DE&DEV_000B"
echo --------------------
echo Enable NVIDIA Graphic
devcon enable "PCI\VEN_10DE&DEV_0A75"
echo --------------------
echo Enable Webcam
devcon enable "USB\VID_05CA&PID_18B7"
echo --------------------
echo Start Antivirus
sc start "avast! Antivirus"
echo --------------------
echo Start Windows Sicherheitscenter
sc start wscsvc
echo --------------------
echo Start Windows Firewall
sc start MpsSvc
echo --------------------
echo Start Windows Defender
sc start WinDefend
echo --------------------
echo Start Windows Sicherung
sc start SDRSVC
echo --------------------
echo Start Windows Update
sc start wuauserv
echo --------------------
echo Start VAIO Care
sc start SampleCollector
echo --------------------
echo Activate power profile Ausgeglichen
powercfg -setactive 381b4222-f694-41f0-9685-ff5bb260df2e