I'm trying to run a PowerShell command to reinstall the calculator on Windows 10.
But Windows doesn't like this command being passed as the SYSTEM LOCAL user
Code: Select all
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: Select all
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.