如何从命令行打开Edge到特定页面?

时间:2019-05-06 16:14:52

标签: microsoft-edge

我已经安装了Microsoft Edge和Edge(开发模式)。每次我尝试使用命令行extern "C" int Detect(unsigned char* textureData, int width, int height) { MDetector.setDictionary(Dictionary::ARUCO_MIP_36h12); Mat image(height, width, CV_8UC4, textureData); Mat img; cvtColor(image, img, COLOR_RGBA2BGR); vector<Marker> Markers = MDetector.detect(img); imwrite("/documents/C2/pic.jpg", img);//for debugging return Markers.size(); } 打开Edge时,它只会启动带有大约空白标签的Edge(开发模式),传递的URL不会被打开。

我想同时保留Edge和Edge(dev),也想通过命令行启动。有什么建议么?

1 个答案:

答案 0 :(得分:2)

您可以使用以下命令使用URL打开Edge(dev):

start msedge "http://www.example.com/"

您可以使用以下命令使用URL打开Edge:

start microsoft-edge:http://www.example.com/