浏览器 执行CMD命令 快速远程

简介

之前写了个快捷远程桌面的 在输入框输入对应的裙编 就会自动打开对应的远程桌面 但由于是用易语言写的 传输的过程中容易被安全软件杀掉 且不是很好看,与是就把他搬到了浏览器上 同事直接打开网页就行了
在这里插入图片描述

难题

但在开发的过程中发现 由于浏览器无法直接执行CMD命令,导致卡了一段时间,网上查阅了很多资料也没有太好的解决方案,不过看到说可以通过注册表的方式来执行 说干就干

注意 先在C盘下创建htmlurl 目录 ,目录下 创建a.rdp和xixi.reg文件 并双击xixi.reg文件

代码如下:

xixi.reg文件

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\leimou1]
@="URL:leimou1 Protocol"
"URL Protocol"=""

[HKEY_CLASSES_ROOT\leimou1\DefaultIcon]
@="cmd.exe,1"

[HKEY_CLASSES_ROOT\leimou1\shell]

[HKEY_CLASSES_ROOT\leimou1\shell\open]

[HKEY_CLASSES_ROOT\leimou1\shell\open\command]
@="mstsc C:/htmlurl/a.rdp /v:43.138.230.188 /admin /f"

a.rdp文件

screen mode id:i:2
use multimon:i:0
desktopwidth:i:1920
desktopheight:i:1080
session bpp:i:32
winposstr:s:0,1,138,0,1573,1040
compression:i:1
keyboardhook:i:2
audiocapturemode:i:0
videoplaybackmode:i:1
connection type:i:7
networkautodetect:i:1
bandwidthautodetect:i:1
displayconnectionbar:i:1
enableworkspacereconnect:i:0
disable wallpaper:i:0
allow font smoothing:i:0
allow desktop composition:i:0
disable full window drag:i:1
disable menu anims:i:1
disable themes:i:0
disable cursor setting:i:0
bitmapcachepersistenable:i:1
full address:s:192.168.88.14
audiomode:i:0
redirectprinters:i:1
redirectcomports:i:0
redirectsmartcards:i:1
redirectwebauthn:i:1
redirectclipboard:i:1
redirectposdevices:i:0
autoreconnection enabled:i:1
authentication level:i:2
prompt for credentials:i:0
negotiate security layer:i:1
remoteapplicationmode:i:0
alternate shell:s:
shell working directory:s:
gatewayhostname:s:
gatewayusagemethod:i:4
gatewaycredentialssource:i:4
gatewayprofileusagemethod:i:0
promptcredentialonce:i:0
gatewaybrokeringtype:i:0
use redirection server name:i:0
rdgiskdcproxy:i:0
kdcproxyname:s:
enablerdsaadauth:i:0
drivestoredirect:s:

vue

handleClick(row) {
                let reg = ""
                for (let i = 0; i < this.regS.length; i++) {
                    if (row.tst2 == this.regS[i].id) {
                        reg = this.regS[i].code
                        break;
                    }
                }
                if ("" == reg) {
                    this.$notify.error({
                        title: '失败',
                        message: '链接建立失败,请联系管理员或稍后再试!'
                    });
                     return;
                } else {
                    this.$notify({
                        title: '成功',
                        message: '连接建立成功!',
                        type: 'success'
                    });
                    // 通过以下代码调用注册表中的文件 'leimou1://'
                    window.location.href = reg + '://';
                }
            }

通过以上操作 即可实现在浏览器中调用cmd命令的效果,如果有多个远程 则在注册表文件中在额外创建

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值