问题标签 [pywin]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python-2.7 - Python 安装模块并导入
我需要在我的脚本中导入 win32wnet。但是,pywin 模块不能保证安装在脚本运行的机器上。
因此,在同一个 *.py 脚本中,我在导入 win32wnet 之前安装了 pywin。但是,这似乎行不通。
有没有办法可以在同一个脚本中处理 pywin 的安装和 win32wnet 的导入?
或者我必须将安装分离到另一个脚本并在脚本依赖于 win32wnet 之前运行?(或者这是否像我假设的那样工作?)
python-2.7 - 使用 pywin32 访问现有的 IE11
我正在尝试自动化,目前正在使用 pywin32,但我想知道是否可以与我手动打开的 Internet Explorer 11 窗口进行交互。
我问是因为我在一个特定的 Intranet 中工作,并且认为通过一个新的 IE 窗口,访问 Intranet 的文件系统,下载他们的浏览器副本,最后打开它会比值得的麻烦更多。
谢谢!
python - .whl python 文件的安装不起作用
我刚刚在 Windows 10(64 位)工作站上安装了 Python 2.7.12(32 位)。
现在,我正在尝试从这个Python Library Website安装 pywin32-220.1-cp27-cp27m-win32.whl 。
尝试安装
并且 cmd 挂了过去 20 分钟。请指教。
更新
解决方案是pywin32-217.win32-py2.7.exe
从 sourceforge.org安装
python - 使用 pywinauto 时不写入日志文件
我正在尝试使用pywinauto自动执行某些 Windows 操作,但是当我import pywinauto
登录到日志文件时,它会停止工作。
导入之前 - 代码正在将日志写入文件,如下例所示:
导入后 - 代码不会将日志写入文件,如下例所示:
python - 如何使用pywinauto在文本框中设置值?
我是 pywinauto 的新手,我不知道如何使用控件标识符。
我将如何设置No. of loops:
为 99999?
python - 安装pywin时出错
Python版本:3.6.0
所以我尝试使用 pip 下载 PyWin,但出现以下错误:
我不确定要包括哪些其他细节。
我正在使用 Windows 10 64 位
我试着用谷歌搜索,没有找到任何帮助。
python - 使用 winrm 截断输出
我正在运行一个脚本来获取下面给出的磁盘级别信息。
磁盘.ps1:
当我在 Windows 机器上执行上述代码段时,输出为:
现在我正在尝试使用pywinrm
.
磁盘.py:
执行这个我得到输出:
请说明 WinRM 是在截断输出还是 shell 是在截断输出。
我认为 shell 没有这样做,因为当我使用 PowerShell 执行脚本时,我能够获得整个输出。
python - 在 python 3.6 中导入 win32ui
我从网站上下载了 pywin32。我有这些进口:
它根本不起作用,但如果我将 pywin32 替换为 win32,则第一次导入有效。像这样
对于第二个我有这个错误
我应该怎么办?
powershell - 无法建立 HTTP 或 HTTPS 远程会话
我正在为 ansible 启用 windows 节点。为此,我使用以下命令在 Windows 7 中启用 http 和 https 远程会话。
我在办公室收到以下错误。
你能帮我解决这个问题吗?
在家里的另一台笔记本电脑上它工作正常。
我尝试了以下选项:
我尝试了以上所有细节......仍然无法正常工作
更新:
似乎,连接已创建(登录)。我在 Windows 机器中观察到以下事件日志
提前致谢。
python - Python: error opening excel workbook with win32com
I am trying to make a program to open existing excel files, in order to read and write their contents. I am already having trouble opening files.
My code:
Note: I abbreviated the file paths for brevity. The .py file and the test.xls file are in the same folder.
The error:
Note: I am using a Japanese computer. The sentence in Japanese means 'Exception occurred'.
I tried to find out more about the error:
I found this question. In it, the error number is the same, but their problem is the wrong sheet name. My sheet name, 'abc' really does exist in the excel file.
The following might also be useful diagnostic information. This code works (to create and open a new workbook):
Other info: Windows 10 Python 3.6 Python win is installed (pywin32 build 222)
I am new to using win32com. Please help me troubleshoot this problem.