kmp1988
Goto Top

Excel 2016 Pro - Fehlermeldung: Bei der Weitergabe des Befehls an das Programm ist ein Fehler aufgetreten

Servus zusammen,

bei einem PC (W7, Office 2016pro) haben wir beim öffnen von Excel-Dateien folgenden Fehler:
mueller fehler

Ich habe bereits nach dem Fehler gegooglet und bereits folgendes ausprobiert:
https://www.csg-systemhaus.de/news-leser/Office-Fehlermeldung-Bei-der-We ...

--> hat alles nichts gebracht.

Außerdem habe ich das Office repariert (ohne Erfolg), deinstalliert, den PC neu gestartet und das Office neu installiert - ohne Erfolg

Wisst Ihr noch was?

Gruß KMP1988

Content-ID: 350234

Url: https://administrator.de/forum/excel-2016-pro-fehlermeldung-bei-der-weitergabe-des-befehls-an-das-programm-ist-ein-fehler-aufgetreten-350234.html

Ausgedruckt am: 23.02.2025 um 03:02 Uhr

KMP1988
KMP1988 27.09.2017 um 12:47:03 Uhr
Goto Top
Ich habe es mit folgenden Powershell-Befehlen behoben:

Remove-Item -Path "HKLM:\SOFTWARE\Classes\Excel.Sheet.12\shell\Open\ddeexec" -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item -Path "HKLM:\SOFTWARE\Classes\Excel.Sheet.8\shell\Open\ddeexec" -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item -Path "HKLM:\SOFTWARE\Classes\Excel.SheetMacroEnabled.12\shell\Open\ddeexec" -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item -Path "HKLM:\SOFTWARE\Classes\Excel.CSV\shell\Open\ddeexec" -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item -Path "HKLM:\SOFTWARE\Classes\Excel.Backup\shell\Open\ddeexec" -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item -Path "HKLM:\SOFTWARE\Classes\Word.Document.12\shell\Open\ddeexec" -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item -Path "HKLM:\SOFTWARE\Classes\Word.Document.8\shell\Open\ddeexec" -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item -Path "HKLM:\SOFTWARE\Classes\Word.DocumentMacroEnabled.12\shell\Open\ddeexec" -Recurse -Force -ErrorAction SilentlyContinue

Rename-ItemProperty -Path "HKLM:\SOFTWARE\Classes\Excel.Sheet.12\shell\Open\command\" -Name "command" -NewName "_command" -Force -ErrorAction SilentlyContinue
Rename-ItemProperty -Path "HKLM:\SOFTWARE\Classes\Excel.Sheet.8\shell\Open\command\" -Name "command" -NewName "_command" -Force -ErrorAction SilentlyContinue
Rename-ItemProperty -Path "HKLM:\SOFTWARE\Classes\Excel.SheetMacroEnabled.12\shell\Open\command\" -Name "command" -NewName "_command" -Force -ErrorAction SilentlyContinue
Rename-ItemProperty -Path "HKLM:\SOFTWARE\Classes\Excel.CSV\shell\Open\command\" -Name "command" -NewName "_command" -Force -ErrorAction SilentlyContinue
Rename-ItemProperty -Path "HKLM:\SOFTWARE\Classes\Excel.Backup\shell\Open\command\" -Name "command" -NewName "_command" -Force -ErrorAction SilentlyContinue
Rename-ItemProperty -Path "HKLM:\SOFTWARE\Classes\Word.Document.12\shell\Open\command\" -Name "command" -NewName "_command" -Force -ErrorAction SilentlyContinue
Rename-ItemProperty -Path "HKLM:\SOFTWARE\Classes\Word.Document.8\shell\Open\command\" -Name "command" -NewName "_command" -Force -ErrorAction SilentlyContinue
Rename-ItemProperty -Path "HKLM:\SOFTWARE\Classes\Word.DocumentMacroEnabled.12\shell\Open\command\" -Name "command" -NewName "_command" -Force -ErrorAction SilentlyContinue

Set-Item -Path "HKLM:\SOFTWARE\Classes\Excel.Sheet.12\shell\Open\command\" -Value "excel.exe `"%1`"" -Force -ErrorAction SilentlyContinue
Set-Item -Path "HKLM:\SOFTWARE\Classes\Excel.Sheet.8\shell\Open\command\" -Value "excel.exe `"%1`"" -Force -ErrorAction SilentlyContinue
Set-Item -Path "HKLM:\SOFTWARE\Classes\Excel.SheetMacroEnabled.12\shell\Open\command\" -Value "excel.exe `"%1`"" -Force -ErrorAction SilentlyContinue
Set-Item -Path "HKLM:\SOFTWARE\Classes\Excel.CSV\shell\Open\command\" -Value "excel.exe `"%1`"" -Force -ErrorAction SilentlyContinue
Set-Item -Path "HKLM:\SOFTWARE\Classes\Excel.Backup\shell\Open\command\" -Value "excel.exe `"%1`"" -Force -ErrorAction SilentlyContinue
Set-Item -Path "HKLM:\SOFTWARE\Classes\Word.Document.12\shell\Open\command\" -Value "winword.exe `"%1`"" -Force -ErrorAction SilentlyContinue
Set-Item -Path "HKLM:\SOFTWARE\Classes\Word.Document.8\shell\Open\command\" -Value "winword.exe `"%1`"" -Force -ErrorAction SilentlyContinue
Set-Item -Path "HKLM:\SOFTWARE\Classes\Word.DocumentMacroEnabled.12\shell\Open\command\" -Value "winword.exe `"%1`"" -Force -ErrorAction SilentlyContinue