Ich versuche, einen PowerShell-Befehl auszuführen, um den Taschenrechner unter Windows 10 neu zu installieren.
Windows mag es jedoch nicht, wenn dieser Befehl als SYSTEM LOCAL-Benutzer ausgeführt wird
Code: Alle auswählen
def install():
print('installing ddt72-reinstall-calculator')
#run('wsreset')
run_powershell('get-appxpackage *Microsoft.WindowsCalculator* | remove-appxpackage',output_format='Text')
run_powershell('Add-AppxPackage -register "C:\Program Files\WindowsApps\*WindowsCalculator*\AppxManifest.xml" –DisableDevelopmentMode',output_format='Text')Code: Alle auswählen
Add-AppxPackage : Deployment failed with HRESULT: 0x80073CF9, Install failed.
Please contact your software vendor. (Exception from HRESULT: 0x80073CF9)
Deployment Register operation rejected on package
............ from: AppXManifest.xml
install request because the Local System account is not allowed to perform
this operation.