如何在powershell中安装WASP?

如何在powershell中安装WASP?,powershell,Powershell,我想在powershell中使用WASP插件。由于缺乏c#方面的知识,我不知道如何安装它。我已从下载了存档文件。我在zip中没有找到“安装”文件。页面上也没有安装用户指南。我想从powershell安装它。我的系统是windows10,64位。我需要一些帮助,谢谢。您可以通过PowerShell直接使用SendKeys # Example, start notepad, grab all services and display in in notepad using SendKeys Note

我想在powershell中使用WASP插件。由于缺乏c#方面的知识,我不知道如何安装它。我已从下载了存档文件。我在zip中没有找到“安装”文件。页面上也没有安装用户指南。我想从powershell安装它。我的系统是windows10,64位。我需要一些帮助,谢谢。

您可以通过PowerShell直接使用SendKeys

# Example, start notepad, grab all services and display in in notepad using SendKeys
Notepad 
Get-Service | Clip
Start-Sleep -Seconds 1
## .NET:
[void][reflection.assembly]::loadwithpartialname("system.windows.forms")
[system.windows.forms.sendkeys]::sendwait('^v')
然而,WASP和其他类似if的工具是更好的选择。然而,WASP是一个非常古老的项目,多年来没有得到维护。我和其他许多人一样拥有它,过去也使用过它。从CodePlex中,您需要Visual Studio将其编译为要导入的DLL。再说一次,它非常古老。因此,与WASP相比,GUI自动化还可以使用其他工具

请参见:

适用于Windows PowerShell的AutoIt cmdlet


非常感谢您澄清黄蜂短缺的问题。我没有visual Studio。我会试试你的建议!