Estoy intentando ejecutar un comando de PowerShell para reinstalar la calculadora en Windows 10.
Pero a Windows no le gusta que este comando se pase como usuario LOCAL DEL SISTEMA
Código: Seleccionar todo
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')Código: Seleccionar todo
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.