我正在尝试使用pyodbc连接到数据库。我可以使用runas
命令使用ODBC数据源进行连接,但是似乎无法执行相同的python脚本。
示例:
# this works
runas /netonly /user:domain\username "C:\Windows\System32\odbcad32.exe"
# this does not
runas /netonly /user:domain\username "C:\path\to\python.exe C:\path\to\script.py"
尝试执行python脚本,会很快打开和关闭一个窗口。 在脚本中进行无限打印以确保脚本正在执行。
#script.py
import time
while True:
print("running")
time.sleep(5)