/stext 命令在 Windows 10 中不起作用
/stext command not working in Windows 10
我在同一文件夹中有一个名为 launch.bat 和 ChromePass.exe 的蝙蝠。
蝙蝠:
chromepass.exe /stext output.txt
执行时,它所做的只是在新的 window 中打开程序,并不创建文本文件。
我怎样才能使程序静默运行并实际输出文本文件?
call ".\chromepass.exe" /stext .\output.txt
或
.\chromepass.exe /stext .\output.txt
在命令提示符中尝试其中一个。
这是因为开发者 (nirsoft.net) 已经从官方版本中删除了命令行选项,因为它们通常被病毒用来在用户不知情的情况下窃取用户的密码。
原创博文-post:http://blog.nirsoft.net/2014/09/22/command-line-options-removed-from-the-official-release-of-my-password-recovery-tools/
试试这个 /stext "readme.txt" 它在我的 windows 10
上完美运行
希望当这个代码有运行的时候,你可以得到这个问题的解决方法
@echo off
start WireView.exe /stext WireView.txt
或
@回声关闭
start WireView.exe > WireView.txt
我在同一文件夹中有一个名为 launch.bat 和 ChromePass.exe 的蝙蝠。
蝙蝠:
chromepass.exe /stext output.txt
执行时,它所做的只是在新的 window 中打开程序,并不创建文本文件。
我怎样才能使程序静默运行并实际输出文本文件?
call ".\chromepass.exe" /stext .\output.txt
或
.\chromepass.exe /stext .\output.txt
在命令提示符中尝试其中一个。
这是因为开发者 (nirsoft.net) 已经从官方版本中删除了命令行选项,因为它们通常被病毒用来在用户不知情的情况下窃取用户的密码。 原创博文-post:http://blog.nirsoft.net/2014/09/22/command-line-options-removed-from-the-official-release-of-my-password-recovery-tools/
试试这个 /stext "readme.txt" 它在我的 windows 10
上完美运行希望当这个代码有运行的时候,你可以得到这个问题的解决方法
@echo off
start WireView.exe /stext WireView.txt
或 @回声关闭
start WireView.exe > WireView.txt