Run python script as admin in windows

霸气de小男生 提交于 2019-12-11 04:24:49

问题


I have a script that removes and substitute some files in C:\Windows directory.

I start command line as admin then I start my python script in it. And when the script tries to remove files from C:\Windows, I get WindowsError error 5.

How can I fix this?

Possible solution: Actually I was trying to modify files which has all privileges only for TrustedInstaller user, so I used this https://github.com/jschicht/RunAsTI to run python script.


回答1:


WindowsError error 5 occurs when you have no System Administrator privileges to perform action.
You can try to force script to run with admin priveleges with Windows cmd command runas.
Try something like this:

runas /user:administrator_account path_to_script

Just replace administrator_account with account name that has privileges on your computer. Also this command will prompt for password (if account has one setup). For more information about this command you can read here.



来源:https://stackoverflow.com/questions/45648863/run-python-script-as-admin-in-windows

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!