i tried both this:
import os
os.system(r"cd C:\daten\super pooper\use\app\nircmd && nircmd setdefaultsounddevice 'BD990P' 1")
where i got no error but the audio device didnt change either and this:
import os
os.system(r"cd C:\daten\super pooper\use\app\nircmd")
os.system("nircmd setdefaultsounddevice 'BD990P' 1")
where i got the error
"Der Befehl "nircmd" ist entweder falsch geschrieben oder konnte nicht gefunden werden."
which basically means that the command "nircmd" wasnt found that makes me think that every command is executed seperately and not taking into account direcotry changes that happened before, but even with my other try where that wouldnt have been an issue it doesnt work, so im kinda lost