我已经创建了Windows服务(.NET Console App
),但我不知道如何从bash脚本运行service.exe
。问题在于执行
[servicename].exe install
我必须提到我一直在关注这个Guide
我首先将Debug
的内容复制到目标文件夹,然后安装该服务。
Shell脚本
sname="popwinservice.exe"
path="./Experiments/PopWinService/bin/Debug/*"
dest="D:/service"
cp -R $path $dest
cd $dest && (cmd "$sname" install)
输出
$ ./script.sh Microsoft Windows [版本10.0.17134.648](c)2018 微软公司。保留所有权利。
D:\ service>
最后一行不执行$sname install
,只是切换到cmd
。